@charset "UTF-8";
/* ====================
  基本スタイル & 共通レイアウト
==================== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #000;
  font-size: 62.5%;
  font-weight: 400;
  line-height: 1.6;
}

html {
  position: relative;
  scroll-behavior: smooth;
}
@media screen and (min-width: 769px) {
  html {
    scroll-padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
    scroll-padding-top: 56px;
  }
}

@media screen and (min-width: 769px) {
  body {
    min-width: 1440px;
    padding-top: 100px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  body {
    max-width: 100%;
    min-width: 100%;
    overflow: clip;
    padding-top: 56px;
    font-size: 14px;
  }
}

.color-red {
  color: red;
}
.color-primary {
  color: #10a2c4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.3;
}

p, span, div, li, dt, dd, a {
  font-weight: 400;
}

main {
  background-color: #fff !important;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.wrap {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .wrap {
    padding: 0 20px;
    max-width: 1440px;
  }
}
@media screen and (max-width: 768px) {
  .wrap {
    padding: 0 16px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
}

@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.7;
  }
}
.sup {
  font-size: 10px;
  line-height: 1;
  vertical-align: top;
  margin-left: 2px;
}

.display-none {
  display: none !important;
}

.txt-r {
  text-align: right;
}

.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

.line {
  border-bottom: 1px solid #dbdbdb;
}

@media screen and (min-width: 769px) {
  .main {
    padding: 25px 0;
  }
}
@media screen and (max-width: 768px) {
  .main {
    padding: 15px 0;
  }
}
.main-img img {
  width: 100%;
  height: auto;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  background: transparent;
  vertical-align: baseline;
  font-size: 100%;
}

img {
  vertical-align: bottom;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  vertical-align: baseline;
  font-size: 100%;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-weight: bold;
  font-style: italic;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* change border colour to suit your needs */
hr {
  display: block;
  margin: 1em 0;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
}

input, select, button {
  border: none;
  background: none;
  vertical-align: middle;
  -webkit-appearance: none;
}

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

ul,
ol,
dl {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
dt,
dd {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  main {
    margin-top: 60px;
  }
}

sup {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  vertical-align: text-top;
  margin-left: 2px;
  transform: translateY(5px);
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* ====================
  共通コンポーネント
==================== */
/* 全体的なflex-shrink設定 */
[class*=-item] {
  flex-shrink: 0;
}

[class*=-list-item] {
  flex-shrink: 0;
}

/* より具体的なセレクタ */
.product-category-list-item,
.pickup-list-item,
.campaign-list-item,
.contact_list-item {
  flex-shrink: 0;
}

.inner {
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  .inner {
    max-width: 1240px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding: 0 20px;
  }
}

.title_container, .catalog_header {
  max-width: 1200px;
  margin: 0 auto;
}
.title_container-sub {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  color: #d3992f;
  line-height: 1;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .title_container-sub {
    font-size: 20px;
  }
}
.title_container-main {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .title_container-main {
    font-size: 32px;
    padding-top: 12px;
    line-height: 1.4;
  }
}
.title_container-lead {
  font-size: 18px;
  margin-top: 40px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .title_container-lead {
    font-size: 16px;
    margin-top: 24px;
  }
}

.scroll-hint-icon-wrap {
  left: 0 !important;
}

.catalog_list .scroll-hint-icon-wrap {
  left: -30% !important;
}

@media screen and (max-width: 768px) {
  .footer_sp {
    padding-top: 0 !important;
  }
}

@media screen and (min-width: 769px) {
  .to-top {
    left: initial !important;
  }
}

.top-bg {
  width: 100%;
  height: 100%;
  background-image: url(../img/top-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hl {
  color: #376581;
  font-weight: 500;
}

.accent {
  color: #7B484F;
  font-weight: 500;
}

.section_head_title_line {
  display: flex;
  gap: 6px;
  margin-top: 64px;
  padding-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .section_head_title_line {
    margin-top: 32px;
    padding-bottom: 32px;
  }
}
.section_head_title_line_orange {
  width: 32px;
  height: 1px;
  background-color: #D3992F;
}
@media screen and (max-width: 768px) {
  .section_head_title_line_orange {
    width: 24px;
  }
}
.section_head_title_line_gray {
  background: #D3D3D3;
  width: 1034px;
  height: 1px;
}
@media screen and (max-width: 768px) {
  .section_head_title_line_gray {
    width: 680px;
  }
}

/* ====================
  フッター
==================== */
#gb_footer {
  max-width: 1440px !important;
  margin: 0 auto;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  #gb_footer {
    width: 100% !important;
    padding-top: 60px;
  }
  #gb_footer .to-top {
    bottom: 60px !important;
  }
}

@media screen and (max-width: 768px) {
  .footer_sp {
    z-index: 0 !important;
  }
  .footer_sp a {
    width: 100%;
  }
  #gb_footer {
    z-index: 0 !important;
  }
}
/* ====================
  ヘッダー
==================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 81px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .l-header {
    display: none;
  }
}
.l-header_nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.l-header_nav-title {
  font-size: 24px;
  color: #000;
}
.l-header_index-list {
  display: flex;
  gap: 16px;
  margin-left: 200px;
}
.l-header_index-list-item a {
  font-size: 16px;
  color: #9db2b9;
  padding: 8px 0;
  white-space: nowrap;
}
.l-header_index-list-item a:hover {
  color: #167cba;
}
.l-header_buttons {
  display: flex;
  gap: 16px;
  margin-left: auto;
}
.l-header_buttons .c-button {
  height: 64px;
  padding: 0 20px;
}

/* ====================
  サイドメニュー
==================== */
.p-side-index {
  position: fixed;
  top: 81px;
  left: 0;
  width: 281px;
  height: calc(100vh - 81px);
  background-color: #F9F9F9;
  padding: 40px 20px;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .p-side-index {
    display: none;
  }
}
.p-side-index_title {
  font-size: 24px;
  color: #000;
  padding-left: 20px;
}
.p-side-index_list {
  margin-top: 20px;
}
.p-side-index_list-item {
  padding: 10px 20px;
  border-left: 4px solid transparent;
}
.p-side-index_list-item a {
  display: block;
  font-size: 16px;
  color: #9db2b9;
}
.p-side-index_list-item.is-active {
  border-left: 4px solid #167cba;
}
.p-side-index_list-item.is-active a {
  color: #167cba;
}
.p-side-index_buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
}
.p-side-index_buttons .p-side-index_button {
  height: 64px;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 16px;
}
.p-side-index_buttons .p-side-index_button--orange {
  background-color: #d3992f;
  color: #fff;
}
.p-side-index_buttons .p-side-index_button--blue {
  background-color: #167cba;
  color: #fff;
}

