@charset "UTF-8";

:root {
  --font-base: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Times New Roman", "YuMincho", serif;
  --font-gothic: "Hiragino Sans", "Hiragino Kaku Gothic ProN", 'メイリオ', Meiryo, sans-serif;
  --font-inter: "Inter", sans-serif;
  --color-white: #fff;
  --color-black01: #1D1D1D;
  --color-gray01: #ccc;

  --color-deep_green01: #123519;
}

@media screen and (max-width:769px) {
  :root {}
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  font-size: 62.5%;
  overflow: inherit !important;
  font-size: clamp(7px, 0.87vw, 10px);
}

body {
  width: 100%;
  height: auto;
  position: relative;
  left: 0;
  top: 0;
  background: #FFF;
  color: var(--color-black01);
  font-size: 1.6rem;
  font-family: var(--font-base);
  font-weight: 400;
  line-height: 2.0;
  letter-spacing: 0.030em;
  overflow: auto;
}

h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
}

h3 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
}

p {
  font-size: 1em;
  font-weight: 400;
  line-height: 2.0;
}

ul, ol, li {
  list-style: none;
}

a {
  outline: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a, button {
  text-decoration: none;
  transition: opacity .32s ease, color .25s ease, background-color .25s ease;
  color: inherit;
}

a:hover, button:hover {
  opacity: 0.76;
}

a:not([class]) {
  color: #123519;
  text-decoration: underline;
  transition: 0s;
}

a:not([class]):hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

select {
  color: var(--color-black02);
}

@media screen and (max-width:769px) {
  html {
    font-size: 10px;
    font-size: clamp(8px, 2.480vw, 25px);
  }

  body {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }

  img {
    width: 100%;
  }
}


/********************

   common

*********************/
/*****   class   *****/
#body_inner {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.main_section {
  padding: 14rem 0 17rem;
}

.contents_wrapper {
  position: relative;
  display: block;
  max-width: 90rem;
  width: 93.4%;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  z-index: 10;
}


@media screen and (min-width:769.02px) {
  .sp_only {
    display: none !important;
  }
}

@media screen and (max-width:769px) {
  #body_inner {
    width: 100%;
    min-width: 0px;
  }

  .pc_only {
    display: none !important;
  }

  .contents_wrapper {
    width: calc(100% - 8.0rem);
    padding: 0;
  }

  .main_section {
    padding: 6.2rem 0 7.6rem;
  }
}


/********************

  parts

*********************/
.attention_text {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.44;
}

.attention_mark {
  position: relative;
  top: -0.39em;
  left: -0.04em;
  font-size: 0.76em;
  letter-spacing: 0.1em;
}

.font_smaller {
  font-size: 0.8em;
}

/***   heading01   ***/
.heading01 {
  margin-bottom: 0.86em;
  font-size: 4rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (max-width:769px) {
  .heading01 {
    font-size: 2.8rem;
  }
}

/***   btn01   ***/
.btn01 {
  --bg_color: var(--color-black01);
  --color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: auto;
  min-width: 25rem;
  min-height: 3.4em;
  padding: 1rem 2em 1.1rem;
  margin: 2.5rem auto 0;
  border: 0.15rem solid var(--bg_color);
  background: var(--bg_color);
  color: var(--color);
  font-size: 1.6rem;
  transition: all 0.1s ease;
}

.btn01::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.0em;
  transform: translateY(-44%);
  display: block;
  width: 0.62em;
  height: auto;
  aspect-ratio: 1/1;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--color);
  transition: all 0.1s ease;
}

.btn01:hover {
  opacity: 1;
  background: var(--color);
  color: var(--bg_color);
}

.btn01:hover::after {
  background: var(--bg_color);
}

/***   table_block01   ***/
.table_block01 {
  position: relative;
}

.table_block01 table {
  width: 100%;
}

.table_block01 tr {
  background: transparent;
}

.table_block01 tr:nth-of-type(2n+1) {
  background: #F2F2F2;
}

.table_block01 th,
.table_block01 td {
  padding: 1.96rem 1rem 2.1rem 4.7rem;
  vertical-align: baseline;
}

.table_block01 th {
  width: 28.2%;
}

.table_block01 td {}

@media screen and (max-width:769px) {
  .table_block01 {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 36.2rem;
  }

  .table_block01 th,
  .table_block01 td {
    padding-left: 2.28rem;
    padding-right: 1.0rem;
    line-height: 2.1;
    letter-spacing: 0.01em;
    font-size: 1.47rem;
  }

  .table_block01 th {
    width: 39%;
  }

  .table_block01 td {
    padding-left: 0.87rem;
  }
}


/***   visual_block01   ***/
.visual_block01 {
  width: 100%;
  max-width: 1800px;
  margin: 1.5rem auto;
}

.visual_block01 img {
  width: 100%;
  height: auto;
}

/***   bnr_block01   ***/
.bnr_block01 {
  margin: 2rem auto;
}

.bnr_block01__inner {
  display: grid;
  grid-template-columns: 50rem 1fr;
  width: 100%;
  box-shadow: 0.7rem 0.7rem 0.7rem rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  overflow: hidden;
}

