@charset "UTF-8";
:root {
  --headerHeight: 6.25rem;
  --paddingSection: 6.25rem;
  --paddingLR: 1rem;
  --border_radius: 1.25rem;
}
@media screen and (max-width: 979px) {
  :root {
    --headerHeight: 4rem;
    --paddingSection: 2.5rem;
    --border_radius: 0.71428rem;
  }
}

:root {
  --color_main: #4B4B4B;
  --color_sub: #EFEFEF;
}

/*========== 子ページ ==========*/
.layout_pagination {
  font-size: 1.375rem;
  font-weight: 200;
  line-height: 1;
  font-family: "Barlow";
  margin-top: var(--paddingSection);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.layout_pagination .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.layout_pagination .page-numbers {
  border: 1px solid #000;
  border-radius: 50%;
  width: 3.125rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout_pagination .page-numbers.current {
  border-color: var(--color_main);
  background-color: var(--color_main);
  color: #fff;
}
.layout_pagination .prev {
  display: block;
  background-color: #000;
  width: 0.75rem;
  height: 0.5rem;
  -webkit-clip-path: polygon(0 50%, 100% 0%, 100% 100%);
          clip-path: polygon(0 50%, 100% 0%, 100% 100%);
}
.layout_pagination .next {
  display: block;
  background-color: #000;
  width: 0.75rem;
  height: 0.5rem;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0% 100%);
          clip-path: polygon(0 0, 100% 50%, 0% 100%);
}
@media screen and (max-width: 979px) {
  .layout_pagination {
    font-size: 1rem;
    flex-wrap: wrap;
  }
  .layout_pagination .pagination {
    width: 100%;
    gap: 0.5rem;
  }
  .layout_pagination .prev,
.layout_pagination .next {
    order: 1;
  }
  .layout_pagination .page-numbers {
    width: 2.5rem;
  }
}

/*==========
子ページ共通
==========*/
#mv {
  min-height: 15rem;
  background-color: var(--color_sub);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--paddingLR);
}
#mv .title_main {
  font-size: 3.25rem;
  text-align: center;
  line-height: 1.25;
}
#mv .title_main .small {
  font-size: 0.875em;
}
#mv .title_main + .title_sub {
  margin-top: 0.5rem;
}
#mv .title_sub {
  font-size: 1.875rem;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 979px) {
  #mv {
    min-height: 10rem;
  }
  #mv .title_main {
    font-size: 1.5rem;
  }
  #mv .title_sub {
    font-size: 1rem;
  }
}

/*==========
feature
==========*/
#feature_intro .flex {
  display: flex;
}
#feature_intro .img_area {
  margin-bottom: 1.5rem;
}
#feature_intro .text_area {
  padding: 0 1rem;
}
#feature_intro .title_area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
#feature_intro .cross {
  width: 3.75em;
  aspect-ratio: 1/1;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  transform: translateY(50%);
}
#feature_intro .cross::before, #feature_intro .cross::after {
  content: "";
  width: 100%;
  height: 6px;
  border-radius: 6.25rem;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
}
#feature_intro .cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#feature_intro .cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#feature_intro .item {
  flex: 1;
}
#feature_intro .title {
  font-family: "M PLUS Rounded 1c";
  font-size: 2.5rem;
  line-height: 1.25;
  font-weight: 500;
  text-align: center;
}
#feature_intro .text {
  font-size: 1.25rem;
}
@media screen and (max-width: 979px) {
  #feature_intro .flex {
    flex-direction: column;
  }
  #feature_intro .img_area {
    margin-bottom: 0.75rem;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
  #feature_intro .title_area {
    margin-bottom: 0.5rem;
  }
  #feature_intro .cross {
    width: 2rem;
    transform: none;
    margin: 1rem auto;
  }
  #feature_intro .cross::before, #feature_intro .cross::after {
    height: 3px;
  }
  #feature_intro .title {
    font-size: 1.25rem;
  }
  #feature_intro .text {
    font-size: 0.875rem;
  }
}

#feature_reason .list .row {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
#feature_reason .list .row + .row {
  margin-top: calc(var(--paddingSection) * 0.64);
}
#feature_reason .list .row:nth-child(odd) .text_area {
  order: 1;
  margin-left: -25%;
  padding-left: calc(25% + 2.5rem);
}
#feature_reason .list .row:nth-child(even) .text_area {
  order: -1;
  margin-right: -25%;
  padding-right: calc(25% + 2.5rem);
}
#feature_reason .list .img_area {
  width: 50%;
}
#feature_reason .list .text_area {
  flex: 1;
  padding: 4rem 2.5rem;
  margin-top: 5rem;
  background-color: #fff;
  border-radius: var(--border_radius);
  z-index: -1;
}
#feature_reason .list .circle {
  font-size: 1.9375rem;
  line-height: 1.25;
  font-weight: 500;
  width: 4.45em;
  aspect-ratio: 1/1;
  background-color: #4B4B4B;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(-1.25em - 4rem);
  margin-bottom: 1rem;
}
#feature_reason .list .text {
  font-size: 1.25rem;
}
#feature_reason .list .btn_01 {
  margin-top: 2.5rem;
  margin-left: 0;
}
@media screen and (max-width: 979px) {
  #feature_reason .list .row {
    flex-direction: column;
  }
  #feature_reason .list .row:nth-child(odd) .text_area, #feature_reason .list .row:nth-child(even) .text_area {
    order: 1;
    margin-left: 0;
    padding-left: var(--paddingLR);
    margin-right: var(--paddingLR);
    padding-right: var(--paddingLR);
  }
  #feature_reason .list .img_area {
    width: calc(100% - 5rem);
    max-width: 20rem;
    margin-left: auto;
    margin-right: 0;
    margin-top: 1rem;
  }
  #feature_reason .list .text_area {
    padding: var(--paddingLR);
    margin-top: -2.5rem;
  }
  #feature_reason .list .circle {
    font-size: 1.125rem;
    margin-top: calc(-1.25em - var(--paddingLR));
    margin-left: -1.75em;
  }
  #feature_reason .list .text {
    font-size: 0.875rem;
  }
  #feature_reason .list .btn_01 {
    margin-top: 1rem;
    margin-left: auto;
  }
}

#feature_award .list {
  font-size: 1.25rem;
  margin-top: calc(var(--paddingSection) * 0.64);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  line-height: 1.5;
  gap: 1.5em 2em;
}
#feature_award .list > * {
  position: relative;
  padding-left: 1.5em;
}
#feature_award .list > *::before {
  content: "・";
  font-size: 1.5em;
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -0.25em;
}
@media screen and (max-width: 979px) {
  #feature_award .list {
    font-size: 0.875rem;
    grid-template-columns: 1fr;
    gap: 1em;
  }
}

#feature_team .layout_body {
  background: center/cover url("../img/child/feature/feature_team_bg.jpg") no-repeat;
}
#feature_team .text_area {
  margin-top: 2rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 979px) {
  #feature_team .layout_body {
    min-height: 12.5rem;
  }
  #feature_team .text_area {
    font-size: 0.875rem;
  }
}