/* ====================
  パンくずリスト
==================== */
.p-breadcrumb {
  padding: 120px 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb {
    padding: 20px;
    max-width: 100%;
  }
}
.p-breadcrumb_list {
  display: flex;
  gap: 4px;
}
.p-breadcrumb_list-item {
  font-size: 12px;
  color: #9db2b9;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb_list-item {
    font-size: 10px;
  }
}

.btn {
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box;
  border-radius: 4px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .btn {
    width: 440px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .btn {
    width: 335px;
    height: 64px;
  }
}
.btn.btn-blue {
  background-color: #167cba;
  color: #fff;
}
.btn.btn-blue:after {
  content: "";
  position: absolute;
  background: url(../img/btn-arrow_w.svg) no-repeat center center/contain;
  width: 12px;
  height: 10px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.btn.btn-blue a {
  color: #fff;
}
.btn-white {
  background-color: #fff;
  color: #167cba;
}
.btn-white:after {
  content: "";
  position: absolute;
  background: url(../img/btn-arrow_b.svg) no-repeat center center/contain;
  width: 12px;
  height: 10px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.btn-white a {
  color: #167cba;
}
.btn-orange {
  background-color: #d3992f;
  color: #fff;
}
.btn-orange:after {
  content: "";
  position: absolute;
  background: url(../img/btn-arrow_w.svg) no-repeat center center/contain;
  width: 12px;
  height: 10px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.btn-orange a {
  color: #fff;
}
.btn a {
  white-space: pre-wrap;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .btn a {
    font-size: 14px;
    line-height: 1.4;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  height: 64px;
  padding: 0 20px;
  min-width: 200px;
  white-space: nowrap;
}
.c-button--orange {
  background-color: #d3992f;
  color: #fff;
}
.c-button--blue {
  background-color: #167cba;
  color: #fff;
}
.c-button--white {
  background-color: #fff;
  color: #000;
}

.fixed-buttons-area {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .fixed-buttons-area {
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    align-content: space-between;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
}
.fixed-buttons-button {
  width: 320px;
  height: 80px;
  font-size: 16px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .fixed-buttons-button {
    width: 100%;
    height: 64px;
    border-radius: 0;
  }
}
.fixed-buttons-button--orange {
  background-color: #d3992f;
  color: #fff;
}
.fixed-buttons-button--blue {
  background-color: #167cba;
  color: #fff;
}

.side-index_buttons {
  position: fixed;
  top: 90px;
  right: 0;
  width: 64px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .side-index_buttons {
    top: initial;
    bottom: 0;
    left: 0;
    width: 100%;
    flex-direction: row;
    gap: 11px;
    justify-content: space-between;
  }
}
.side-index_buttons a {
  width: 100%;
  height: 295px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  padding: 20px 25px;
}
@media screen and (min-width: 769px) {
  .side-index_buttons a {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .side-index_buttons a {
    width: 48%;
    height: 48px;
    border-radius: 4px 4px 0 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding: 4px 0;
    line-height: 1.4;
  }
}
.side-index_buttons a.side-index_button--orange {
  background-color: #A07C3B;
}
.side-index_buttons a.side-index_button--blue {
  background-color: #fff;
  color: #A07C3B;
  border-top: 1px solid #A07C3B;
  border-left: 1px solid #A07C3B;
  border-bottom: 1px solid #A07C3B;
}

.lity {
  background: rgba(0, 0, 0, 0.7) !important;
}

.lity-container {
  padding-top: 50px;
}

.lity-close {
  position: absolute !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  background: url(../img/close.png) no-repeat center center/contain !important;
  border: none !important;
  cursor: pointer !important;
}
@media screen and (min-width: 769px) {
  .lity-close {
    width: 50px !important;
    height: 50px !important;
    right: 0 !important;
    top: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .lity-close {
    width: 30px !important;
    height: 30px !important;
  }
}

.return-top-btn {
  width: 320px;
  height: 64px;
  background: #fff;
  margin: 64px auto 0;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .return-top-btn {
    width: 245px;
    height: 48px;
    margin-top: 40px;
  }
}
.return-top-btn a {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .return-top-btn a {
    font-size: 14px;
  }
}
.return-top-btn.blue {
  color: #376581;
}
.return-top-btn.blue a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 10px;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow-left-blue.svg) no-repeat center center/contain;
}
.return-top-btn.red {
  color: #7B484F;
}
.return-top-btn.red a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 10px;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/arrow-left-red.svg) no-repeat center center/contain;
}

/* ====================
  パンくずリスト
==================== */
.breadcrumb {
  padding: 12px 0 0;
  margin-top: 81px;
  height: -moz-min-content;
  height: min-content;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 16px 20px;
  }
}
.breadcrumb_list {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .breadcrumb_list {
    padding: 0;
    flex-wrap: wrap;
  }
}
.breadcrumb_list-item {
  font-size: 14px;
  color: #000;
}
.breadcrumb_list-item a {
  color: #000;
  text-decoration: none;
}
.breadcrumb_list-item a:hover {
  text-decoration: underline;
}

.mainVisual {
  position: relative;
  padding-top: 93px;
}
@media screen and (max-width: 768px) {
  .mainVisual {
    padding: 0;
  }
}
.mainVisual-img {
  max-width: 920px;
  margin: 0 auto;
}
.mainVisual-img img {
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .mainVisual-img img {
    border-radius: 0;
  }
}

.FeatureOfMisawa {
  padding: 8px 0 160px;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa {
    padding: 24px 0 80px;
  }
}
.FeatureOfMisawa .wrap {
  max-width: 1240px;
}
.FeatureOfMisawa-head {
  display: flex;
  align-items: flex-end;
  gap: 80px;
}
@media screen and (max-width: 1000px) {
  .FeatureOfMisawa-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-head {
    gap: 16px;
  }
}
.FeatureOfMisawa-head-ttl {
  font-size: 80px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-head-ttl {
    font-size: 32px;
  }
}
.FeatureOfMisawa-head-lead {
  font-size: 18px;
  line-height: 2.4;
  padding-bottom: 24px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-head-lead {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.14em;
    padding: 0;
  }
}
.FeatureOfMisawa-head-menu {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  font-family: Outfit;
  text-align: center;
  margin: 80px auto 64px;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-head-menu {
    font-size: 24px;
    margin: 84px auto 48px;
  }
}
.FeatureOfMisawa-head-menu::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -64px;
  width: 64px;
  height: 1px;
  background: #A4A4A4;
}
.FeatureOfMisawa-head-menu::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -64px;
  transform: translateY(-50%);
  width: 64px;
  height: 1px;
  background: #A4A4A4;
}
.FeatureOfMisawa-contents {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents {
    flex-direction: column;
    gap: 68px;
  }
}
.FeatureOfMisawa-contents-block {
  width: 568px;
  border-radius: 4px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-block {
    width: 100%;
  }
}
.FeatureOfMisawa-contents-block:first-child {
  background: #245472;
}
.FeatureOfMisawa-contents-block:last-child {
  background: #703D44;
}
.FeatureOfMisawa-contents-block-inner {
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-block-inner {
    padding: 0 20px;
  }
}
.FeatureOfMisawa-contents-block-img {
  margin-top: -32px;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-block-img {
    margin-top: -20px;
  }
}
.FeatureOfMisawa-contents-block-img img {
  border-radius: 4px;
}
.FeatureOfMisawa-contents-block-link {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 12px;
}
.FeatureOfMisawa-contents-block-ttl {
  margin: 24px auto 0;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-block-ttl {
    margin: 20px auto 0;
    font-size: 24px;
    padding-bottom: 12px;
  }
}
.FeatureOfMisawa-contents-block-ttl.blue {
  border-bottom: 1px solid #5A86A1;
}
.FeatureOfMisawa-contents-block-ttl.red {
  border-bottom: 1px solid #A16C73;
}
.FeatureOfMisawa-contents-block-lead {
  position: relative;
  font-size: 18px;
  text-align: center;
  padding-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-block-lead {
    font-size: 16px;
    text-align: left;
    padding-bottom: 32px;
  }
}
.FeatureOfMisawa-contents-block-lead::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background: url(../img/arrow-down.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-block-lead::after {
    bottom: 18px;
  }
}
.FeatureOfMisawa-contents-list {
  padding: 32px 40px;
  border-radius: 0 0 4px 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-list {
    padding: 24px 20px;
  }
}
.FeatureOfMisawa-contents-list-item {
  background: #fff;
  border-radius: 4px;
  width: calc(50% - 4px);
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 1000px) {
  .FeatureOfMisawa-contents-list-item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-list-item {
    position: relative;
    align-items: flex-start;
  }
}
.FeatureOfMisawa-contents-list-item a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-list-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 12px;
  }
}
.FeatureOfMisawa-contents-list-item-number {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
  padding-top: 12px;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-list-item-number {
    padding-top: 0;
  }
}
.FeatureOfMisawa-contents-list-item-txt {
  font-weight: 500;
  line-height: 1;
  margin-top: 12px;
  margin-bottom: 38px;
}
@media screen and (min-width: 768px) {
  .FeatureOfMisawa-contents-list-item-txt {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-list-item-txt {
    font-size: 14px;
    margin: 4px 0 0;
    text-align: left;
  }
}
.FeatureOfMisawa-contents-list-item-txt::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: url(../img/arrow-down-bk.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-list-item-txt::after {
    bottom: initial;
    left: initial;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
  }
}
.FeatureOfMisawa-contents-list-item-txt-strong {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
  padding-bottom: 6px;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 768px) {
  .FeatureOfMisawa-contents-list-item-txt-strong {
    font-size: 16px;
    margin-top: 8px;
    padding-bottom: 6px;
  }
}
.FeatureOfMisawa-contents-list-item-txt-strong.blue {
  color: #376581;
  border-bottom: 1px solid #9FBAC6;
}
.FeatureOfMisawa-contents-list-item-txt-strong.red {
  color: #7B484F;
  border-bottom: 1px solid #BCACAE;
}
.FeatureOfMisawa-contents-list-item-icon {
  width: 12px;
  height: 6px;
}
.FeatureOfMisawa-contents-list.blue {
  background-color: #376581;
}
.FeatureOfMisawa-contents-list.blue .FeatureOfMisawa-contents-list-item-number {
  color: #376581;
}
.FeatureOfMisawa-contents-list.red {
  background-color: #7B484F;
}
.FeatureOfMisawa-contents-list.red .FeatureOfMisawa-contents-list-item-number {
  color: #7B484F;
}
.FeatureOfMisawa-contents-list.red .FeatureOfMisawa-contents-list-item:nth-child(3) {
  width: 100%;
}

.section-contents-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .section-contents-head-top {
    flex-direction: column;
  }
}
.section-contents-head-top-txt {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .section-contents-head-top-txt {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.section-contents-head-top-txt-num {
  position: relative;
  font-size: 48px;
  font-family: "Outfit";
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .section-contents-head-top-txt-num {
    font-size: 32px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .section-contents-head-top-txt-num::after {
    content: "";
    position: absolute;
    top: 8px;
    right: -20px;
    border-right: 1px solid #9E9E9E;
    width: 1px;
    height: 34px;
    transform: rotate(20deg);
  }
}
.section-contents-head-top-txt-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 18px;
}
@media screen and (max-width: 768px) {
  .section-contents-head-top-txt-title {
    font-size: 22px;
    padding-left: 0;
  }
}
.section-contents-head-top-txt-title .hl {
  font-size: 40px;
  font-weight: 500;
  padding: 0 8px;
}
@media screen and (max-width: 768px) {
  .section-contents-head-top-txt-title .hl {
    font-size: 24px;
    padding: 0;
  }
}
.section-contents-head-lead {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .section-contents-head-lead {
    font-size: 14px;
  }
}
.section-contents-head-toggle-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  transition: transform 0.3s;
  margin-left: 23px;
  transform: translateY(23px);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .section-contents-head-toggle-icon {
    position: absolute;
    bottom: 32px;
    left: 50%;
    right: auto;
    width: auto;
    height: auto;
    padding-right: 20px;
    transform: translateX(-50%);
    background-color: transparent;
    margin-left: 0;
  }
}
.section-contents-head-toggle-icon::before, .section-contents-head-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .section-contents-head-toggle-icon::before, .section-contents-head-toggle-icon::after {
    left: auto;
    right: 0;
    transform: translateY(-50%);
    background-color: #376581;
  }
}
.section-contents-head-toggle-icon::before {
  width: 24px;
  height: 2px;
}
@media screen and (max-width: 768px) {
  .section-contents-head-toggle-icon::before {
    width: 12px;
    height: 2px;
    right: -5%;
  }
}
.section-contents-head-toggle-icon::after {
  width: 2px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .section-contents-head-toggle-icon::after {
    width: 2px;
    height: 12px;
  }
}
.section-contents-head-toggle-icon-txt {
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-contents-head-toggle-icon-txt {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    text-decoration: underline;
    line-height: 1.4;
    color: #376581;
    white-space: nowrap;
  }
  .section-contents-head-toggle-icon-txt .section-contents-head-toggle-label--open {
    display: inline-block;
  }
  .section-contents-head-toggle-icon-txt .section-contents-head-toggle-label--close {
    display: none;
  }
}