.bnr_block01__img_block img {
  width: 100%;
}

.bnr_block01__contents {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.8rem 1rem;
  background: #3C6C46;
  color: #fff;
}

.bnr_block01__heading {
  margin-bottom: 0.44em;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.1;
}

.bnr_block01__text {
  margin-bottom: 0.32em;
  font-size: 1.6rem;
  line-height: 1.3;
}

.bnr_block01__btn {
  --bg_color: #fff;
  --color: var(--color-black01);
  margin-top: 1.62rem;
}

@media screen and (max-width:769px) {
  .bnr_block01__inner {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }

  .bnr_block01__contents {
    padding: 2.5rem 1rem 3.2rem;
  }
}


/********************

   header

*********************/
.header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  color: #fff;
  z-index: 9990;
}

/* hamburger_nav */
.hamburger_nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 35rem;
  padding-top: 9.2rem;
  max-width: 100%;
  border: 1.5px solid #CECECE;
  box-shadow: -1rem 2rem 2.0rem rgba(0, 0, 0, 0.2);
  background: #fff;
  color: var(--color-black01);
  z-index: 9990;
  transform: rotateY(80deg);
  transform-origin: top right;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.56s ease-in-out, opacity 0.44s ease-in-out;
}

header.hamburger-active .hamburger_nav {
  pointer-events: all;
  transform: translateY(0);
  opacity: 1;
}

.hamburger_link_list {}

.hamburger_link_list__item {
  display: block;
  border-bottom: 1.5px solid #CECECE;
  font-size: 2.0rem;
}

.hamburger_link_list__item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.3em 1em;
  font-size: 1em;
  line-height: 1.4;
  z-index: 10;
  transition: all 0.1s ease;
  text-decoration: none;
}

.hamburger_link_list__item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-deep_green01);
  z-index: -1;
  opacity: 0;
  transition: all 0.1s ease;
}

.hamburger_link_list__item a:hover {
  opacity: 0.92;
  color: #fff;
  filter: brightness(1.5);
}

.hamburger_link_list__item a:hover::before {
  opacity: 1;
}

.hamburger_nav__btn01 {
  --bg_color: #3C6C46;
  --color: #fff;
  width: 29rem;
  margin: 2.8rem auto 2.9rem;
  height: 7.0rem;
  font-size: 2.0rem;
}

/* hamburger_btn */
.hamburger_btn {
  --hamburger-size: 8.6rem;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--hamburger-size);
  height: var(--hamburger-size);
  background: var(--color-deep_green01);
  z-index: 9992;
  cursor: pointer;
  pointer-events: all;
}

.hamburger_btn>span,
.hamburger_btn::before,
.hamburger_btn::after {
  --position: 0;
  content: "";
  position: absolute;
  top: var(--position);
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: block;
  width: 56%;
  height: 0.47rem;
  background: var(--color-white);
  margin-top: 50%;
  transition: top 0.28s 0.28s, transform 0.28s, opacity 0.62s;
}

.hamburger_btn::before {
  --position: -20%;
}

.hamburger_btn::after {
  --position: 20%;
}


header.hamburger-active .hamburger_btn::before,
header.hamburger-active .hamburger_btn::after {
  --position: 0;
  transition: top 0.28s, transform 0.28s 0.28s, opacity 0s;
}

header.hamburger-active .hamburger_btn>span {
  opacity: 0;
}

header.hamburger-active .hamburger_btn::before {
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
}

header.hamburger-active .hamburger_btn::after {
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}


@media screen and (min-width:769.02px) {}

@media screen and (max-width:769px) {
  .header {
    padding-top: 1.55rem;
  }

  .header__logo {
    padding-left: 1.5rem;
  }

  .header__logo img {
    width: 18.2rem;
  }


  .hamburger_btn {
    --hamburger-size: 6.2rem;
  }
}

/********************

   footer

*********************/
.footer {
  position: relative;
  width: 100%;
  padding: 4.4rem 0 5.6rem;
  background: var(--color-deep_green01);
  text-align: center;
  color: #fff;
  font-size: 1.44rem;
}

.footer .contents_wrapper {
  max-width: 110rem;
}

.footer__link_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.82rem;
  margin: 0 auto 1.8rem;
  width: fit-content;
}

.footer__link_list_item {
  position: relative;
  padding: 0.2em 1.4em;
  font-size: 1em;
  line-height: 1.4;
}

.footer__link_list_item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.2rem;
  transform: translateY(-50%);
  display: inline-block;
  width: 1px;
  height: 76%;
  background: #ffffffcc;
}

.footer__link_list_item:last-of-type::after {
  display: none;
}

.footer__link_list_item a {
  color: inherit;
}

.footer__link_list_item a:hover {
  text-decoration: underline;
}

.footer__block {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 3.9rem;
}

.footer__copyright {
  font-size: 1em;
  text-align: center;
  margin-right: 3.2em;
}