#feature_other .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 2.5rem;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 500;
  text-align: center;
}
#feature_other .list > * {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4em;
  background-color: #fff;
  border-radius: var(--border_radius);
  padding: 0.25em var(--paddingLR);
}
@media screen and (max-width: 979px) {
  #feature_other .list {
    gap: 1rem;
    font-size: 0.875rem;
  }
}

#feature_difference .table_01 {
  margin-top: calc(var(--paddingSection) * 0.64);
}
@media screen and (max-width: 979px) {
  #feature_difference .table_01 {
    margin-top: 0.5rem;
  }
}

/*==========
flow
==========*/
#flow .btn_area {
  margin-top: var(--paddingSection);
}

.layout_flow {
  display: grid;
  grid-template-columns: 1fr 11rem;
  gap: 0.75rem 3rem;
}
.layout_flow .row_02 {
  grid-row-end: span 2;
}
.layout_flow .accordion_area {
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--color_main);
  padding-bottom: 1.5rem;
  padding-right: 10em;
  position: relative;
}
.layout_flow .accordion_area::before {
  content: "";
  font-size: 1.125rem;
  width: 1em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_accordion.svg") no-repeat;
  position: absolute;
  bottom: 0.825em;
  right: 1em;
  transition: transform 0.5s;
}
.layout_flow .accordion_area::after {
  content: "詳細を開く";
  font-size: 1.125rem;
  position: absolute;
  bottom: 0.5em;
  right: 1.5em;
  padding-right: 1em;
}
.layout_flow .accordion_area.open::before {
  transform: rotate(180deg);
}
.layout_flow .accordion_area.open::after {
  content: "詳細を閉じる";
}
.layout_flow .accordion_area:not(:first-child) {
  padding-top: 2rem;
}
.layout_flow .accordion_title .title {
  font-size: 2.25rem;
  line-height: 1.25;
}
.layout_flow .accordion_body {
  display: none;
  padding: 2.5rem 0 1.5rem;
}
.layout_flow .accordion_body .text {
  font-size: 1.25rem;
}
.layout_flow .arrow_area {
  text-align: center;
  line-height: 1.25;
  background-color: var(--color_sub);
  padding: 1rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.layout_flow .arrow_area.arrow {
  background-color: var(--color_main);
  color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 1.5rem), 50% 100%, 0% calc(100% - 1.5rem));
          clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 1.5rem), 50% 100%, 0% calc(100% - 1.5rem));
}
.layout_flow .arrow_area.empty {
  visibility: hidden;
}
.layout_flow .arrow_area .title {
  font-size: 1.625rem;
}
.layout_flow .arrow_area .title_sub {
  font-size: 1.25rem;
  font-weight: 600;
}
.layout_flow .arrow_area .time_big {
  font-size: 2.25rem;
  font-weight: 600;
}
.layout_flow .arrow_area .time_small {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 979px) {
  .layout_flow {
    grid-template-columns: 1fr 6.25rem;
    gap: 0.5rem var(--paddingLR);
  }
  .layout_flow .accordion_area {
    padding-bottom: 1.25rem;
    padding-right: 0;
  }
  .layout_flow .accordion_area::before {
    font-size: 0.75rem;
    bottom: 0.25em;
    right: 0;
  }
  .layout_flow .accordion_area::after {
    font-size: 0.75rem;
    bottom: 0;
    right: 0.5em;
  }
  .layout_flow .accordion_area:not(:first-child) {
    padding-top: 0.75rem;
  }
  .layout_flow .accordion_title .title {
    font-size: 1rem;
  }
  .layout_flow .accordion_body {
    padding: 0.5rem 0;
  }
  .layout_flow .accordion_body .text {
    font-size: 0.75rem;
    line-height: 1.25;
  }
  .layout_flow .arrow_area {
    padding: 0.5rem;
  }
  .layout_flow .arrow_area.arrow {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 0.75rem), 50% 100%, 0% calc(100% - 0.75rem));
            clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 0.75rem), 50% 100%, 0% calc(100% - 0.75rem));
  }
  .layout_flow .arrow_area .title {
    font-size: 0.875rem;
  }
  .layout_flow .arrow_area .title_sub {
    font-size: 0.75rem;
  }
  .layout_flow .arrow_area .time_big {
    font-size: 1rem;
  }
  .layout_flow .arrow_area .time_small {
    font-size: 0.75rem;
  }
}

/*==========
case
==========*/
#case_archive .search_area .text_intro {
  font-size: 1.625rem;
  text-align: center;
  margin-bottom: 1.75em;
}
#case_archive .search_area .row_input {
  margin-bottom: calc(var(--paddingSection) * 0.64);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.5em;
  font-size: 1.375rem;
}
#case_archive .search_area .row_input input[type=checkbox] {
  transform: scale(2);
  cursor: pointer;
}
#case_archive .search_area .row_input label {
  line-height: 1.125;
  display: flex;
  align-items: center;
  gap: 0.75em;
  cursor: pointer;
}
@media screen and (max-width: 979px) {
  #case_archive .search_area .text_intro {
    font-size: 1rem;
  }
  #case_archive .search_area .row_input {
    font-size: 0.875rem;
    align-items: center;
  }
  #case_archive .search_area .row_input input[type=checkbox] {
    transform: scale(1.5);
  }
  #case_archive .search_area .row_input > * {
    width: calc((100% - 2.5em) / 2);
    padding-left: 2em;
  }
}

.layout_case {
  margin-top: calc(var(--paddingSection) * 1);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(21.875rem, 1fr));
  gap: 5rem 1.5rem;
}
.layout_case > * {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
.layout_case a {
  display: grid;
  grid-template-rows: inherit;
  grid-row: inherit;
  gap: inherit;
  color: inherit;
  text-decoration: none;
}
.layout_case .img_area {
  aspect-ratio: 35/26;
  display: flex;
  flex-wrap: wrap;
}
.layout_case .img_area img {
  width: 50%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.layout_case .title {
  font-family: "Barlow";
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 0.5em;
  text-align: center;
}
.layout_case .text_link {
  font-size: 1.125rem;
  padding: 1em;
  border-bottom: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 1em;
}
.layout_case .text_link::after {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_btn_01.svg") no-repeat;
  display: block;
}
@media screen and (max-width: 979px) {
  .layout_case {
    gap: 4rem 1rem;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  }
  .layout_case .title {
    font-size: 1.25rem;
  }
  .layout_case .text_link {
    font-size: 0.875rem;
  }
}

#case_single .row_title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.25rem 2.5rem;
  margin-bottom: 2.5rem;
}
#case_single .row_title .title {
  display: flex;
  align-items: flex-end;
  gap: 0.5em;
  line-height: 1;
}
#case_single .row_title .label {
  font-size: 1.5625em;
  font-weight: 500;
}
#case_single .row_title .price {
  font-family: "Barlow";
  font-size: 4.375em;
  font-weight: 200;
  margin-bottom: -0.125em;
}
#case_single .row_title .unit {
  font-size: 1.5625em;
}
#case_single .row_title .tax {
  font-size: 1.125em;
}
#case_single .row_title .number,
#case_single .row_title .aside {
  font-size: 1.125rem;
  margin-left: auto;
}
#case_single .wp_post {
  font-size: 1.25rem;
  line-height: 2;
}
@media screen and (max-width: 979px) {
  #case_single .row_title {
    margin-bottom: 0;
  }
  #case_single .row_title .title {
    font-size: 0.625rem;
    margin-left: auto;
    margin-right: auto;
  }
  #case_single .row_title .number {
    margin-top: 2em;
  }
  #case_single .row_title .number,