.benefit-contents {
  background: #fff;
  color: #000;
  border-radius: 4px;
  padding: 64px;
  margin: 0 auto 48px;
}
@media screen and (max-width: 768px) {
  .benefit-contents {
    padding: 16px 20px 78px;
    margin: 0 auto 24px;
    position: relative;
  }
}
.benefit-contents#management03 {
  margin-bottom: 0;
}
.benefit-contents .benefit-contents-body {
  padding-top: 0;
}
.benefit-contents-body {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}
.benefit-contents.is-open .benefit-contents-body {
  padding-top: 0;
}
.benefit-contents.is-open .section-contents-head-toggle-icon::after {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .benefit-contents.is-open .section-contents-head-toggle-icon::before {
    opacity: 1;
  }
  .benefit-contents.is-open .section-contents-head-toggle-icon::after {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .benefit-contents.is-open .section-contents-head-toggle-icon-txt .section-contents-head-toggle-label--open {
    display: none;
  }
  .benefit-contents.is-open .section-contents-head-toggle-icon-txt .section-contents-head-toggle-label--close {
    display: inline-block;
  }
}
.benefit-contents:last-child {
  margin-bottom: 0;
}
.benefit-contents-detail {
  padding-bottom: 20px;
  line-height: 1.8;
  font-weight: 400;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .benefit-contents-detail {
    text-align: left;
    font-size: 14px;
    padding-bottom: 16px;
  }
}
.benefit-contents-header {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-header {
    margin-bottom: 64px;
  }
}
.benefit-contents-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-header-flex {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 32px;
    margin-bottom: 24px;
  }
}
.benefit-contents-header-flex-right {
  width: 480px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-header-flex-right {
    width: 100%;
  }
}
.benefit-contents-header-flex-right img {
  border-radius: 4px;
}
.benefit-contents-header-flex-title {
  font-size: 56px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  border-bottom: 1px solid #5A86A1;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-header-flex-title {
    font-size: 32px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.benefit-contents-header-flex-sub {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .benefit-contents-header-flex-sub {
    font-size: 24px;
    line-height: 1.6;
    text-align: left;
  }
}
.benefit-contents-header-text {
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .benefit-contents-header-text {
    font-size: 16px;
  }
}
.benefit-contents-row {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-row {
    flex-direction: column;
  }
}
.benefit-contents-row.value03-row, .benefit-contents-row.management01-row {
  gap: 64px;
}
.benefit-contents-row.value04-row {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .benefit-contents-row.value04-row {
    align-items: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .benefit-contents-row.value04-row {
    gap: 32px;
  }
}
.benefit-contents-row.value04-row02 {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-row.value04-row02 {
    margin-top: 64px;
  }
}
@media screen and (min-width: 768px) {
  .benefit-contents-row.management01-row > div {
    flex: 0 0 440px;
  }
}
@media screen and (min-width: 768px) {
  .benefit-contents-row.management02-row > ul {
    flex: 0 0 548px;
  }
  .benefit-contents-row.management02-row > div {
    flex: 0 0 460px;
  }
}
.benefit-contents-row-list {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-row-list {
    gap: 32px;
  }
}
.benefit-contents-row-list.management03 {
  gap: 64px;
}
.benefit-contents-row-list-item.sp {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.benefit-contents-row-list-item-ttl {
  display: inline;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.8;
  border-bottom: 1px solid #C5D6DD;
}
@media screen and (max-width: 768px) {
  .benefit-contents-row-list-item-ttl {
    font-size: 20px;
    line-height: 1.6;
  }
}
.benefit-contents-row-list-item-txt {
  line-height: 1.8;
  padding-top: 24px;
}
.benefit-contents-row-list-item-side.sp {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-row-list-item-side.sp img {
    display: block;
    margin: 0 auto;
  }
}
.benefit-contents-row-list-item-caption {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
.benefit-contents-row-side {
  flex: 0 0 370px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-row-side {
    flex: 0 0 100%;
  }
}
.benefit-contents-row-side.column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benefit-contents-row-side.value04-side {
  flex: 0 0 318px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-row-side.value04-side {
    flex: 0 0 100%;
  }
}
.benefit-contents-row-side img {
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-row-side img {
    display: block;
    margin: 0 auto;
  }
}
.benefit-contents-images {
  display: flex;
  gap: 16px;
  margin: 30px auto 80px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 13px;
    margin: 20px auto 64px;
  }
}
.benefit-contents-images figure img {
  border-radius: 4px;
}
.benefit-contents-images figcaption {
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .benefit-contents-images figcaption {
    line-height: 1.2;
  }
}
.benefit-contents-body {
  padding-top: 48px;
}
.benefit-contents-flex {
  display: flex;
  gap: 48px;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-flex {
    margin-top: 32px;
    flex-direction: column;
    gap: 24px;
  }
}
.benefit-contents-flex.value04-images {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .benefit-contents-flex.value04-images {
    justify-content: space-between;
  }
  .benefit-contents-flex.value04-images > div {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 768px) {
  .benefit-contents-flex.value04-images {
    margin-top: 32px;
    gap: 12px;
  }
}
.benefit-contents-flex.management-images {
  margin-top: 0;
  padding: 24px 24px 32px;
  border: 1px solid #D3D3D3;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .benefit-contents-flex.management-images {
    padding: 20px 16px;
    gap: 48px;
  }
}
@media screen and (min-width: 768px) {
  .benefit-contents-flex.management-images::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 1px;
    height: 566px;
    background: #D3D3D3;
    transform: translate(-50%, -50%);
  }
}
.benefit-contents-flex-img {
  width: 480px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-flex-img {
    width: 100%;
  }
}
.benefit-contents-flex-img img {
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-flex-img img {
    display: block;
    margin: 0 auto;
  }
}
.benefit-contents-flex-img-ttl {
  position: relative;
  margin-bottom: 33px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  padding-left: 14px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-flex-img-ttl {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
  }
}
.benefit-contents-flex-img-ttl::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 2px;
  height: 20px;
  background: #376581;
}
@media screen and (max-width: 768px) {
  .benefit-contents-flex-img-ttl::before {
    height: 100%;
  }
}
.benefit-contents-flex-img-caption-ttl {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 16px;
}
@media screen and (min-width: 768px) {
  .benefit-contents-flex-img-caption-ttl {
    min-height: 96px;
  }
}
@media screen and (max-width: 768px) {
  .benefit-contents-flex-img-caption-ttl {
    font-size: 16px;
    margin: 20px 0 12px;
  }
}
@media screen and (max-width: 768px) {
  .benefit-contents-flex-img-caption-txt {
    font-size: 14px;
  }
}
.benefit-contents-flex-img-caption-txt-small {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-flex-img-caption-txt-small {
    margin-top: 12px;
  }
}
.benefit-contents-support {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-support {
    flex-direction: column;
    gap: 32px;
  }
}
.benefit-contents-support-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-support-left {
    gap: 16px;
  }
}
.benefit-contents-support-left-top {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .benefit-contents-support-left-top {
    align-items: center;
  }
}
.benefit-contents-support-left-top-img {
  flex: 0 0 116px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-support-left-top-img {
    flex: 0 0 107px;
  }
}
.benefit-contents-support-left-top-txt {
  line-height: 1.4;
  flex: 1;
}
.benefit-contents-support-left-top-txt-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-support-left-top-txt-title {
    margin-bottom: 0;
  }
}
.benefit-contents-support-left-top-txt-txt {
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .benefit-contents-support-left-bottom {
    margin-top: 8px;
  }
}
.benefit-contents-support-left-bottom-ttl {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
}
.benefit-contents-support-left-bottom-txt {
  font-size: 14px;
  line-height: 1.4;
}
.benefit-contents-support-right {
  flex: 0 0 578px;
}
.benefit-contents-support-right-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-support-right-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4px;
  }
}
.benefit-contents-support-right-list-item {
  padding: 8px 8px 16px;
  border-radius: 4px;
}
.benefit-contents-support-right-list-item-ttl {
  line-height: 1;
  font-weight: 700;
  border-radius: 4px;
  color: #fff;
  padding: 8px 0;
  text-align: center;
  margin-bottom: 12px;
}
.benefit-contents-support-right-list-item-img {
  flex: 0 0 56px;
}
.benefit-contents-support-right-list-item-inner {
  display: flex;
  justify-content: space-between;
  padding: 0 24px 0 12px;
}
.benefit-contents-support-right-list-item-inner-list-item {
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  padding-bottom: 4px;
  padding-left: 12px;
}
.benefit-contents-support-right-list-item-inner-list-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.benefit-contents-support-right-list-item:nth-child(1) {
  background: #F0F5F3;
}
.benefit-contents-support-right-list-item:nth-child(1) .benefit-contents-support-right-list-item-ttl {
  background: #356E57;
}
.benefit-contents-support-right-list-item:nth-child(1) .benefit-contents-support-right-list-item-inner-list-item::before {
  background: #317358;
}
.benefit-contents-support-right-list-item:nth-child(2) {
  position: relative;
  background: #EAF1F5;
}
.benefit-contents-support-right-list-item:nth-child(2) .benefit-contents-support-right-list-item-ttl {
  background: #376581;
}
.benefit-contents-support-right-list-item:nth-child(2) .benefit-contents-support-right-list-item-inner-list-item::before {
  background: #376581;
}
.benefit-contents-support-right-list-item:nth-child(2) .benefit-contents-support-right-list-item-img {
  position: absolute;
  right: 16px;
  width: 69px;
}
.benefit-contents-support-right-list-item:nth-child(3) {
  background: #F8F4EC;
}
@media screen and (max-width: 768px) {
  .benefit-contents-support-right-list-item:nth-child(3) {
    padding-bottom: 35px;
  }
}
.benefit-contents-support-right-list-item:nth-child(3) .benefit-contents-support-right-list-item-ttl {
  background: #A07C3B;
}
.benefit-contents-support-right-list-item:nth-child(3) .benefit-contents-support-right-list-item-inner-list-item::before {
  background: #A07C3B;
}
.benefit-contents-support-right-list-item:nth-child(4) {
  background: #F6F1F1;
}
.benefit-contents-support-right-list-item:nth-child(4) .benefit-contents-support-right-list-item-ttl {
  background: #7B484F;
}
.benefit-contents-support-right-list-item:nth-child(4) .benefit-contents-support-right-list-item-inner-list-item::before {
  background: #7B484F;
}
.benefit-contents-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .benefit-contents-logo::before {
    content: "";
    flex: 1;
    height: 1px;
    background: #D3D3D3;
  }
  .benefit-contents-logo::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #D3D3D3;
  }
}
.benefit-contents-logo-txt {
  position: relative;
  color: #376581;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 0 12px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 32px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-logo-txt {
    font-size: 14px;
    padding: 0 8px;
  }
}
.benefit-contents-logo-txt::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -9px;
  width: 12px;
  height: 30px;
  background: url(../img/leaf01.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .benefit-contents-logo-txt::before {
    width: 8px;
    height: 20px;
    top: -2px;
    left: -7px;
  }
}
.benefit-contents-logo-txt::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -9px;
  width: 12px;
  height: 30px;
  background: url(../img/leaf02.png) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .benefit-contents-logo-txt::after {
    width: 8px;
    height: 20px;
    top: -2px;
    right: -7px;
  }
}
.benefit-contents-box {
  border: 1px solid #D3D3D3;
  border-radius: 4px;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-box {
    padding: 20px 16px;
  }
}
.benefit-contents-box-row {
  display: flex;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-box-row {
    flex-direction: column;
  }
}
.benefit-contents-box-text-head {
  background: #F9F9F9;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
@media screen and (max-width: 768px) {
  .benefit-contents-box-text-head {
    padding: 16px 12px;
  }
}
.benefit-contents-box-text-head-small {
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .benefit-contents-box-text-head-small {
    font-size: 16px;
    line-height: 1.4;
  }
}
.benefit-contents-box-text-head-main {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-end;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .benefit-contents-box-text-head-main {
    flex-direction: column;
    align-items: flex-start;
    font-size: 20px;
    gap: 12px;
  }
}
.benefit-contents-box-text-head-main a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding-right: 32px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .benefit-contents-box-text-head-main a {
    margin: 0 0 0 auto;
  }
}
.benefit-contents-box-text-head-main a::after {
  content: "";
  vertical-align: middle;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/box-arrow_b.svg) 0% 0%/contain no-repeat;
}
.benefit-contents-box-text-lead {
  line-height: 1.8;
  padding-top: 26px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-box-text-lead {
    padding-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .benefit-contents-box-img {
    flex: 0 0 320px;
  }
}
.benefit-contents-box-img img {
  border-radius: 4px;
}
.benefit-contents-box-img.img2 {
  padding: 32px 0 0;
}
@media screen and (max-width: 768px) {
  .benefit-contents-box-img.img2 {
    padding: 48px 0 0;
  }
}
.benefit-contents-box-img.img2 img {
  padding: 0 32px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-box-img.img2 img {
    padding: 0 0 16px;
    display: block;
    margin: 0 auto;
  }
}
.benefit-contents-img-caption {
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.benefit-contents-img-caption.small {
  font-size: 12px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-img-caption.small {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .benefit-contents-graph-img {
    height: 496px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 31px 0;
  }
  .benefit-contents-graph-img img {
    display: block;
    max-width: none;
    height: 100%;
  }
}
.benefit-contents-graph-caption-list {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .benefit-contents-graph-caption-list {
    margin-top: 16px;
  }
}
.benefit-contents-graph-caption-list-item {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-indent: -1em;
  padding-left: 1em;
}
.benefit-contents-graph-caption-list-item.indent-none {
  text-indent: 0;
  padding-left: 0;
}

.Value {
  background: #376581;
  padding: 120px 0 160px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .Value {
    padding: 54px 0 80px;
  }
}
.Value .section-contents-head-top-txt-num {
  color: #376581;
}
.Value .section-contents-head-toggle-icon {
  background-color: #376581;
}
@media screen and (max-width: 768px) {
  .Value .section-contents-head-toggle-icon {
    background-color: #fff;
  }
}
.Value .caption {
  font-size: 14px;
  margin-top: 16px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .Value .caption {
    line-height: 1.4;
  }
}
.Value-links {
  display: flex;
  justify-content: center;
  gap: 120px;
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .Value-links {
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
  }
}
.Value-links a {
  display: inline;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  position: relative;
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .Value-links a {
    font-size: 14px;
    text-decoration: underline;
    border: none;
    padding-right: 30px;
  }
}
.Value-links a::after {
  content: "";
  vertical-align: middle;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
  background: url(../img/box-arrow_w.svg) 0% 0%/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .Value-links a::after {
    right: 0;
  }
}

.Management {
  background: #7b484f;
  padding: 120px 0 160px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .Management {
    padding: 64px 0 80px;
  }
}
.Management .benefit-contents-header-flex-title {
  border-bottom: 1px solid #A16C73;
}
@media screen and (max-width: 768px) {
  .Management #management01 .benefit-contents-list-item:nth-child(2) {
    margin-top: 32px;
  }
  .Management .management02-row01 {
    gap: 32px !important;
  }
}
.Management .section-contents-head-toggle-icon {
  background-color: #7B484F;
}
@media screen and (max-width: 768px) {
  .Management .section-contents-head-toggle-icon {
    background-color: #fff;
  }
}
.Management .section-contents-head-top-txt-num {
  color: #7B484F;
}
@media screen and (max-width: 768px) {
  .Management .section-contents-head-toggle-icon {
    background: #fff;
  }
  .Management .section-contents-head-toggle-icon::before {
    background-color: #7B484F;
  }
  .Management .section-contents-head-toggle-icon::after {
    background-color: #7B484F;
  }
}
@media screen and (max-width: 768px) {
  .Management .section-contents-head-toggle-icon-txt {
    color: #7B484F;
  }
}
.Management .section-contents-head-toggle-icon-txt::before {
  color: #7B484F;
}
.Management .section-contents-head-toggle-icon-txt::after {
  color: #7B484F;
}
.Management #management02 .benefit-contents-row:last-child {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .Management #management02 .benefit-contents-row:last-child {
    margin-top: 64px;
  }
}