@media screen and (max-width:769px) {
  .footer {
    padding: 3.5rem 0 5.4rem;
  }

  .footer .contents_wrapper {
    width: 96%;
  }

  .footer__link_list {
    margin-bottom: 3.55rem;
    row-gap: 1.0rem;
  }

  .footer__link_list_item {
    width: 50%;
    padding: 0.32em 0.82em;
    font-size: 1.3rem;
  }

  .footer__link_list_item:nth-of-type(2n):after {
    display: none;
  }

  .footer__link_list_item a {
    text-decoration: underline;
  }

  .footer__link_list_item a:hover {
    text-decoration: none;
  }

  .footer__logo_jdma img {
    width: 15.5rem;
  }

  .footer__block {
    flex-direction: column;
    row-gap: 1.6rem;
  }

  .footer__copyright {
    margin: 0;
  }

  .footer__block_text {
    font-size: 1.25rem;
    line-height: 2;
  }
}






/********************

  home

*********************/
/*****   .top-mv   *****/
.top-mv {
  position: relative;
}

.top-mv__bg {
  position: relative;
}

.top-mv__bg img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  max-height: 100svh;
  object-fit: cover;
}

.top-mv__inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 100rem;
  height: 100%;
}

.top-mv__tit {
  position: absolute;
}

.top-mv__logo {
  position: absolute;
  bottom: 9.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  max-width: 18rem;
}

@media screen and (min-width:769.02px) {
  .top-mv__tit {
    position: absolute;
    top: 20%;
    left: 0;
    width: auto;
    height: 45.5%;
  }

  .top-mv__tit img {
    width: auto;
    height: 100%;
  }
}

@media screen and (max-width:769px) {
  .top-mv__tit {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-55.9%);
    max-width: 11.5rem;
  }


  .top-mv__logo {
    bottom: 4.7rem;
    max-width: 11rem;
  }
}

/*****   .top-block_section   *****/
.top-block_section {
  position: relative;
}

.top-block_section__bg_img {
  width: 100%;
  height: 90rem;
  object-fit: cover;
}

.top-block_section__wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  padding: 5rem 2rem;
}

.top-block_section__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
}

.top-block_section__heading {
  font-size: 4.0rem;
  margin-bottom: 2.8rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.top-block_section__text {
  margin-bottom: 5rem;
  font-size: 1.8rem;
  line-height: 2.8;
}

.top-block_section__btn {
  --bg_color: #fff;
  --color: var(--color-black01);
}


@media screen and (max-width:769px) {
  .top-block_section__bg_img {
    height: auto;
    min-height: 50rem;
  }

  .top-block_section__heading {
    font-size: 3.2rem;
    margin-bottom: 4.0rem;
  }

  .top-block_section__text {
    margin-bottom: 5.4rem;
    font-size: 1.5rem;
    line-height: 2.62;
  }
}


/*****   top-nav_section   *****/
.top-nav_section {
  padding: 15rem 0 17rem;
  background-image: url(../img/top/top-bg_design01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.top-nav_section .contents_wrapper {
  max-width: 96rem;
}

.top-nav_section__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  column-gap: 6.0rem;
  row-gap: 6.9rem;
}

.top-nav_section__list_item_img_block {
  margin: 0 auto 3.2rem;
}

.top-nav_section__list_item_heading_block {
  margin: 0 auto 3.2rem;
}

.top-nav_section__list_item_heading {
  display: block;
  margin-bottom: 1.9rem;
  font-size: 3.8rem;
  line-height: 1.32;
  text-align: center;
}

.top-nav_section__list_item_heading_sub {
  display: block;
  color: #acacac;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.32;
  text-align: center;
}

.top-nav_section__list_item_text {
  margin: 0 auto 1.76rem;
  line-height: 1.6;
  text-align: center;
  font-family: var(--font-gothic);
}

.top-nav_section__btn {
  margin: 0 auto;
}

@media screen and (max-width:769px) {
  .top-nav_section {
    padding: 7.6rem 0 8.7rem;
  }

  .top-nav_section__list {
    width: 80.2%;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }

  .top-nav_section__list_item_img_block {
    margin-bottom: 1.87rem;
  }

  .top-nav_section__list_item_heading_block {
    margin-bottom: 2.62rem;
  }

  .top-nav_section__list_item_heading {
    margin-bottom: 1.55rem;
    font-size: 2.8rem;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .top-nav_section__list_item_heading_sub {
    font-size: 1.5rem;
  }

  .top-nav_section__list_item_text {
    margin-bottom: 1.5rem;
  }
}


/********************

   main
   
*********************/
/*******************
	.mv
********************/
.mv {
  position: relative;
  margin-bottom: 0rem;
  z-index: 1000;
}

.mv__bg {
  position: relative;
  width: 100%;
  height: auto;
}

.mv__bg img {
  width: 100%;
  height: 100%;
  max-height: 80rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 62%;
  object-position: center 62%;
}

.mv__tit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-54%);
}

.mv__tit img {
  max-width: 5rem;
}

.mv__logo {
  position: absolute;
  bottom: 5rem;
  right: 8.7rem;
  max-width: min(39rem, 25vw);
}

@media screen and (min-width:769.02px) {}

@media screen and (max-width:769px) {
  .mv__tit img {
    max-width: 4.0rem;
  }

  .mv__logo {
    bottom: 3.47rem;
    right: 3.2rem;
    max-width: 15rem;
  }
}



/********************

   message
   
*********************/
/*****   message_section01   ******/
.message_section01 {
  position: relative;
  background: var(--color-gray01);
  background-image: url(../img/message/message-bg_design01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.message_section01__block {
  position: relative;
  text-align: center;
}

.message_section01__block:nth-of-type(n+2) {
  padding-top: 11rem;
  margin-top: 11rem;
}

.message_section01__block:nth-of-type(n+2):before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 10.0rem);
  height: 1.5px;
  background: #3C6C46;
}

.message_section01__tit {
  margin-bottom: 2.8rem;
  font-size: 2.44rem;
  font-weight: 400;
}

.message_section01__block_text {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 3.2;
  letter-spacing: 0.025em;
}

.message_section01__block_name {
  margin-top: 3.4rem;
  font-size: 2rem;
  line-height: 1.5;
}


.message_section01__block>*:last-child {
  margin-bottom: 0;
}

@media screen and (min-width:769.02px) {}

@media screen and (max-width:769px) {
  .message_section01 {
    background-image: url(../img/message/message-bg_design01-sp.png);
  }

  .message_section01 .contents_wrapper {
    width: calc(100% - 4.0rem);
  }

  .message_section01__block:nth-of-type(n+2) {
    padding-top: 6.2rem;
    margin-top: 6.9rem;
  }

  .message_section01__block:nth-of-type(n+2):before {
    width: calc(100% + 0.62rem);
  }

  .message_section01__tit {
    margin-bottom: 2.0rem;
    font-size: 2.0rem;
  }

  .message_section01__block_text {
    font-size: 1.5rem;
    line-height: 2.62;
  }

  .message_section01__block_name {
    margin-top: 3.0rem;
    font-size: 1.8rem;
  }
}


/*****   message_section02   ******/
.message_section02 {}

.message_section02__block {
  display: grid;
  grid-template-columns: auto auto;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 8.0rem;
  row-gap: 5.0rem;
}

.message_section02__block>figure:nth-of-type(2) {
  margin-bottom: 2.0rem;
}

.message_section02__text {
  margin-bottom: 4.4rem
}

@media screen and (min-width:769.02px) {}

@media screen and (max-width:769px) {
  .message_section02__text {
    line-height: 2.16;
  }

  .message_section02__block>figure:nth-of-type(1) {
    width: 96%;
    margin: 0 auto;
  }

  .message_section02__block {
    grid-template-columns: 1fr;
  }
}



/********************

   service
   
*********************/
@media screen and (max-width:769px) {
  .page-service {
    position: relative;
  }

  .page-service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/service/service-bg_design01-sp.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}


.service_products {
  position: relative;
}

.service_products .heading01 {
  margin: 0 auto 7.0rem;
}

.service_products__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6.0rem;
  row-gap: 6.0rem;
}