#case_single .row_title .aside {
    font-size: 0.875rem;
  }
  #case_single .row_title .aside {
    margin-right: auto;
    margin-top: 1.5rem;
  }
  #case_single .wp_post {
    font-size: 0.875rem;
  }
}

.layout_photo {
  margin-top: calc(var(--paddingSection) * 0.32);
  margin-bottom: calc(var(--paddingSection) * 0.32);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  gap: 1.5rem;
}
.layout_photo .img {
  aspect-ratio: 1/1;
}
.layout_photo .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 979px) {
  .layout_photo {
    grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
    gap: 0.5rem;
  }
}

.layout_relation .list {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(auto-fill, minmax(21.875rem, 1fr));
  gap: 2.5rem 1.5rem;
}
.layout_relation .list > * {
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 3;
}
.layout_relation .list a {
  display: grid;
  grid-template-rows: inherit;
  gap: inherit;
  grid-row: inherit;
  color: inherit;
  text-decoration: none;
  width: 100%;
}
.layout_relation .list .img_area {
  aspect-ratio: 35/26;
  display: flex;
  flex-wrap: wrap;
}
.layout_relation .list .img_area img {
  width: 50%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.layout_relation .list .title {
  font-family: "Barlow";
  font-size: 1.75rem;
  text-align: center;
  line-height: 1.25;
  margin-top: 0.5em;
  margin-bottom: 0.75em;
}
.layout_relation .list .text_link {
  font-size: 1.125rem;
  padding: 1em;
  border-bottom: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 1em;
}
.layout_relation .list .text_link::after {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_btn_01.svg") no-repeat;
  display: block;
}
.layout_relation .btn_area {
  margin-top: calc(var(--paddingSection) * 1);
}
@media screen and (max-width: 979px) {
  .layout_relation .list > * {
    max-width: 20rem;
  }
  .layout_relation .list .title {
    font-size: 1.25rem;
    margin-bottom: 0.5em;
  }
  .layout_relation .list .text_link {
    font-size: 0.875rem;
  }
}

/*==========
column
==========*/
#column .row_title .title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
#column .wp_post {
  font-size: 1.25rem;
  line-height: 2;
}
#column .wp-block-image:not(:first-child) {
  margin-top: 1.5rem;
}
#column .wp-block-image img {
  border-radius: var(--border_radius);
}
#column h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
#column h2:not(:first-child) {
  margin-top: 5rem;
}
#column h2::before {
  content: "▼";
}
#column .wp-block-list > *:not(:last-child) {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 979px) {
  #column .row_title .title {
    font-size: 1.25rem;
  }
  #column .wp_post {
    font-size: 0.875rem;
  }
  #column h2 {
    font-size: 1.125rem;
  }
}

.layout_column {
  display: grid;
  gap: 5rem 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(21.875rem, 1fr));
  line-height: 1.5;
}
.layout_column > * {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
.layout_column a {
  display: grid;
  grid-template-rows: inherit;
  grid-row: inherit;
  color: inherit;
  text-decoration: none;
  gap: 1rem;
}
.layout_column .title {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.layout_column .text {
  font-size: 1.25rem;
}
.layout_column .img {
  aspect-ratio: 350/240;
}
.layout_column .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_column .text_link {
  font-size: 1.125rem;
  padding: 1em;
  border-bottom: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 1em;
}
.layout_column .text_link::after {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_btn_01.svg") no-repeat;
  display: block;
}
@media screen and (max-width: 979px) {
  .layout_column > * {
    grid-template-rows: none;
  }
  .layout_column .title {
    font-size: 1rem;
  }
  .layout_column .text {
    font-size: 0.875rem;
  }
  .layout_column .text_link {
    font-size: 0.875rem;
  }
}

.layout_can {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  gap: 1.5rem 1.25rem;
}
.layout_can:not(:first-child) {
  margin-top: 1.5rem;
}
.layout_can > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  min-height: 8.75rem;
  border-radius: var(--border_radius);
  background-color: #EFEFEF;
  line-height: 1.4;
  text-align: center;
}
.layout_can .aside {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.layout_can .maru {
  background: center/65% 65% url("../img/common/icon_maru.svg") no-repeat #EFEFEF;
}
.layout_can .sankaku {
  background: center/65% 65% url("../img/common/icon_sankaku.svg") no-repeat #EFEFEF;
}
.layout_can .batsu {
  background: center/65% 65% url("../img/common/icon_batsu.svg") no-repeat #EFEFEF;
}
@media screen and (max-width: 979px) {
  .layout_can {
    gap: 1.5rem 0.5rem;
    grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  }
}

/*==========
warranty
==========*/
#warranty_intro .text {
  font-size: 1.25rem;
}
@media screen and (max-width: 979px) {
  #warranty_intro .text {
    font-size: 0.875rem;
  }
}

#warranty_policy .title_02 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#warranty_policy .title_02 .btn_02 {
  margin-left: auto;
}
#warranty_policy .text {
  font-size: 1.25rem;
}
#warranty_policy .asterisk + .asterisk {
  margin-top: 0.75em;
}
@media screen and (max-width: 979px) {
  #warranty_policy .title_02 {
    flex-wrap: wrap;
  }
  #warranty_policy .text {
    font-size: 0.875rem;
  }
}

#warranty_disclaimer ol {
  font-size: 1.25rem;
}
@media screen and (max-width: 979px) {
  #warranty_disclaimer ol {
    font-size: 0.875rem;
  }
}

#warranty_outro .list {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
#warranty_outro .list > *:not(:last-child) {
  border-bottom: 1px solid #000;
  padding-bottom: calc(var(--paddingSection) * 0.8);
  margin-bottom: calc(var(--paddingSection) * 0.8);
}
#warranty_outro .list .text {
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 979px) {
  #warranty_outro .list .text {
    font-size: 0.875rem;
  }
}