/* ====================
  セクション9：カタログ
==================== */
.catalog {
  width: 100%;
  margin: 0 auto;
  color: #fff;
  position: relative;
  background: url(../img/catalog_bg.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .catalog {
    width: 100%;
  }
}
.catalog_inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 20px 160px;
}
@media screen and (max-width: 768px) {
  .catalog_inner {
    padding: 64px 20px 80px;
  }
}
.catalog_header {
  color: #fff;
  min-width: 100%;
}
.catalog_header-subtitle {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .catalog_header-subtitle {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.catalog_header-title {
  color: #fff;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .catalog_header-title {
    font-size: 32px;
    line-height: 1.4;
    text-indent: 0;
  }
}
.catalog_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 80px 0;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .catalog_list {
    gap: 32px;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 64px 0;
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 4px;
  }
}
.catalog_list-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .catalog_list-item {
    justify-content: flex-start;
  }
}
.catalog_list-item-image-box {
  background-color: #fff;
  height: 380px;
  border-radius: 4px;
  padding: 64px 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .catalog_list-item-image-box {
    padding: 16px;
    width: 240px;
    height: 240px;
  }
}
.catalog_list-item-image-box-inner {
  width: 178px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .catalog_list-item-image-box-inner {
    width: 120px;
  }
}
.catalog_list-item-text-box {
  display: grid;
  grid-template-rows: 1fr auto;
}
@media screen and (max-width: 768px) {
  .catalog_list-item-text-box {
    width: 100%;
  }
}
.catalog_list-item-title {
  font-size: 18px;
  margin: 16px 0 24px;
  flex: 1;
  display: flex;
  align-items: flex-start;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .catalog_list-item-title {
    font-size: 16px;
    text-align: left;
    letter-spacing: 0.04em;
    word-break: break-all;
  }
}
.catalog_list-item-button {
  display: block;
  color: #fff;
  border-radius: 8px;
  margin-top: 27px;
  text-align: right;
  position: relative;
  padding-right: 48px;
  flex-shrink: 0;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .catalog_list-item-button {
    font-size: 14px;
  }
}
.catalog_list-item-button::after {
  content: "";
  background: url(../img/box-arrow_w.svg) no-repeat;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .catalog_list-item-button::after {
    width: 24px;
    height: 24px;
    background-size: contain;
    top: 46%;
  }
}

