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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

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

@font-face {
  font-family: 'Noto Sans JP';
  src: url("../font/NotoSansJP-VariableFont_wght.ttf");
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "MS P Gothic", "ＭＳ Ｐゴシック", arial, helvetica, sans-serif;
  color: #000;
  line-height: 1.4;
  font-weight: 500;
  font-size: 15px;
  font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

a {
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

button {
  transition: all 0.3s;
}
button:hover {
  text-decoration: none;
  opacity: 0.7;
}

strong {
  font-weight: bold;
}

span {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  vertical-align: bottom;
}

table th, table td {
  vertical-align: top;
}

.mhauto {
  margin: 0 auto;
}

.block {
  display: block !important;
}

.inline {
  display: inline-block !important;
}

.tac {
  text-align: center;
}

.f_txt {
  font-size: 19px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .f_txt {
    font-size: 3.81679vw;
  }
}

li {
  list-style: none !important;
}

/*
 レイアウト
 ----------------------------*/
html {
  position: relative;
}

main.site-main {
  margin-top: 85px;
  margin-bottom: 100px;
}

.container {
  max-width: 1520px;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

html {
  margin-top: 0 !important;
}

/*
 header
 ----------------------------*/
.site-header {
  width: 100%;
  background: #2C7744;
  padding: 15px 20px;
  position: fixed;
  top: 0;
  z-index: 100;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .site-header {
    padding: 15px 3.20513vw;
  }
}
.site-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .header-content nav {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .site-header .header-content nav {
    display: none;
  }
}
.site-header .header-content nav li a {
  color: #fff;
  font-size: 18px;
  line-height: 180%;
  font-weight: 700;
}
.site-header .header-content .header-actions {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .site-header .header-content .header-actions .catalog {
    display: none;
  }
}
.site-header .header-content .header-actions .catalog a {
  font-size: 14px;
  background: #fff;
  color: #2C7744;
  border-radius: 40px;
  padding: 15px;
  font-weight: 700;
}
.site-header .header-content .header-actions .cart .quote-cart-link {
  position: relative;
  display: block;
}
.site-header .header-content .header-actions .cart .quote-cart-link .quote-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/*
 humberger
 ----------------------------*/
.humberger {
  width: 25px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.humberger .button {
  width: 100%;
  height: 100%;
}
.humberger .button span {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background: #fff;
  transition: all 0.5s;
}
.humberger .button span:nth-child(1) {
  top: 0;
}
.humberger .button span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.humberger .button span:nth-child(3) {
  bottom: 0;
}
.humberger .button.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.humberger .button.active span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.humberger .button.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.humberger .menu {
  width: 100%;
  position: fixed;
  top: 85px;
  left: 0;
  height: calc(100vh - 85px);
  background: #2C7744;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
  pointer-events: none;
}
.humberger .menu.active {
  opacity: 1;
  z-index: 200;
  pointer-events: auto;
}
.humberger .menu .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.humberger .menu .wrap .list {
  text-align: center;
}
.humberger .menu .wrap .list li {
  margin-bottom: 40px;
}
.humberger .menu .wrap .list li a {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.humberger .menu .wrap .sp_catalog a {
  display: block;
  background: #fff;
  text-align: center;
  padding: 15px 30px;
  border-radius: 4.80769vw;
  color: #2C7744;
  font-size: 18px;
  font-weight: 700;
}

/*
 footer
 ----------------------------*/
footer {
  text-align: center;
  padding: 5rem 5%;
  background: #2C7744;
}
footer p {
  color: #fff;
  font-size: 16px;
}
footer p.bold {
  font-size: 18px;
  font-weight: 700;
}

/*
 section
 ----------------------------*/
/*
 conponents
 ----------------------------*/
.section-title {
  font-size: 26px;
  color: #2C7744;
  text-align: center;
  font-weight: 700;
}
.section-title::after {
  display: block;
  content: "";
  width: 80px;
  height: 4px;
  background: #2C7744;
  margin: 10px auto 40px;
}

.more {
  display: block;
  color: #2C7744;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.more::after {
  content: "";
  background: url(../img/more_btn.svg) no-repeat;
  width: 20px;
  height: 17px;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.just-right {
  justify-content: right;
}

.front-page-hero figure img {
  width: 100%;
}

.front-page-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 0;
  box-sizing: border-box;
  gap: 60px;
}
@media screen and (max-width: 1100px) {
  .front-page-container {
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .front-page-container {
    padding: 60px 20px;
  }
}
.front-page-container .front-page-sidebar {
  width: 100%;
  max-width: 214px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .front-page-container .front-page-sidebar {
    display: none;
  }
}
.front-page-container .front-page-sidebar .wrap {
  position: sticky;
  top: 105px;
}
.front-page-container .front-page-sidebar .wrap .sidebar-section:last-child {
  margin-top: 12px;
}
.front-page-container .front-page-sidebar .wrap .sidebar-section h3 {
  font-size: 18px;
  font-weight: 700;
  border: 1px solid #D9D9D9;
  border-left: 4px solid #2C7744;
  color: #2C7744;
  padding: 11px;
}
.front-page-container .front-page-sidebar .wrap .sidebar-section h3 a {
  color: #2C7744;
}
.front-page-container .front-page-sidebar .wrap .sidebar-section .category-list ul li a {
  display: block;
  padding: 13px 0;
  color: #2C7744;
  font-weight: 700;
  font-size: 14px;
}
.front-page-container .front-page-sidebar .wrap .sidebar-section .category-list ul li:not(:last-child) {
  border-bottom: 1px solid #D9D9D9;
}
.front-page-container .front-page-sidebar .wrap .sidebar-section .popular-products ul {
  margin-top: 12px;
}
.front-page-container .front-page-sidebar .wrap .sidebar-section .popular-products ul li {
  border: 1px solid #D9D9D9;
}
.front-page-container .front-page-sidebar .wrap .sidebar-section .popular-products ul li a {
  display: flex;
  align-items: center;
}
.front-page-container .front-page-sidebar .wrap .sidebar-section .popular-products ul li a .product-thumbnail img {
  width: 76px;
  height: 76px;
  object-fit: cover;
}
.front-page-container .front-page-sidebar .wrap .sidebar-section .popular-products ul li a .product-info {
  flex: 1;
}
.front-page-container .front-page-sidebar .wrap .sidebar-section .popular-products ul li a .product-info h4 {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding-left: 10px;
  padding-right: 5px;
}
.front-page-container .front-page-main {
  width: 100%;
  box-sizing: border-box;
}
.front-page-container .front-page-main .discription {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 200%;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .front-page-container .front-page-main .discription {
    font-size: 3.20513vw;
  }
}

.section-category {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .section-category {
    flex-wrap: wrap;
  }
}
.section-category a {
  display: block;
  width: calc(100% / 3 - 10px * 2/3);
  position: relative;
}
@media screen and (max-width: 900px) {
  .section-category a {
    width: calc(100% / 2 - 10px * 1/2);
  }
}
.section-category a img {
  width: 100%;
}
.section-category a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .section-category a span {
    font-size: 3.36538vw;
  }
}

.section-latest-products {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .section-latest-products {
    margin-bottom: 60px;
  }
}
.section-latest-products .products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 10px;
  margin-bottom: 25px;
}
.section-latest-products .products-grid .product-item {
  box-sizing: border-box;
  width: calc(100% / 3 - 10px * 2/3);
  border: 1px solid #D9D9D9;
  background: #2C7744;
}
@media screen and (max-width: 900px) {
  .section-latest-products .products-grid .product-item {
    width: calc(100% / 2 - 10px * 1/2);
  }
}
.section-latest-products .products-grid .product-item .product-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media screen and (max-width: 900px) {
  .section-latest-products .products-grid .product-item .product-image img {
    height: 45.67308vw;
  }
}
.section-latest-products .products-grid .product-item .product-details {
  background: #2C7744;
  padding: 25px 10px;
  text-align: center;
}
.section-latest-products .products-grid .product-item .product-details .product-number {
  background: #000;
  width: 80px;
  padding: 4px 0;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  border-radius: 10px;
  text-align: center;
  margin: 0 auto 12px;
}
.section-latest-products .products-grid .product-item .product-details h3 {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}
.section-latest-products .products-grid .product-item .product-details .price {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.section-ranking .bestseller-list {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .section-ranking .bestseller-list {
    flex-direction: column;
  }
}
.section-ranking .bestseller-list .bestseller-item {
  position: relative;
  width: calc(100% / 5 - 10px * 4/5);
  background: #2C7744;
}
@media screen and (max-width: 900px) {
  .section-ranking .bestseller-list .bestseller-item {
    width: 100%;
  }
}
.section-ranking .bestseller-list .bestseller-item .rank-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #CBD722;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  font-size: 22px;
}
@media screen and (max-width: 900px) {
  .section-ranking .bestseller-list .bestseller-item a {
    display: flex;
    gap: 10px;
    align-items: center;
  }
}
.section-ranking .bestseller-list .bestseller-item a .product-image {
  height: 170px;
}
@media screen and (max-width: 900px) {
  .section-ranking .bestseller-list .bestseller-item a .product-image {
    width: 50%;
  }
}
.section-ranking .bestseller-list .bestseller-item a .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-ranking .bestseller-list .bestseller-item a .product-info {
  background: #2C7744;
  padding: 20px 10px;
}
@media screen and (max-width: 900px) {
  .section-ranking .bestseller-list .bestseller-item a .product-info {
    flex: 1;
  }
}
.section-ranking .bestseller-list .bestseller-item a .product-info .product-title {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .section-ranking .bestseller-list .bestseller-item a .product-info .product-title {
    font-size: 15px;
    text-align: left;
  }
}

.section-faq .faq-list .faq-item {
  padding: 24px 0;
}
.section-faq .faq-list .faq-item:not(:last-child) {
  border-bottom: 1px solid #D9D9D9;
}
.section-faq .faq-list .faq-item .faq-question {
  color: #2C7744;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}
.section-faq .faq-list .faq-item .faq-answer {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.single-product-container {
  padding: 100px 0;
}
.single-product-container .product-wrap {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .single-product-container .product-wrap {
    flex-direction: column;
  }
}
.single-product-container .product-wrap .product-images .product-main-image {
  margin-bottom: 20px;
}
.single-product-container .product-wrap .product-images .product-main-image img {
  min-width: 640px;
  min-height: 640px;
  width: 640px;
  height: 640px;
  object-fit: cover;
  border: 1px solid #000;
}
@media screen and (max-width: 900px) {
  .single-product-container .product-wrap .product-images .product-main-image img {
    width: 100%;
    height: 93.91026vw;
    min-width: auto;
    min-height: auto;
  }
}
.single-product-container .product-wrap .product-images .product-gallery {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 900px) {
  .single-product-container .product-wrap .product-images .product-gallery .gallery-image {
    width: calc(100% / 3 - 10px * 2/3);
  }
}
.single-product-container .product-wrap .product-images .product-gallery .gallery-image img {
  border: 1px solid #000;
}
@media screen and (max-width: 900px) {
  .single-product-container .product-wrap .product-images .product-gallery .gallery-image img {
    width: 100%;
  }
}
.single-product-container .product-wrap .product-summary {
  padding-top: 40px;
}
@media screen and (max-width: 900px) {
  .single-product-container .product-wrap .product-summary {
    padding-top: 0;
  }
}
.single-product-container .product-wrap .product-summary .product-number {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: block;
  padding: 10px;
  width: 120px;
  background: #000;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .single-product-container .product-wrap .product-summary .product-number {
    width: 120px;
    border-radius: 30px;
  }
}
.single-product-container .product-wrap .product-summary .product-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .single-product-container .product-wrap .product-summary .product-title {
    font-size: 30px;
  }
}
.single-product-container .product-wrap .product-summary .product-description-section {
  margin-bottom: 60px;
}
.single-product-container .product-wrap .product-summary .product-description-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}
.single-product-container .product-wrap .product-summary .product-description-section .product-description {
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 30px;
}
.single-product-container .product-wrap .product-summary .quote-only-message {
  background: #e8f5e8;
  padding: 30px;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 30px;
}
.single-product-container .product-wrap .product-summary .quote-only-message strong {
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
  margin-bottom: 5px;
}
@media screen and (max-width: 900px) {
  .single-product-container .product-wrap .product-summary .quote-button-wrapper {
    text-align: center;
  }
}
.single-product-container .product-wrap .product-summary .quote-button-wrapper button {
  background: #2C7744;
  font-weight: 700;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
}

.quote-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}
@media screen and (max-width: 900px) {
  .quote-page-container {
    padding: 30px 20px;
  }
}

.quote-content h1 {
  margin-bottom: 30px;
  font-weight: 700;
}

.empty-quote {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 8px;
}
.empty-quote p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.quote-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.quote-table th,
.quote-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.quote-table th {
  background: #2C7744;
  color: white;
  font-weight: bold;
}

.quote-table .product-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.quote-table .product-image {
  flex-shrink: 0;
  margin-bottom: 10px;
}
.quote-table .product-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.product-details h4 {
  margin: 0 0 5px 0;
  font-weight: 700;
}

.product-description {
  margin: 0;
  color: #666;
  font-size: 0.9em;
}

.product-price {
  font-weight: bold;
  color: #2c5530;
  font-size: 27px;
  margin-bottom: 30px;
}

.remove-from-quote {
  background: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
}
.remove-from-quote:hover {
  background: #c82333;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  background: #2c5530;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.quantity-btn:hover {
  background: #1e3a21;
}
.quantity-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.quantity-display {
  font-weight: bold;
  font-size: 16px;
  min-width: 30px;
  text-align: center;
  color: #333;
}

.quote-form-section {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
  .quote-form-section {
    padding: 20px 15px;
  }
}
.quote-form-section h2 {
  margin-bottom: 20px;
  color: #333;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row.column {
  flex-direction: column;
}
.form-row.column .form-group {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .form-row {
    flex-direction: column;
  }
}

.form-group {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .form-group {
    width: 100%;
  }
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 18px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c5530;
  box-shadow: 0 0 0 2px rgba(44, 85, 48, 0.1);
}

.required {
  color: #dc3545;
}

.form-actions {
  text-align: center;
  margin-top: 30px;
}

.submit-quote-btn {
  background: #2c5530;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.submit-quote-btn:hover {
  background: #1e3a21;
}
.submit-quote-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-table {
    font-size: 0.9em;
  }
  .quote-table th,
  .quote-table td {
    padding: 10px;
  }

  .product-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.section-guid .guid-wrap {
  margin-bottom: 80px;
}
.section-guid .guid-wrap .guid-item h3 {
  font-weight: 700;
  font-size: 24px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #2C7744;
}
.section-guid .guid-wrap .guid-item h3 span {
  font-size: 32px;
  color: #2C7744;
  display: flex;
  align-items: center;
  gap: 24px;
}
.section-guid .guid-wrap .guid-item h3 span::after {
  content: "";
  display: block;
  width: 2px;
  height: 22px;
  background: #2C7744;
}
.section-guid .guid-wrap .guid-item p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 45px;
  padding-top: 20px;
}
.section-guid .guid-wrap .guid-item p a {
  color: #2C7744;
  text-decoration: underline;
}
.section-guid .notes-wrap dl {
  margin-bottom: 30px;
}
.section-guid .notes-wrap dl dt {
  font-size: 18px;
  font-weight: 700;
  color: #2C7744;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.section-guid .notes-wrap dl dt::before {
  content: "";
  display: block;
  width: 4px;
  height: 22px;
  background: #2C7744;
}
.section-guid .notes-wrap dl dd {
  font-size: 16px;
  line-height: 200%;
}

.quote-success-content {
  padding-top: 60px;
}
@media screen and (max-width: 900px) {
  .quote-success-content {
    padding-top: 0;
  }
}
.quote-success-content .success-header {
  text-align: center;
  margin-bottom: 100px;
}
.quote-success-content .success-header .title {
  color: #2C7744;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .quote-success-content .success-header .title {
    font-size: 40px;
  }
}
.quote-success-content .success-header p {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .quote-success-content .success-header p {
    font-size: 25px;
  }
}
.quote-success-content .process-info h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2C7744;
}
.quote-success-content .process-info .process-steps .step {
  margin-bottom: 60px;
}
.quote-success-content .process-info .process-steps .step .wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote-success-content .process-info .process-steps .step .wrap .step-number {
  width: 35px;
  height: 35px;
  font-size: 20px;
  background: #2C7744;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}
.quote-success-content .process-info .process-steps .step .wrap .step-content {
  font-weight: 700;
  font-size: 25px;
}
.quote-success-content .process-info .process-steps .step p {
  font-size: 18px;
  font-weight: 700;
  padding-left: 50px;
  line-height: 160%;
}
.quote-success-content .contact-info {
  background: #e8f5e8;
  padding: 20px;
}
.quote-success-content .contact-info h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2C7744;
}
.quote-success-content .contact-info .contact-details p {
  font-size: 16px;
  line-height: 160%;
}
.quote-success-content .contact-info .contact-details p:not(:last-child) {
  margin-bottom: 10px;
}
.quote-success-content .contact-info .contact-details p a {
  text-decoration: underline;
  color: #2C7744;
}
.quote-success-content .additional-info {
  background: #e8f5e8;
  padding: 20px;
}
.quote-success-content .additional-info h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2C7744;
}
.quote-success-content .additional-info ul li {
  font-size: 16px;
  list-style: dotts;
  line-height: 160%;
}

.pc_only {
  display: block !important;
}

.sp_only {
  display: none !important;
}

@media screen and (max-width: 900px) {
  .sp_only {
    display: block !important;
  }

  .pc_only {
    display: none !important;
  }
}