/*==========
company
==========*/
#company_intro .flex {
  display: flex;
  align-items: flex-start;
}
#company_intro .img_area {
  width: 75%;
  margin-right: -25%;
  margin-bottom: var(--paddingSection);
}
#company_intro .text_area {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: auto;
  flex: 1;
  background-color: #fff;
  padding: 2.5rem;
  border-radius: var(--border_radius);
  position: relative;
}
#company_intro .text_area::before, #company_intro .text_area::after {
  content: "";
  width: 1.25rem;
  aspect-ratio: 1/1;
  position: absolute;
  z-index: 1;
}
#company_intro .text_area::before {
  left: -1.25rem;
  bottom: calc(var(--paddingSection));
  background: center/contain url("../img/common/deco_round_L.svg") no-repeat;
  transform: rotate(90deg);
}
#company_intro .text_area::after {
  left: calc(50% - 1.25rem);
  top: -1.25rem;
  background: center/contain url("../img/common/deco_round_R.svg") no-repeat;
  transform: rotate(180deg);
}
#company_intro .title {
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 1em;
}
#company_intro .text {
  font-size: 1.25rem;
}
@media screen and (max-width: 979px) {
  #company_intro .flex {
    flex-direction: column;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }
  #company_intro .img_area {
    width: calc(100% - var(--paddingLR));
    margin-right: 0;
    margin-bottom: 0;
  }
  #company_intro .text_area {
    width: calc(100% - var(--paddingLR));
    margin-left: auto;
    min-height: auto;
    padding: var(--paddingLR);
    margin-top: -2.5rem;
  }
  #company_intro .text_area::before, #company_intro .text_area::after {
    width: 0.625rem;
  }
  #company_intro .text_area::before {
    left: -0.625rem;
    top: 1.875rem;
    bottom: auto;
  }
  #company_intro .text_area::after {
    top: -0.625rem;
    left: auto;
    right: var(--paddingLR);
  }
  #company_intro .title {
    font-size: 1.125rem;
  }
  #company_intro .text {
    font-size: 0.875rem;
  }
}

#company_access .row_title {
  display: flex;
  align-items: center;
}
#company_access .row_title .title_01 {
  margin-bottom: 0;
}
#company_access .row_title .title_01::after {
  left: 0;
  transform: none;
}
#company_access .row_title .title_area {
  margin-top: 5rem;
  margin-right: -9.5625rem;
  padding: 3rem 5rem 3rem 0;
  border-radius: var(--border_radius);
  background-color: #fff;
  z-index: 1;
  position: relative;
}
#company_access .row_title .title_area::before, #company_access .row_title .title_area::after {
  content: "";
  width: 1.25rem;
  aspect-ratio: 1/1;
  position: absolute;
  right: 8.3125rem;
  z-index: 1;
}
#company_access .row_title .title_area::before {
  top: -1.25rem;
  background: center/contain url("../img/common/deco_round_L.svg") no-repeat;
  transform: rotate(180deg);
}
#company_access .row_title .title_area::after {
  bottom: -1.25rem;
  background: center/contain url("../img/common/deco_round_R.svg") no-repeat;
}
#company_access .row_title .img_area {
  flex: 1;
}
@media screen and (max-width: 979px) {
  #company_access .row_title {
    max-width: 30em;
    margin-left: auto;
    margin-right: auto;
  }
  #company_access .row_title .title_area {
    margin-top: 0;
    margin-right: -7.5rem;
    padding: calc(var(--paddingLR) + 0.5em) var(--paddingLR) var(--paddingLR) 0;
  }
  #company_access .row_title .title_area::before, #company_access .row_title .title_area::after {
    width: 0.625rem;
    right: 6.875rem;
  }
  #company_access .row_title .title_area::before {
    top: -0.625rem;
  }
  #company_access .row_title .title_area::after {
    bottom: -0.625rem;
  }
}

/*==========
contact
==========*/
#contact_intro .flex {
  display: flex;
}
#contact_intro .flex .circle {
  margin-bottom: auto;
  transform: translateY(-50%);
  width: 2.25rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow.svg") no-repeat;
  margin: 0 0.75em;
}
#contact_intro .flex .item {
  flex: 1;
}
#contact_intro .flex .title {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  margin-top: 0.5em;
}
#contact_intro .text_area {
  margin-top: calc(var(--paddingSection) * 0.64);
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}
#contact_intro .btn_area {
  margin-top: calc(var(--paddingSection) * 0.64);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
#contact_intro .btn_area .btn_01 {
  width: 100%;
  max-width: 30.625rem;
  position: relative;
  padding-left: 3.5em;
  padding-right: 3.5em;
}
#contact_intro .btn_area .btn_01::after {
  transform: rotate(90deg);
  position: absolute;
  right: 2em;
}
@media screen and (max-width: 979px) {
  #contact_intro .flex {
    flex-direction: column;
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
  }
  #contact_intro .flex .circle {
    margin-left: auto;
    margin-right: auto;
    transform: rotate(90deg);
  }
  #contact_intro .flex .title {
    font-size: 1rem;
  }
  #contact_intro .text_area {
    font-size: 0.875rem;
  }
  #contact_intro .btn_area .btn_01 {
    max-width: 18.75rem;
    height: 3rem;
  }
  #contact_intro .btn_area .btn_01 .icon {
    max-width: 2rem;
  }
}

#contact_howto .title_01 {
  text-align: left;
}
#contact_howto .title_01::after {
  left: 0;
  transform: none;
}
#contact_howto .row_time,
#contact_howto .row_area {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 4rem;
}
#contact_howto .row_time .item,
#contact_howto .row_area .item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#contact_howto .row_time .label,
#contact_howto .row_area .label {
  border: 1px solid #000;
  font-size: 1.125rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1em;
  border-radius: 8px;
  line-height: 1.25;
  flex-shrink: 0;
}
#contact_howto .row_time .text,
#contact_howto .row_area .text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}
#contact_howto .row_area {
  margin-top: 1.5rem;
}
#contact_howto .row_area .label {
  border: none;
}
#contact_howto .bg {
  background-color: var(--color_sub);
  border-radius: var(--border_radius);
  padding: calc(var(--paddingSection) * 0.5);
  margin-top: calc(var(--paddingSection) * 0.5);
}
#contact_howto .bg .title {
  font-size: 1.375rem;
  line-height: 1.25;
  margin-bottom: 0.5em;
  font-weight: 500;
}
#contact_howto .bg .title::before {
  content: "◾️";
  margin-right: 0.25em;
}
#contact_howto .bg .text {
  font-size: 1.125rem;
}
#contact_howto .bg .btn_modaal {
  margin-top: 0.5em;
  margin-left: auto;
}
@media screen and (max-width: 979px) {
  #contact_howto .row_time .label,
#contact_howto .row_area .label {
    font-size: 1rem;
  }
  #contact_howto .row_time .text,
#contact_howto .row_area .text {
    font-size: 0.875rem;
  }
  #contact_howto .row_area .item {
    flex-direction: column;
  }
  #contact_howto .row_area .label {
    margin-right: auto;
    padding: 0;
  }
  #contact_howto .bg .title {
    font-size: 1rem;
  }
  #contact_howto .bg .text {
    font-size: 0.875rem;
  }
  #contact_howto .bg .btn_modaal {
    margin-right: auto;
  }
}