.product_head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .product_head {
    padding: 0;
    margin-bottom: 20px;
  }
}
.product_category:first-child {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .product_category:first-child {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .product_category {
    margin-bottom: 0;
  }
}
.product_category_title {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 24px;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .product_category_title {
    margin-bottom: 20px;
  }
}
.product_category_title_image {
  width: 190px;
}
@media screen and (max-width: 768px) {
  .product_category_title_image {
    width: 124px;
  }
}
.product_category_title_image.cross {
  width: 186px;
}
@media screen and (max-width: 768px) {
  .product_category_title_image.cross {
    width: 140px;
  }
}
.product_category_title_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_other_link {
  width: 100%;
  text-align: right;
  margin-top: 16px;
}
.product_other_link a {
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: flex-end;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #167cba;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .product_other_link a {
    font-size: 14px;
    text-align: left;
    align-items: center;
  }
}
.product_other_link .product_list_item_arrow {
  margin-right: 0;
}

.pickup {
  padding: 120px 0 160px;
  background-color: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .pickup {
    padding: 64px 0 80px;
  }
}
.pickup-lead {
  font-size: 24px;
  color: #D3992F;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .pickup-lead {
    font-size: 20px;
  }
}
.pickup-title {
  margin-top: 16px;
  font-size: 64px;
}
@media screen and (max-width: 768px) {
  .pickup-title {
    font-size: 32px;
    margin-top: 12px;
  }
}
.pickup-list {
  display: flex;
  flex-wrap: wrap;
  gap: 64px 30px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .pickup-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 30px;
    margin-top: 48px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .pickup-list::-webkit-scrollbar {
    display: none;
  }
}
.pickup-list-item {
  width: calc(33.333% - 20px);
}
@media screen and (max-width: 768px) {
  .pickup-list-item {
    width: 240px;
    padding-bottom: 25px;
  }
}
.pickup-list-item-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.pickup-list-item-image img {
  border-radius: 4px;
}
.pickup-list-item-title {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pickup-list-item-title {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 20px;
  }
}
.pickup-list-item-title::after {
  content: "";
  background: url(../img/box-arrow_b.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .pickup-list-item-title::after {
    width: 20px;
    height: 20px;
    right: -32px;
  }
}
.pickup-list-item-text {
  margin-top: 22px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .pickup-list-item-text {
    margin-top: 12px;
  }
}
.pickup-pagination {
  display: none;
}
@media screen and (max-width: 768px) {
  .pickup-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
  }
}
.pickup-pagination-prev, .pickup-pagination-next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s;
}
.pickup-pagination-prev:hover:not(:disabled), .pickup-pagination-next:hover:not(:disabled) {
  opacity: 0.7;
}
.pickup-pagination-prev:disabled, .pickup-pagination-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pickup-pagination-prev img, .pickup-pagination-next img {
  display: block;
}
.pickup-pagination-info {
  display: flex;
  align-items: center;
  gap: 0;
}
.pickup-pagination-current {
  color: #167CBA;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
}
.pickup-pagination-separator {
  color: #000;
  font-size: 20px;
  padding: 0 8px;
  display: flex;
}
.pickup-pagination-total {
  color: #000;
  font-weight: 300;
  font-size: 18px;
  font-family: "Outfit", sans-serif;
  line-height: 1;
}
.pickup.other-pickup {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .pickup.other-pickup {
    padding-bottom: 80px;
  }
}
.pickup.other-pickup .product_category_title {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .pickup.other-pickup .pickup-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 48px;
  }
}
@media screen and (max-width: 768px) {
  .pickup.other-pickup .pickup-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 30px;
  }
}
.pickup.other-pickup .pickup-list-item {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .pickup.other-pickup .pickup-list-item {
    width: 240px;
  }
}