.service_products__list_item_img_block {
  margin-bottom: 1.8rem;
}

.service_products__list_item_tit {
  margin-bottom: 1.1rem;
  font-size: 3.0rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.service_products__list_item_tit_smaller {
  font-size: 0.8em;
}

@media screen and (min-width:769.02px) {
  .service_products {
    padding-bottom: 11.5rem;
  }
}

@media screen and (max-width:769px) {
  .service_products {
    padding-bottom: 5.0rem;
  }

  .service_products__list {
    grid-template-columns: 1fr;
    row-gap: 4.0rem;
  }

  .service_products__list_item_tit {
    font-size: 2.32rem;
  }

  .service_products__list_item_tit_smaller {
    font-size: 0.76em;
  }
}

.service_stores {
  position: relative;
}

.service_stores__block {
  position: relative;
  width: 100%;
}

.service_stores__imgs img {
  position: relative;
  display: block;
  top: 0;
  line-height: 1;
}

.service_stores__imgs>div:nth-of-type(1) img {
  width: 92rem;
  margin-left: -27rem;
  margin-top: 0;
  margin-bottom: 0;
}

.service_stores__imgs>div:nth-of-type(2) img {
  width: 40rem;
  margin-left: auto;
  margin-right: -25rem;
  margin-top: -34.7rem;
}

.service_stores__contents {
  margin-top: -7.3rem;
}

.service_stores__contents .heading01 {
  margin-bottom: 1.5rem;
  text-align: left;
}

.service_stores__name {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  column-gap: 1.1em;
  margin-bottom: 2.2rem;
  font-size: 3.0rem;
  line-height: 1.6;
}

.service_stores__strong_text {
  margin-bottom: 0.62em;
  font-size: 2.44rem;
  line-height: 1.76;
}

.service_stores__btn {
  margin-top: 6.9rem;
}

@media screen and (min-width:769.02px) {
  .service_stores {
    padding-top: 11rem;
  }

  .service_stores::before {
    content: "";
    position: absolute;
    top: -12.5rem;
    left: 0;
    width: 100%;
    height: calc(100% + 13rem);
    background-image: url(../img/service/service-bg_design01.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}

@media screen and (max-width:769px) {
  .service_stores__imgs>div:nth-of-type(1) img {
    width: 29.2rem;
    margin-left: -3.9rem;
    z-index: 10;
  }

  .service_stores__imgs>div:nth-of-type(2) img {
    width: 19rem;
    margin-right: -4.0rem;
    margin-top: -13.2rem;
  }

  .service_stores__contents {
    margin-top: -6.2rem;
  }

  .service_stores__contents .heading01 {
    margin-bottom: 3.9rem;
    text-align: left;
  }

  .service_stores__name {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 2.5rem;
    line-height: 1.4;
  }

  .service_stores__name .font_smaller {
    font-size: 0.69em;
  }

  .service_stores__strong_text {
    font-size: 2.0rem;
  }

  .service_stores__btn {
    margin-top: 5.5rem;
  }
}


/********************

   company
   
*********************/
.page-company {
  position: relative;
}

@media screen and (min-width:769.02px) {
  .page-company::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1440/2443;
    background-image: url(../img/company/company-bg_design01.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.62;
    z-index: -1;
  }
}

/*****   company_detail   *****/
.company_detail {
  position: relative;
}

.company_detail .contents_wrapper {
  width: calc(100% - 3.4rem);
}

.company_detail .heading01 {
  margin-bottom: 8.6rem;
}

.company_detail__map {
  width: 86%;
  margin: 6.2rem auto 0;
}

@media screen and (max-width:769px) {
  .company_detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 391/630;
    background-image: url(../img/company/company-bg_design01-sp.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.82;
    z-index: -1;
  }

  .company_detail .heading01 {
    margin-bottom: 3.9rem;
  }

  .company_detail__map {
    width: 100%;
    margin-top: 3.2rem;
  }
}


/*****   company_business_domain   *****/
.company_business_domain {
  position: relative;
}

.company_business_domain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-width: 1440px;
  aspect-ratio: 1440/3247;
  background-image: url(../img/company/company-bg_design02.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}

.company_business_domain .heading01 {
  margin-bottom: 7.6rem;
}

.company_business_domain__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 6.2rem;
}

.company_business_domain__list_item {
  display: grid;
  grid-template-columns: 44rem 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 4.4rem;
}

.company_business_domain__list_item_img_block img {
  width: 100%;
}

.company_business_domain__list_item_tit {
  padding: 0 0 0.55em;
  margin-bottom: 0.62em;
  border-bottom: 1px solid #3C6C46;
  font-size: 3.0rem;
  line-height: 1.25;
}

.company_business_domain__list_item_contents {}


@media screen and (min-width:769.02px) {
  .company_business_domain {
    padding-top: 11.5rem;
  }

  .company_business_domain__list_item_img_block {
    grid-column: 1/2;
    grid-row: 1/3;
  }

  .company_business_domain__list_item_tit {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .company_business_domain__list_item_contents {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

@media screen and (max-width:769px) {
  .company_business_domain {
    padding-bottom: 6.2rem;
  }

  .company_business_domain::before {
    min-width: 400px;
    aspect-ratio: 398/3588;
    background-image: url(../img/company/company-bg_design02-sp.png);
  }


  .company_business_domain .heading01 {
    margin-bottom: 3.4rem;
  }

  .company_business_domain__list {
    row-gap: 4.4rem;
  }

  .company_business_domain__list_item {
    grid-template-columns: 1fr;
  }

  .company_business_domain__list_item_img_block {
    margin-bottom: 2rem;
  }

  .company_business_domain__list_item_tit {
    margin-bottom: 0.47em;
    font-size: 2.5rem;
  }
}


/*****   company_history   *****/
.company_history {
  position: relative;
}

.company_history::before {
  content: "";
  position: absolute;
  top: -10rem;
  left: min(15rem, 5vw);
  width: 100vw;
  height: calc(100% + 10rem);
  background: #fff;
  z-index: -1;
}

.company_history__text {
  text-align: center;
  margin: 0 auto 5.0rem;
}

.company_history table th {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.5rem;
}

.company_history table td {
  width: 76.9%;
}

.company_history table th>span:first-of-type {
  display: inline-block;
  min-width: 5.0em;
}

.company_history table th>span:nth-of-type(2) {
  white-space: nowrap;
}


@media screen and (max-width:769px) {
  .company_history::before {
    top: -2rem;
    left: 1.7rem;
  }

  .company_history__text {
    margin-bottom: 3.47rem;
    font-size: 1.47rem;
    letter-spacing: 0.02em;
  }

  .company_history .table_block01 {
    width: 100%;
  }

  .company_history table tr {
    position: relative;
    display: block;
    padding: 1.7rem 1rem 1.8rem 1.9rem;
  }

  .company_history table tr:nth-of-type(2n+1):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: #F2F2F2;
    z-index: -1;
  }

  .company_history table th,
  .company_history table td {
    padding: 0;
    line-height: 2.0;
  }

  .company_history table th {
    padding-bottom: 0.25em;
    column-gap: 0.82rem;
  }

}






/********************

  contact
   
*********************/
.contact_section01 {
  position: relative;
}

.contact_section01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-width: 1440px;
  aspect-ratio: 1440/2462;
  background-image: url(../img/contact/contact-bg_design01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
  opacity: 0.82;
}

.contact_section01__text {
  margin: 5.6rem auto 8.0rem;
  text-align: center;
  line-height: 2.5;
}

.contact_section01__text:last-child {
  margin-bottom: 2.0rem;
}

.contact_section01__text+.contact_section01__text {
  margin-top: -4.7rem;
}

@media screen and (max-width:769px) {
  .contact_section01__text {
    margin: 3.9rem auto 5.0rem;
    font-size: 1.44rem;
    line-height: 2.0;
  }

  .contact_section01::before {
    background-image: url(../img/contact/contact-bg_design01-sp.png);
    width: 100%;
    min-width: 100%;
    aspect-ratio: 390/2521;
  }

  .contact_section01__text+.contact_section01__text {
    margin-top: -2.7rem;
  }
}

/********************
contact_footer
**********************/
.contact_footer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 15rem 2rem 15.5rem;
  background-image: url(../img/contact/contact_footer__bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.contact_footer__block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.contact_footer__block_item {
  position: relative;
  padding: 2.87rem 9.2rem;
}

.contact_footer__block_item:nth-of-type(n+2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5px;
  height: 100%;
  background: #fff;
  opacity: 0.76;
}

.contact_footer__block_heading {
  margin: 0 auto 0.51em;
  font-size: 3.1rem;
  font-weight: 600;
  line-height: 1.1;
  opacity: 0.96;
}

.contact_footer__block_number {
  margin: 0 auto 0.25em;
  font-size: 4.4rem;
  font-family: var(--font-inter);
  line-height: 1.1;
  white-space: nowrap;
}

.contact_footer__block_text {
  margin: 0 auto 0.2em;
  font-size: 1.96rem;
  font-family: var(--font-inter);
  line-height: 1.32;
}


@media screen and (max-width:769px) {
  .contact_footer {
    padding: 2.8rem 3.9rem 2.96rem;
    background-image: url(../img/contact/contact_footer__bg-sp@2x.jpg);
  }

  .contact_footer__block {
    flex-direction: column;
  }

  .contact_footer__block_item {
    padding: 3.2rem 1rem;
  }

  .contact_footer__block_item:nth-of-type(n+2)::before {
    width: 100%;
    height: 0.15rem;
  }

  .contact_footer__block_heading {
    margin: 0 auto 0.51em;
    font-size: 2.8rem;
  }

  .contact_footer__block_number {
    margin: 0 auto 0.25em;
    font-size: 4.0rem;
  }

  .contact_footer__block_text {
    margin: 0 auto 0.2em;
    font-size: 1.6rem;
  }
}


/**********
   contactForm
***********/
#contactForm {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#contactForm ::-webkit-input-placeholder {
  color: #b3b3b3;
}

#contactForm ::-moz-placeholder {
  color: #b3b3b3;
}

#contactForm :-ms-input-placeholder {
  color: #b3b3b3;
}

#contactForm ::placeholder {
  color: #b3b3b3;
}

#contactForm input[type="text"],
#contactForm input[type="time"],
#contactForm input[type="mail"],
#contactForm select,
#contactForm textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  max-width: 100%;
  padding: 0.40em 1.5em 0.50em 0.96em;
  outline: none;
  border-radius: 0;
  border: 1px solid #AEA7A5;
  background: #F2F2F2;
  font-feature-settings: "salt";
  color: var(--color-black01);
}

#contactForm input,
#contactForm select,
#contactForm textarea {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--font-base);
}

#contactForm select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

#contactForm .form-select_wrapper {
  position: relative;
}

#contactForm .form-select_wrapper::after {
  content: "";
  bottom: 1.3rem;
  right: 1.5rem;
  transform: translateY(-47%) rotate(45deg);
  position: absolute;
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  border: 2.0px solid var(--color-black01);
  border-top: 0;
  border-left: 0;
}

#contactForm input[type=checkbox] {
  position: absolute;
  top: 0;
  visibility: hidden;
  pointer-events: none;
}

#contactForm .checkbox_item {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0.32em 3.5em;
  position: relative;
  width: auto;
  margin: 0 auto;
}

#contactForm .checkbox_item::before {
  background: #F2F2F2;
  border: 1px solid #AEA7A5;
  content: '';
  display: block;
  width: 2.15em;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0.28em;
  left: 0;
}

#contactForm .checkbox_item::after {
  border-right: 0.28em solid #C40018;
  border-bottom: 0.28em solid #C40018;
  content: '';
  display: block;
  width: 1.1em;
  height: auto;
  aspect-ratio: 69/144;
  opacity: 0;
  position: absolute;
  top: -0.4em;
  left: 0.92em;
  transform: rotate(45deg);
}

#contactForm input[type=checkbox]:checked+.checkbox_item::after {
  opacity: 1;
}

#contactForm .checkbox_item {}

#contactForm textarea {
  height: 25rem;
  padding-top: 1em;
  line-height: 1.5;
}

#contactForm .form-wrap {
  display: grid;
  grid-template-columns: 28rem 1fr;
  column-gap: 2.0rem;
  padding: 2.6rem 0.1rem 2.62rem;
  border: 1.6px solid #D9D9D9;
  border-left: 0;
  border-right: 0;
}

#contactForm .form-wrap:nth-of-type(n+2) {
  border-top: 0;
}

#contactForm .form-wrap dd {
  flex: 1;
}

#contactForm .form-contents_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1em;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
  width: 100%;
  margin-top: 0em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0.025em;
}

#contactForm .form-contents_title::before {
  content: "";
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25em;
  padding: 0.1em 1.17em 0.15em;
  border-radius: 0.32em;
  white-space: nowrap;
  background: transparent;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  font-family: var(--font-gothic);
  line-height: 1.0;
  margin-left: 0;
  line-height: 1;
  pointer-events: none;
}

#contactForm .required .form-contents_title::before {
  content: "必須";
  background: #C40018;
}


#contactForm .form-contents_title .attention_text {
  display: inline-block;
  font-size: 0.87em;
  margin: 0.2em 0 -0.2em;
}

#contactForm .form-inner {
  position: relative;
  max-width: 50rem;
}

#contactForm .form-inner:nth-of-type(n+2) {
  margin-top: 0.82rem;
}

#contactForm .form-inner--flex {
  display: flex;
  justify-content: flex-start;
  column-gap: 0.76rem;
}

#contactForm .form-inner--flex input {
  max-width: 16rem;
}

#contactForm .address_group_wrap .form-inner:first-of-type input {
  width: 4.4em;
  padding-left: 0.55em;
  padding-right: 0.55em;
}

#contactForm .address_group_wrap .form-inner:first-of-type input:first-of-type {
  width: 3.9em;
  text-align: right;
}


#contactForm .form-contents_check {
  cursor: pointer;
}

#contactForm .confirm01_wrap {
  display: block;
  border: 0;
  padding: 3.2rem 0 2.0rem;
}

#contactForm .confirm01-inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 0;
  margin: 1.0rem auto;
  text-align: center;
}

#contactForm .confirm01-inner label {
  padding-right: 0;
}

/*** form-datepicker ***/
.js-form-datepicker .formError {
  display: none !important;
}

.js-form-datepicker.error-show .formError {
  display: block !important;
}


/* contact btn */
.form_btn_block {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
  margin: 7.6rem auto 3.2rem;
}

.form_btn_block .contact_btn {
  --bg_color: var(--color-black01);
  --color: var(--color-white);
  position: relative;
  width: 25rem;
  height: 4.4em;
  margin: 0 auto;
  border: none !important;
  border-radius: 0 !important;
  font-size: 1.6rem;
}

.form_btn_block .contact_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.96em;
  transform: translateY(-54%);
  width: 0.82em;
  height: auto;
  aspect-ratio: 11/13;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--color);
  pointer-events: none;
}

.form_btn_block .submit_btn {
  position: relative;
  width: 25rem;
}

.form_btn_block .return_btn {
  width: 25rem;
}

.form_btn_block.flex_base .contact_btn {
  margin: 0;
}

#contactForm .form_btn_block .contact_btn input,
.form_btn_block .contact_btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-bottom: 0.1em;
  margin: 0 auto;
  background: var(--bg_color);
  border: 2.0px solid var(--bg_color);
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 1em;
  font-family: var(--font-gothic);
  letter-spacing: 0.025em;
  color: var(--color);
  cursor: pointer;
  transition: 0s;
  opacity: 1 !important;
}

#contactForm .form_btn_block .submit_btn {
  --bg_color: var(--color-black01);
}

#contactForm .form_btn_block .return_btn,
.form_btn_block .return_btn {
  --bg_color: #aaa;
}

#contactForm .form_btn_block .return_btn::after {
  right: 0;
  left: 2rem;
  transform: translateY(-47%) rotate(180deg);
  transform-origin: center center;
}

.form_btn_block .contact_btn:hover {
  opacity: 1;
}

#contactForm .form_btn_block .contact_btn:hover input,
.form_btn_block .contact_btn:hover a {
  background: var(--color);
  color: var(--bg_color);
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}

.form_btn_block .contact_btn:hover::after {
  background: var(--bg_color);
}


#contactForm .form_btn_block .return_btn input:hover,
.form_btn_block .return_btn a:hover {}



/* error */
#contactForm .formError {
  position: static !important;
  margin: 0 !important;
  pointer-events: none;
}

#contactForm .formErrorContent {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  background: #ce0018;
  padding: 0.4em 0.55em 0.44em 0.82em;
  border-radius: 0.1rem;
  line-height: 1.56;
}

#contactForm .formError .formErrorContent:after {
  display: none;
}

#contactForm .form-mail .formErrorContent span {
  display: none;
}

#contactForm .form-mail .formErrorContent span:last-of-type {
  display: inherit;
}



@media screen and (min-width:769.02px) {
  .form_btn_block .contact_btn:last-of-type:first-of-type {
    width: 25.5rem;
  }
}


@media screen and (max-width:769px) {

  #contactForm .form-wrap {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2.28rem 2.5rem 2.55rem;
    box-sizing: content-box;
  }

  #contactForm {
    width: 100%;
  }

  #contactForm textarea {
    height: 17rem;
  }

  #contactForm .form-contents_title {
    flex-direction: row-reverse;
    justify-content: flex-end;
    column-gap: 2.0rem;
      margin-bottom: 0.87em;
  }

  #contactForm .form-contents_title::before {
    font-size: 1.5rem;
    padding: 0.07em 1em 0.11em;
  }

  #contactForm .form_btn_block {
    flex-direction: column-reverse;
    row-gap: 2.0rem;
    margin: 4.7rem auto 2.5rem;
  }

  #contactForm .form_btn_block .contact_btn {
    font-size: 1.7rem;
  }

  .form_btn_block .contact_btn {
    width: 29rem;
  }


  #contactForm .formErrorContent {
    font-size: 1.1rem;
  }
}





/********************

   contact page

*********************/
.contact_group {}

.contact_group.main_contents {
  padding-top: 10rem;
  padding-bottom: 13.2rem;
  min-height: calc(100vh - 15rem);
}

.contact_group #contactForm {
  max-width: 96rem;
}


@media screen and (max-width:769px) {
  .contact_group #body_inner {
    margin-bottom: 0;
  }

  .contact_group.main_contents {
    padding-top: 5.6rem;
    padding-bottom: 8.7rem;
  }

  .contact_group .page_tit {
    font-size: 2.9rem;
    margin-bottom: 1.1rem;
  }

  .contact_group .page_lead {
    font-size: 1.55rem;
    margin-bottom: 3.8rem;
  }
}

#contactForm .form_btn_block .contact_btn {
  margin: 0;
}



.form_loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  background: #000000cc;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.form_loading.active {
  opacity: 1;
  pointer-events: all;
}

.form_loading__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-54%);
  display: block;
}

.form_loading__bars {
  display: block;
  margin-bottom: 1.9rem;
}

.form_loading__bars span,
.form_loading__bars::before,
.form_loading__bars::after {
  content: "";
  display: block;
  background: #3C6C46;
  width: 17rem;
  height: 0.62rem;
  margin-top: 1.18rem;
  -webkit-animation: form_load 2.2s ease infinite;
  animation: form_load 2.2s ease infinite;
  border-radius: 1rem;
  -webkit-filter: brightness(1.87);
  filter: brightness(1.87);
}

.form_loading__bars span {
  -webkit-animation-delay: 170ms;
  animation-delay: 170ms;
}

.form_loading__bars::after {
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}

@-webkit-keyframes form_load {
  50% {
    width: 1.0rem;
    margin-right: 16.0rem;
    opacity: 1;
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
}

@keyframes form_load {
  50% {
    width: 1.0rem;
    margin-right: 16.0rem;
    opacity: 1;
    -webkit-filter: brightness(1);
    filter: brightness(1);
  }
}

.form_loading__text {
  text-align: center;
  color: #ffffffdd;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.25em;
}

/**************

   confirm page

***************/
.p-confirm .contact_section01__text {
  margin-top: -1rem;
  margin-bottom: 6.2rem;
}

.p-confirm #contactForm .form-wrap {
  border-bottom: 1px solid var(--color-black01);
  padding: 2.2rem 0.25rem 2.5rem;
}

.p-confirm #contactForm .form-wrap:first-of-type {
  border-top: 1px solid var(--color-black01);
}

/* 非表示　*/
.p-confirm #contactForm input:not([type="submit"]),
.p-confirm #contactForm .form-inner,
.p-confirm #contactForm .form-select_wrapper,
.p-confirm #contactForm textarea,
.p-confirm #contactForm select,
.p-confirm #contactForm .form-preferred_date_block__date_wrapper::after,
.p-confirm #contactForm .form-preferred_date_block__time_wrapper::after,
.p-confirm #contactForm [data-name="mail_confirm"],
.p-confirm #contactForm [data-name="confirm01"],
.p-confirm #contactForm .checkbox_item {
  background: transparent;
  color: #fff;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.p-confirm .form-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.p-confirm .message_wrap .form-inner {
  min-height: 5rem;
}

.p-confirm #contactForm .form-contents_title {
  margin-top: 0;
}

.p-confirm #contactForm .form-wrap dd {
  max-width: 100%;
}

.p-confirm #contactForm .form-contents_title::after {
  display: none;
}



#contactForm .confirm_input_content {
  display: inline-block;
  font-size: 1.8rem;
}

#contactForm textarea~.confirm_input_content {
  word-break: break-all;
}


@media screen and (max-width:769px) {
  #contactForm .confirm_input_content {
    font-size: 1.6rem;
  }

  .p-confirm .message_wrap .form-inner {
    min-height: 3.2rem;
  }
}



/**************

   thanks page

***************/
.p-thanks.main_contents {
  margin-top: 5.5vh;
}

@media screen and (min-width:769.02px) {
  .p-thanks .form_btn_block {
    margin-top: 5rem;
  }
}