#contact_reason {
  padding: var(--paddingLR);
}
#contact_reason .list > * {
  border-bottom: 1px dotted #707070;
  padding: 1.5rem 0;
  margin-left: -1px;
}
#contact_reason .list .title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.5em;
}
#contact_reason .list .text {
  font-size: 1.25rem;
}
@media screen and (max-width: 979px) {
  #contact_reason {
    padding: 0;
  }
  #contact_reason .list .title {
    font-size: 1.125rem;
  }
  #contact_reason .list .text {
    font-size: 0.875rem;
  }
}

body:has(#contact) .modaal-container {
  border-radius: var(--border_radius);
}
body:has(#contact) .modaal-close {
  width: 5.375rem;
  height: 5.375rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
body:has(#contact) .modaal-close::before, body:has(#contact) .modaal-close::after {
  height: 50%;
  background-color: #000;
  top: 50%;
  left: 50%;
}
body:has(#contact) .modaal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
body:has(#contact) .modaal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
body:has(#contact) .js_modaal_close {
  cursor: pointer;
  width: 5.375rem;
  height: 5.375rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 10;
}
body:has(#contact) .js_modaal_close::before, body:has(#contact) .js_modaal_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 50%;
  background-color: #000;
  border-radius: 4px;
}
body:has(#contact) .js_modaal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
body:has(#contact) .js_modaal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 979px) {
  body:has(#contact) .modaal-close,
body:has(#contact) .js_modaal_close {
    width: 2.5rem;
    height: 2.5rem;
  }
  body:has(#contact) .modaal-close::before, body:has(#contact) .modaal-close::after,
body:has(#contact) .js_modaal_close::before,
body:has(#contact) .js_modaal_close::after {
    width: 2px;
  }
}

#contact_line .text_intro {
  font-size: 1.25rem;
  font-weight: 500;
}
#contact_line .list {
  margin-top: 2rem;
  display: flex;
  counter-reset: li;
}
#contact_line .list > * {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  margin-top: -1px;
}
#contact_line .list > * .title {
  font-size: 1.375rem;
  line-height: 1.25;
  font-weight: 600;
  padding-top: 0.5em;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}
#contact_line .list > * .title::before {
  counter-increment: li;
  content: counter(li) ".";
  font-size: 2.5rem;
  font-weight: 500;
  font-family: "Barlow";
  line-height: 1;
  margin-top: -0.125em;
  display: block;
  flex-shrink: 0;
}
#contact_line .list > * .small {
  display: block;
  font-size: 0.81818em;
  font-weight: 500;
}
#contact_line .list > *:not(:last-child) {
  border-right: 1px dotted #000;
  position: relative;
}
#contact_line .list > *:not(:last-child)::after {
  content: "";
  width: 2rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow.svg") no-repeat;
  position: absolute;
  right: -0.25em;
  top: 50%;
  transform: translate(50%, -50%);
}
#contact_line .list .img_area {
  flex: 1;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#contact_line .list .img_area img {
  margin-left: auto;
  margin-right: auto;
}
#contact_line .list .qr_code .id {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
#contact_line .list .qr_code img {
  max-width: 7.5rem;
  margin-left: auto;
  margin-right: auto;
}
#contact_line .btn_01 {
  max-width: 248px;
}
#contact_line .btn_01::after {
  display: none;
}
@media screen and (max-width: 979px) {
  #contact_line .text_intro {
    font-size: 0.875rem;
  }
  #contact_line .list {
    flex-direction: column;
  }
  #contact_line .list > * {
    flex: 0 1 auto;
    padding: 2rem var(--paddingLR);
  }
  #contact_line .list > * .title {
    font-size: 1.125rem;
  }
  #contact_line .list > * .title::before {
    font-size: 1.5rem;
  }
  #contact_line .list > *:not(:last-child) {
    border-right: none;
    border-bottom: 1px dotted #000;
    position: relative;
  }
  #contact_line .list > *:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -0.25em;
    transform: translate(50%, 50%) rotate(90deg);
  }
  #contact_line .list > *:first-child {
    padding-top: 0;
  }
}

#contact_mail .row_title {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
#contact_mail .row_title .title_contact {
  margin-bottom: 0;
}
#contact_mail .row_title .text_area {
  flex: 1;
  text-align: center;
}
#contact_mail .row_title .text_area .text {
  font-size: 1.25rem;
  font-weight: 500;
}
#contact_mail .form_area .text_intro {
  font-size: 1.25rem;
}
@media screen and (max-width: 979px) {
  #contact_mail .row_title {
    flex-direction: column;
    align-items: flex-start;
  }
  #contact_mail .row_title .text_area .text {
    font-size: 0.875rem;
  }
  #contact_mail .form_area .text_intro {
    font-size: 0.875rem;
  }
}

.layout_form:not(:first-child) {
  margin-top: calc(var(--paddingSection) * 0.5);
}
.layout_form .row + .row {
  margin-top: calc(var(--paddingSection) * 0.5);
}
.layout_form .row > label:first-child {
  min-width: 16em;
  display: flex;
  align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.125rem;
  line-height: 1.25;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  position: relative;
}
.layout_form .row > label:first-child::before {
  content: "";
  width: 3em;
  height: 3px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.layout_form .row > label:first-child.required::after {
  content: "必須";
  font-size: 0.8888em;
  font-weight: 500;
  padding: 0.125em;
  background-color: #000;
  color: #fff;
  line-height: 1;
  border-radius: 5px;
  padding: 0.5em 1em;
  margin-left: auto;
  display: block;
}
.layout_form .flex_file {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.layout_form .flex_file > *:not(:first-child) {
  display: none;
}
.layout_form .flex_input {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.layout_form .flex_input + .flex_input {
  margin-top: 0.5rem;
}
.layout_form .flex_input:has(input[type=radio]) {
  gap: 0.5rem 4rem;
}
.layout_form input[type=file]::-webkit-file-upload-button {
  border: none;
  padding: 0.5em 1.25em;
  background-color: var(--color_sub);
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
}
.layout_form input[type=file]::-webkit-file-upload-button, .layout_form input[type=file]::file-selector-button {
  border: none;
  padding: 0.5em 1.25em;
  background-color: var(--color_sub);
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
}
.layout_form select {
  margin-top: 1em;
  display: block;
  border: none;
  padding: 0.5em 1.25em;
  background-color: var(--color_sub);
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
}
.layout_form input[type=text],
.layout_form input[type=email],
.layout_form input[type=tel] {
  margin-top: 1em;
  width: 100%;
  font: inherit;
  font-size: 1.125rem;
  padding: 0.75em 0;
  display: block;
  border: none;
  border-bottom: 2px solid var(--color_sub);
}
.layout_form input[type=text]::-moz-placeholder, .layout_form input[type=email]::-moz-placeholder, .layout_form input[type=tel]::-moz-placeholder {
  font: inherit;
  color: #BEC4C6;
}
.layout_form input[type=text]::placeholder,
.layout_form input[type=email]::placeholder,
.layout_form input[type=tel]::placeholder {
  font: inherit;
  color: #BEC4C6;
}
.layout_form input[type=text]:focus,
.layout_form input[type=email]:focus,
.layout_form input[type=tel]:focus {
  outline: none;
}
.layout_form textarea {
  width: 100%;
  border: 2px solid var(--color_sub);
  padding: 1em;
  font: inherit;
  outline: none;
  border-radius: 8px;
}
.layout_form textarea::-moz-placeholder {
  font: inherit;
  color: #BEC4C6;
}
.layout_form textarea::placeholder {
  font: inherit;
  color: #BEC4C6;
}
.layout_form label:has(> input[type=radio]),
.layout_form label:has(> input[type=checkbox]) {
  cursor: pointer;
  display: flex;
  gap: 0.5em;
  font-size: 1.125rem;
}
.layout_form input[type=radio],
.layout_form input[type=checkbox] {
  cursor: pointer;
}
.layout_form input[type=checkbox] {
  transform: scale(1.125);
}
.layout_form .layout_privacypolicy {
  font-size: 1.125rem;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #000;
}
.layout_form .layout_privacypolicy a {
  color: inherit;
}
.layout_form .layout_privacypolicy:not(:first-child) {
  margin-top: calc(var(--paddingSection) * 0.5);
}
.layout_form .btn_area:not(:first-child) {
  margin-top: calc(var(--paddingSection) * 0.5);
}
.layout_form .btn_area .btn_01 {
  font-family: inherit;
  font-weight: 500;
  background-color: #000;
  color: #fff;
}
.layout_form .row_other {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.layout_form .row_other:not(:has(.wpcf7cf-hidden)) {
  border-bottom: 2px solid var(--color_sub);
}
.layout_form .row_other input[type=text] {
  background-color: transparent;
  flex: 1;
  border-bottom: none;
  margin-top: 0;
}
@media screen and (max-width: 979px) {
  .layout_form .text {
    font-size: 0.875rem;
  }
  .layout_form .row > label:first-child {
    min-width: auto;
    width: 100%;
    font-size: 1rem;
    margin-bottom: 0.5em;
  }
  .layout_form .flex_file,
.layout_form .flex_input {
    flex-direction: column;
  }
  .layout_form input[type=file]::-webkit-file-upload-button {
    font-size: 1rem;
  }
  .layout_form input[type=file]::-webkit-file-upload-button, .layout_form input[type=file]::file-selector-button {
    font-size: 1rem;
  }
  .layout_form select {
    font-size: 1rem;
  }
  .layout_form input[type=text],
.layout_form input[type=email],
.layout_form input[type=tel] {
    margin-top: 0.5em;
    font-size: 1rem;
  }
  .layout_form label:has(> input[type=radio]) {
    font-size: 1rem;
  }
}

.wpcf7-form-control-wrap:has(.wpcf7-radio),
.wpcf7-form-control-wrap:has(.wpcf7-checkbox),
.wpcf7-radio,
.wpcf7-checkbox {
  display: contents;
}

.wpcf7-list-item {
  margin-left: 0;
}

/*==========
entry
==========*/
#entry_intro {
  --text_overlay:9.0rem;
}
#entry_intro .title_area .title {
  text-align: center;
  font-size: 2.875rem;
  line-height: 1.25;
  margin-bottom: 1em;
}
#entry_intro .title_area .text {
  text-align: center;
  font-size: 1.25rem;
}
#entry_intro .flex {
  margin-top: calc(var(--paddingSection) * 1);
  display: flex;
  align-items: flex-start;
}
#entry_intro .flex .img_area {
  max-width: 40.625rem;
}
#entry_intro .flex .img_round {
  position: relative;
}
#entry_intro .flex .img_round::before {
  content: "";
  width: 1.25rem;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: center/contain url("../img/common/deco_round_R.svg") no-repeat;
}
#entry_intro .flex .img_round:nth-child(1)::before {
  right: var(--text_overlay);
  transform: rotate(180deg);
}
#entry_intro .flex .img_round:nth-child(2)::before {
  left: var(--text_overlay);
  transform: rotate(-90deg);
}
#entry_intro .flex .text_area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-top: 11.875rem;
  border-radius: var(--border_radius);
  background-color: #fff;
  padding: 2.5rem;
  z-index: 1;
  position: relative;
}
#entry_intro .flex .text_area::before {
  content: "";
  width: 1.25rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: -1.25rem;
  z-index: 1;
  background: center/contain url("../img/common/deco_round_L.svg") no-repeat;
}
#entry_intro .flex .text_area:nth-child(1) {
  padding-left: 0;
  margin-right: calc(var(--text_overlay) * -1);
}
#entry_intro .flex .text_area:nth-child(1)::before {
  right: calc(var(--text_overlay) - 1.25rem);
  transform: rotate(180deg);
}
#entry_intro .flex .text_area:nth-child(2) {
  padding-right: 0;
  margin-left: calc(var(--text_overlay) * -1);
}
#entry_intro .flex .text_area:nth-child(2)::before {
  left: calc(var(--text_overlay) - 1.25rem);
  transform: rotate(90deg);
}
#entry_intro .flex .text_area .text {
  font-size: 1.25rem;
}
#entry_intro .flex .title_01 {
  text-align: left;
}
#entry_intro .flex .title_01::after {
  left: 0;
  transform: none;
}
#entry_intro .flex .title_sub {
  font-size: 2.25rem;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
#entry_intro .message_area .signature {
  margin-left: 1rem;
  margin-top: 2rem;
  line-height: 1.25;
}
#entry_intro .message_area .signature .post {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}
#entry_intro .message_area .signature .name {
  font-size: 2.25rem;
}
#entry_intro .message_area .text_area {
  margin-top: 8.125rem;
}
#entry_intro .anchor_area {
  margin-top: calc(var(--paddingSection) * 0.64);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
#entry_intro .anchor_area .btn_01 {
  width: 100%;
  max-width: 30.625rem;
  position: relative;
  padding-left: 3.5em;
  padding-right: 3.5em;
}
#entry_intro .anchor_area .btn_01::after {
  transform: rotate(90deg);
  position: absolute;
  right: 2em;
}
@media screen and (max-width: 979px) {
  #entry_intro .title_area .title {
    font-size: 1.25rem;
  }
  #entry_intro .title_area .text {
    font-size: 0.875rem;
  }
  #entry_intro .flex {
    flex-direction: column;
  }
  #entry_intro .flex .img_area {
    width: calc(100% - 2.5rem);
    max-width: none;
    margin-left: 0;
    margin-right: auto;
  }
  #entry_intro .flex .img_round {
    max-height: 20rem;
  }
  #entry_intro .flex .img_round::before {
    display: none;
  }
  #entry_intro .flex .img_round img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #entry_intro .flex .text_area {
    order: 1;
    width: calc(100% - 1.25rem);
    margin-top: -2.5rem;
    margin-left: 0;
    margin-right: auto;
    padding: var(--paddingLR);
  }
  #entry_intro .flex .text_area::before {
    width: 0.625rem;
    top: -0.625rem;
  }
  #entry_intro .flex .text_area:nth-child(1), #entry_intro .flex .text_area:nth-child(2) {
    padding-left: var(--paddingLR);
    margin-right: 0;
    padding-right: var(--paddingLR);
    margin-left: auto;
  }
  #entry_intro .flex .text_area:nth-child(1)::before, #entry_intro .flex .text_area:nth-child(2)::before {
    left: auto;
    right: 2.5rem;
    transform: rotate(90deg);
  }
  #entry_intro .flex .text_area .text {
    font-size: 0.875rem;
  }
  #entry_intro .flex .text_area .title_sub {
    font-size: 1rem;
  }
  #entry_intro .message_area .img_area {
    width: 100%;
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
  }
  #entry_intro .message_area .signature {
    text-align: right;
    margin-left: 0;
    margin-top: 0.5rem;
  }
  #entry_intro .message_area .signature .post {
    font-size: 0.875rem;
  }
  #entry_intro .message_area .signature .name {
    font-size: 1.25rem;
  }
  #entry_intro .message_area .text_area {
    width: 100%;
    margin-top: 1.5rem;
  }
  #entry_intro .message_area .text_area:nth-child(1), #entry_intro .message_area .text_area:nth-child(2) {
    padding: 0;
  }
  #entry_intro .aside {
    font-size: 0.875rem;
  }
  #entry_intro .anchor_area .btn_01 {
    max-width: 18.75rem;
    height: 3rem;
  }
  #entry_intro .anchor_area .btn_01 .icon {
    max-width: 2rem;
  }
}

#entry_contents .title_01 {
  text-align: left;
}
#entry_contents .title_01::after {
  left: 0;
  transform: none;
}
#entry_contents .text {
  font-size: 1.25rem;
}
#entry_contents .flow_area .list {
  display: flex;
  gap: 5px;
}
#entry_contents .flow_area .list > * {
  background-color: var(--color_sub);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem var(--paddingLR);
}
#entry_contents .flow_area .list > *:first-child {
  -webkit-clip-path: polygon(0 0, calc(100% - 2.5rem) 0, 100% 50%, calc(100% - 2.5rem) 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 2.5rem) 0, 100% 50%, calc(100% - 2.5rem) 100%, 0 100%);
  padding-right: 2.5rem;
}
#entry_contents .flow_area .list > *:not(:last-child):not(:first-child) {
  -webkit-clip-path: polygon(0 0, calc(100% - 2.5rem) 0, 100% 50%, calc(100% - 2.5rem) 100%, 0 100%, 2.5rem 50%);
          clip-path: polygon(0 0, calc(100% - 2.5rem) 0, 100% 50%, calc(100% - 2.5rem) 100%, 0 100%, 2.5rem 50%);
}
#entry_contents .flow_area .list > *:last-child {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 2.5rem 50%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 2.5rem 50%);
  padding-left: 2.5rem;
}
#entry_contents .flow_area .list > *:not(:last-child) {
  margin-right: -2.5rem;
}
#entry_contents .flow_area .list.col_04 > *:first-child {
  max-width: calc(25% + 1.25rem);
}
#entry_contents .flow_area .list.col_04 > *:last-child {
  max-width: calc(25% + 1.25rem);
}
#entry_contents .flow_area .list.col_05 > *:first-child {
  max-width: calc(20% + 1.25rem);
}
#entry_contents .flow_area .list.col_05 > *:last-child {
  max-width: calc(17.5% + 1.25rem);
}
#entry_contents .flow_area .list .title {
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.25em;
}
#entry_contents .flow_area .list .text {
  font-size: 1.25rem;
  line-height: 1.25;
  text-align: center;
}
#entry_contents .flex_img {
  display: flex;
  gap: 0.75rem;
}
#entry_contents .flex_img > * {
  width: calc((100% - 1.5rem) / 3);
}
#entry_contents .benefit_area .text {
  line-height: 1.5;
}
#entry_contents .benefit_area .text + .list_circle {
  margin-top: 1rem;
}
@media screen and (max-width: 979px) {
  #entry_contents .text {
    font-size: 0.875rem;
  }
  #entry_contents .flow_area .list {
    max-width: 15rem;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }
  #entry_contents .flow_area .list > * {
    width: 100%;
    flex: 0 1 auto;
    padding: 1.5rem var(--paddingLR) 1rem;
  }
  #entry_contents .flow_area .list > *:first-child {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1rem), 50% 100%, 0 calc(100% - 1rem));
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1rem), 50% 100%, 0 calc(100% - 1rem));
    padding-right: var(--paddingLR);
    padding-top: 0.75rem;
  }
  #entry_contents .flow_area .list > *:not(:last-child):not(:first-child) {
    -webkit-clip-path: polygon(0 0, 50% 1rem, 100% 0, 100% calc(100% - 1rem), 50% 100%, 0 calc(100% - 1rem));
            clip-path: polygon(0 0, 50% 1rem, 100% 0, 100% calc(100% - 1rem), 50% 100%, 0 calc(100% - 1rem));
  }
  #entry_contents .flow_area .list > *:last-child {
    -webkit-clip-path: polygon(0 0, 50% 1rem, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 50% 1rem, 100% 0, 100% 100%, 0 100%);
    padding-left: var(--paddingLR);
    padding-bottom: 0.75rem;
  }
  #entry_contents .flow_area .list > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: -1rem;
  }
  #entry_contents .flow_area .list.col_04 > *:first-child, #entry_contents .flow_area .list.col_05 > *:first-child {
    max-width: none;
  }
  #entry_contents .flow_area .list.col_04 > *:last-child, #entry_contents .flow_area .list.col_05 > *:last-child {
    max-width: none;
  }
  #entry_contents .flow_area .list .title {
    font-size: 1.125rem;
  }
  #entry_contents .flow_area .list .text {
    font-size: 0.875rem;
  }
  #entry_contents .flex_img > * {
    flex: 1;
  }
}

#entry_jobs .title_01 {
  text-align: left;
}
#entry_jobs .title_01::after {
  left: 0;
  transform: none;
}
#entry_jobs .layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
#entry_jobs .layout > * {
  width: calc((100% - 2.5rem) / 2);
}
#entry_jobs .layout .img_area {
  aspect-ratio: 53/28;
}
#entry_jobs .layout .img_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#entry_jobs .layout .layout_title .title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}
#entry_jobs .layout .layout_title::before {
  transform: translateY(-100%) rotate(90deg);
}
#entry_jobs .layout .layout_title::after {
  transform: translateY(-100%) rotate(-90deg);
}
#entry_jobs .layout a {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}
#entry_jobs .layout .layout_thumb {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#entry_jobs .layout .text_link {
  margin-top: auto;
}
@media screen and (max-width: 979px) {
  #entry_jobs .layout {
    gap: 1.5rem;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
  #entry_jobs .layout > * {
    width: 100%;
  }
  #entry_jobs .layout .layout_title .title {
    font-size: 0.875rem;
  }
}

/*==========
jobs
==========*/
#jobs .title_01 {
  text-align: left;
}
#jobs .title_01::after {
  left: 0;
  transform: none;
}

#jobs_intro .text_area {
  font-size: 1.25rem;
  line-height: 2;
}
#jobs_intro .img_flex {
  margin-top: calc(var(--paddingSection) * 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
#jobs_intro .img_flex > * {
  width: calc((100% - 2.5rem) / 2);
}
#jobs_intro .img {
  aspect-ratio: 53/34;
}
#jobs_intro .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 979px) {
  #jobs_intro .text_area {
    font-size: 0.875rem;
  }
  #jobs_intro .img_flex {
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
    gap: 1rem;
  }
  #jobs_intro .img_flex > * {
    width: calc((100% - 1rem) / 2);
  }
}

#jobs_schedule .bg {
  background-color: var(--color_sub);
  border-radius: var(--border_radius);
  padding: calc(var(--paddingSection) * 0.64) 2.5rem;
}
@media screen and (max-width: 979px) {
  #jobs_schedule .bg {
    padding: var(--paddingLR);
  }
}

.layout_schedule {
  display: flex;
  gap: 1.5rem 2.5rem;
}
.layout_schedule .img_area {
  max-width: 13.125rem;
}
.layout_schedule .img_area .img {
  aspect-ratio: 210/160;
}
.layout_schedule .img_area .img + .img {
  margin-top: 2.5rem;
}
.layout_schedule .img_area .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_schedule .list {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 1.25rem 0.75rem;
}
.layout_schedule .list dt {
  font-family: "Barlow";
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 500;
  padding-left: 2.5rem;
  position: relative;
}
.layout_schedule .list dt::before {
  content: "";
  width: 0.875rem;
  aspect-ratio: 1/1;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.325em;
  z-index: 2;
}
.layout_schedule .list dt::after {
  content: "";
  width: 2px;
  height: calc(100% + 1.25rem);
  background-color: #ACACAC;
  position: absolute;
  top: calc(0.325em + 0.4375rem);
  left: calc(0.4375rem - 1px);
  z-index: 1;
}
.layout_schedule .list dt:last-of-type::after {
  display: none;
}
.layout_schedule .list dd {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 979px) {
  .layout_schedule {
    flex-direction: column;
  }
  .layout_schedule .img_area {
    order: 1;
    max-width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    display: none;
  }
  .layout_schedule .img_area .img {
    width: calc((100% - 1rem) / 2);
  }
  .layout_schedule .img_area .img + .img {
    margin-top: 0;
  }
  .layout_schedule .list dt {
    padding-left: 1.5rem;
    font-size: 1.25rem;
  }
  .layout_schedule .list dt::before {
    content: "";
    width: 0.75rem;
    top: 0.25em;
  }
  .layout_schedule .list dt::after {
    top: calc(0.25em + 0.375rem);
    left: calc(0.375rem - 1px);
  }
  .layout_schedule .list dd {
    font-size: 0.875rem;
  }
}

#jobs_btn {
  padding-bottom: var(--paddingSection);
}

/*==========
privacypolicy
==========*/
#privacypolicy_contents .title {
  font-size: 1.375rem;
  font-weight: 500;
}
#privacypolicy_contents .title:not(:first-child) {
  margin-top: calc(var(--paddingSection) * 0.8);
}
#privacypolicy_contents .text {
  font-size: 1.25rem;
  letter-spacing: 0.032em;
  line-height: 2;
}
#privacypolicy_contents .text:not(:first-child) {
  margin-top: 1rem;
}
#privacypolicy_contents .signature {
  margin-top: calc(var(--paddingSection) * 0.8);
  text-align: right;
  font-size: 1.25rem;
}
@media screen and (max-width: 979px) {
  #privacypolicy_contents .title {
    font-size: 1.25rem;
  }
  #privacypolicy_contents .text {
    font-size: 0.875rem;
  }
  #privacypolicy_contents .text:not(:first-child) {
    margin-top: 0.5rem;
  }
  #privacypolicy_contents .signature {
    font-size: 1rem;
  }
}

/*==========
thanks
==========*/
#thanks .row_intro .title {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: calc(var(--paddingSection) * 0.64);
}
#thanks .row_intro .text {
  font-size: 1.25rem;
  text-align: center;
}
#thanks .row_intro .text + .text {
  margin-top: 2em;
}
#thanks .row_time {
  margin-top: calc(var(--paddingSection) * 0.64);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.25rem;
  gap: 1.25rem 2.5rem;
}
#thanks .row_time .item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
#thanks .row_time .label {
  font-size: 0.9em;
  border: 1px solid #000;
  border-radius: 8px;
  line-height: 1;
  padding: 0.5em 1em;
  flex-shrink: 0;
}
#thanks .row_mail {
  margin-top: calc(var(--paddingSection) * 0.64);
}
#thanks .row_mail a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
  text-decoration: none;
  font-family: "Barlow";
  font-size: 3.125rem;
  line-height: 1;
  font-weight: 200;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
#thanks .row_mail a::before {
  content: "";
  width: 0.625em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_mail.svg") no-repeat;
  display: block;
  margin-top: 0.125em;
}
#thanks .row_tell {
  margin-top: calc(var(--paddingSection) * 0.64);
}
#thanks .row_tell a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
  text-decoration: none;
  font-family: "Barlow";
  font-size: 3.125rem;
  line-height: 1;
  font-weight: 200;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
#thanks .row_tell a::before {
  content: "";
  width: 0.625em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_tell.svg") no-repeat;
  display: block;
  margin-top: 0.125em;
}
#thanks .row_tell .aside {
  margin-top: 1em;
  text-align: center;
  font-size: 1.25rem;
}
#thanks .row_btn {
  margin-top: calc(var(--paddingSection) * 1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
#thanks .row_btn .btn_02 {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media screen and (max-width: 979px) {
  #thanks .row_intro .title {
    font-size: 1.25rem;
  }
  #thanks .row_intro .text {
    font-size: 1rem;
  }
  #thanks .row_time {
    font-size: 1rem;
  }
  #thanks .row_time .item {
    width: 100%;
    max-width: 20rem;
  }
  #thanks .row_time .label {
    min-width: 6em;
    text-align: center;
  }
  #thanks .row_time .time {
    flex: 1;
  }
  #thanks .row_mail a {
    font-size: 1.75rem;
  }
  #thanks .row_tell a {
    font-size: 1.75rem;
  }
  #thanks .row_tell .aside {
    font-size: 0.875rem;
  }
}