/* ====================
  セクション10：バナー
==================== */
.contact {
  margin: 0 auto;
  padding: 120px 0 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .contact {
    width: 100%;
    padding: 40px 20px 64px;
  }
}
.contact_inner {
  max-width: 1240px;
  padding: 0 20px 120px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact_inner {
    padding: 0;
  }
}
.contact_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .contact_list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.contact_list-item {
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .contact_list-item {
    width: 100%;
    padding: 0;
  }
}
.contact_list-item-image-area {
  height: 292px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .contact_list-item-image-area {
    height: 168px;
  }
}
.contact_list-item-image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px 4px 0 0;
}
.contact_list-item-text-area {
  padding: 24px 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
@media screen and (max-width: 768px) {
  .contact_list-item-text-area {
    padding: 20px 20px 24px;
    min-height: auto;
  }
}
.contact_list-item-text-area--blue {
  background-image: linear-gradient(to right, #167CBA, #3BA7E9);
  border-radius: 0 0 4px 4px;
}
.contact_list-item-text-area--orange {
  background-image: linear-gradient(to right, #D3992F, #DCB774);
  border-radius: 0 0 4px 4px;
}
.contact_list-item-title {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  word-break: auto-phrase;
}
@media screen and (max-width: 768px) {
  .contact_list-item-title {
    font-size: 18px;
  }
}
.contact_list-item-title::after {
  content: "";
  background: url(../img/box-arrow_w.svg) no-repeat;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .contact_list-item-title::after {
    width: 24px;
    height: 24px;
    background-size: 100%;
  }
}
.contact_list-item-description {
  margin-top: 20px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .contact_list-item-description {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */