@charset "UTF-8";
/*定数設定*/
@import url("root.css");
/***************************************
------------- grid -------------
https://web-grid.webjeda.com/
***************************************/
@media (min-width: 768px) {
  .row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .row {
    display: grid;
    grid-template-columns: auto;
    grid-auto-rows: auto;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .row.sp-2col {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}
@media (min-width: 768px) {
  .row.align-items-center {
    align-items: center;
  }
}
.row + .row {
  margin-top: 5%;
}

[class*="col-"] {
  /*grid-column: span 12;*/
  /*padding: 10px*/
}

/* 768px */
@media only screen and (min-width: 768px) {
  .col-50 {
    grid-column: span 6;
  }
  .col-25 {
    grid-column: span 3;
  }
  .col-75 {
    grid-column: span 9;
  }
  .col-100 {
    grid-column: span 12;
  }
  .col-1 {
    grid-column: span 1;
  }
  .col-2 {
    grid-column: span 2;
  }
  .col-3 {
    grid-column: span 3;
  }
  .col-4 {
    grid-column: span 4;
  }
  .col-5 {
    grid-column: span 5;
  }
  .col-6 {
    grid-column: span 6;
  }
  .col-7 {
    grid-column: span 7;
  }
  .col-8 {
    grid-column: span 8;
  }
  .col-9 {
    grid-column: span 9;
  }
  .col-10 {
    grid-column: span 10;
  }
  .col-11 {
    grid-column: span 11;
  }
  .col-12 {
    grid-column: span 12;
  }
}
@media (min-width: 768px) {
  .order-1 {
    order: 1;
  }
  .order-2 {
    order: 2;
  }
  .order-3 {
    order: 3;
  }
  .order-4 {
    order: 4;
  }
  .order-5 {
    order: 5;
  }
  .order-6 {
    order: 6;
  }
}
@media (max-width: 767px) {
  .row.sp-gap-y-20 {
    gap: 20px 10px;
  }
  .row.sp-gap-y-30 {
    gap: 30px 10px;
  }
  .row.sp-gap-y-40 {
    gap: 40px 10px;
  }
}
/* 768px - 800px */
@media only screen and (max-width: 800px) and (min-width: 768px) {
  .col-50 {
    grid-column: span 6;
  }
  .col-25 {
    grid-column: span 3;
  }
  .col-75 {
    grid-column: span 9;
  }
  .col-100 {
    grid-column: span 12;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*****************BASE******************/
* {
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: var(--text-color);
  background: var(--body-bg-color);
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.5;
  height: auto;
  overflow: hidden;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  body {
    overflow: visible;
  }
}

@media (max-width: 767px) {
  body {
    font-size: var(--sp-base-font-size);
  }
}
small {
  font-size: 80%;
}

p {
  margin: 0.5em 0 1em;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:not([class]),
a:not([rel]) {
  transition: 0.2s;
}

a:not([class]):hover,
a:not([rel]):hover {
  opacity: 0.8;
}

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

dl dt {
  margin: 0;
}

dl dd {
  margin: 0;
}

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

figure {
  margin: 0;
  text-align: center;
}
figure:not(:last-child) {
  margin-bottom: 1em;
}

/*:where(p,h1,h2,h3,h4,h5,h6) {*/
/*  overflow-wrap: anywhere;*/
/*}*/
/***************************************
----------------- TITLE -----------------
***************************************/
#pagetitle {
  width: 100%;
  height: 200px;
  margin: 0 auto;
  padding: 0;
  background: url(../img/common/pagetitle.jpg) no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pagetitle h1 {
  font-size: 4rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #pagetitle {
    height: 100px;
  }
  #pagetitle h1 {
    font-size: 3rem;
  }
}
h2 .color,
h3 .color {
  color: var(--base-color02);
}

.h2 {
  font-size: clamp(26px, 5vw, 64px);
  text-align: center;
  margin: 0 auto clamp(20px, 2.6vw, 30px);
}
.h2 .en {
  display: block;
  margin: auto;
  text-align: center;
  font-size: clamp(18px, 2.86vw, 28px);
  position: relative;
  z-index: 0;
  font-weight: 300;
  color: #fff;
}
.h2 .en:before {
  content: "";
  background: url(../img/common/h2_bg.png) no-repeat center/cover;
  width: clamp(180px, 28.9vw, 278px);
  height: clamp(49px, 7.81vw, 75px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
@media (max-width: 767px) {
  .h2 .en {
    margin-bottom: 5px;
  }
}

.h3 {
  font-size: clamp(24px, 3.75vw, 36px);
  font-weight: 500;
  border-bottom: solid 2px var(--base-color01);
  padding-bottom: 5px;
  margin: 0 auto 15px;
}
.h3 .color {
  color: var(--base-color01);
}

.h2_A {
  text-align: center;
  font-size: clamp(23px, 4.5vw, 38px);
  font-weight: 700;
  padding: clamp(30px, 3.9vw, 50px) 0 clamp(20px, 2.6vw, 40px);
  margin: 0 auto 30px;
  position: relative;
}
.h2_A:before,
.h2_A:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.h2_A:before {
  width: clamp(18px, 2.3vw, 26px);
  height: clamp(26px, 3.3vw, 37px);
  background: url(../img/common/h2a_ic01.png) no-repeat center/cover;
  top: 0;
}
.h2_A:after {
  width: clamp(47px, 6.1vw, 68px);
  height: clamp(16px, 2vw, 23px);
  background: url(../img/common/h2a_ic02.png) no-repeat center/cover;
  bottom: 0;
}

.h2_B {
  border-bottom: solid 2px #008519;
  padding: 0 0 10px;
  margin: 0 0 20px;
  font-size: clamp(21px, 2.8vw, 24px);
}

.side_contents .h2_A {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
}

.h3_A {
  color: var(--base-color01);
  position: relative;
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 700;
  letter-spacing: 0;
  padding: 10px 15px 10px 20px;
  text-align: left;
  margin: 0 0 15px;
}
@media (max-width: 767px) {
  .h3_A {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.h3_A:before {
  content: "";
  width: 5px;
  height: 1.3em;
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  background: var(--base-color01);
}

.h3_styled {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

.h3_B {
  padding-left: 18px;
  position: relative;
  font-size: clamp(18px, 2.4vw, 20px);
}
.h3_B:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: var(--base-color01);
}

@media (max-width: 767px) {
  .h3_styled {
    font-size: 19px;
  }
}
.h3_styled span {
  font-size: 22px;
  color: #ffaa03;
}

@media (max-width: 767px) {
  .h3_styled span {
    font-size: 19px;
  }
}
/***************************************
---------------- HEADER ----------------
***************************************/
header {
  width: 100%;
  background: #fff;
  padding: 15px 0;
}
header .header_wrap {
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
header .header_wrap .store_name {
  width: 200px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: unset;
  margin: 0;
}
@media (min-width: 768px) {
  header {
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  }
}

.header_right {
  display: flex;
  flex-wrap: nowrap;
  width: min(70%, 615px);
  justify-content: flex-end;
  align-items: center;
  gap: 4%;
}

.phone_num {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.phone_num a {
  color: var(--base-color01);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
.phone_num a .fa-phone-volume {
  font-size: clamp(2rem, 3vw, 3rem);
  display: inline-block;
  margin-right: 0.2em;
}

.hdr_contact_btn {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .hdr_contact_btn {
    justify-content: center;
    margin-top: 20px;
  }
}
.hdr_contact_btn a {
  display: block;
  color: var(--base-color01);
  border: 1px solid var(--base-color01);
  font-size: 1.4rem;
  width: 190px;
  border-radius: 4px;
  text-align: center;
  padding: 0.5em 1em;
  line-height: 1;
}
@media (max-width: 767px) {
  .hdr_contact_btn a {
    color: var(--base-color01) !important;
    background: #fff;
    padding: 10px 10px 15px;
  }
}
.hdr_contact_btn a .fa-envelope {
  display: inline-block;
  margin-right: 0.2em;
}

.store_info {
  font-weight: bold;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store_info th,
.store_info td {
  line-height: 1.3;
  vertical-align: middle;
}

.navigation {
  width: 100%;
}
.navigation > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--container-width);
  list-style: none;
  justify-content: end;
  gap: 0 clamp(10px, 1.3vw, 40px);
  margin: auto 15px auto auto;
}
.navigation > ul#page_link > li {
  height: inherit;
  display: flex;
  align-items: center;
  position: relative;
}
.navigation > ul#page_link > li.has-child {
  position: relative;
}
.navigation > ul#page_link > li.has-child > a {
  position: relative;
  padding-right: 0.5rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .navigation > ul#page_link > li.has-child > a {
    padding-right: 15px;
    position: relative;
    z-index: 1;
  }
}
.navigation > ul#page_link > li.has-child > a .menu-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.5rem;
  margin: auto;
  width: 30px;
  height: 30px;
  transition: 0.3s;
  transform: rotate(0deg);
  padding: 0 !important;
}
.navigation > ul#page_link > li.hdr_btn a {
  color: #0058bc;
  padding: 7px clamp(10px, 1.33vw, 20px);
  border: solid 1px #0058bc;
  border-radius: 50px;
  transition: 0.3s;
}
.navigation > ul#page_link > li.hdr_btn a:hover {
  background: #0058bc;
  color: #fff;
  transition: 0.3s;
}

/*本体リンクありの場合の追加CSSここから*/
/*@media ( max-width : 767px ) {*/
/*  .navigation > ul > li.has-child > a .menu-dropdown-toggle {*/
/*    border: #fff solid 1px;*/
/*    border-radius: 50%;*/
/*    z-index: 2;*/
/*  }*/
/*}*/
/*本体リンクありの場合の追加CSSここまで*/
.navigation > ul > li.has-child > a .menu-dropdown-toggle i {
  font-size: 1rem;
}

.navigation > ul > li.has-child .menu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .navigation > ul > li.has-child .menu-dropdown {
    width: 200px;
  }
  .navigation > ul > li.has-child .menu-dropdown a {
    color: #fff !important;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  }
}

@media (min-width: 768px) {
  .navigation ul li.has-child:after {
    content: "";
    width: 10px;
    height: 7px;
    background-color: var(--base-color01);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    margin: auto;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    transition: 0.3s;
  }
  .navigation ul li.has-child:hover:after {
    transform: rotate(180deg);
    transition: 0.3s;
  }
  html:not(.touch-enabled) .navigation ul li.has-child:hover .menu-dropdown {
    display: block !important;
  }
  html:not(.touch-enabled)
    .navigation
    ul
    li.has-child:hover
    > a
    .menu-dropdown-toggle,
  .navigation ul li.has-child > a.is-open .menu-dropdown-toggle {
    transform: rotate(180deg);
  }
}
@media (max-width: 767px) {
  .navigation > ul > li.has-child .menu-dropdown {
    display: none;
    position: static;
    top: unset;
    left: unset;
    width: 100%;
    z-index: unset;
  }
  html.touch-enabled
    .navigation
    ul
    li.has-child
    > a.is-open
    .menu-dropdown-toggle {
    transform: rotate(180deg);
  }
}
.navigation ul li.has-child .menu-dropdown li {
  width: 100%;
}

.navigation ul li.has-child .menu-dropdown li a {
  padding: 10px 0;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  background: var(--base-color01);
}

.navigation ul#page_link li a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: inherit;
  align-items: center;
  justify-content: center;
  transition: 0s;
  font-size: clamp(11px, 1.43vw, 16px);
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .navigation ul#page_link li a {
    color: var(--text-color);
  }
  .navigation ul#page_link li a:hover {
    color: var(--base-color01);
    transition: 0.3s;
  }
}

@media (max-width: 767px) {
  .navigation ul#page_link li a {
    font-size: 1.6rem;
  }
}
.navigation ul#page_link li a:hover {
  opacity: 0.8;
}

#menu-btn-check,
.menu-btn,
.store_name {
  display: none;
}

@media screen and (max-width: 767px) {
  header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
    display: flex;
    align-items: center;
  }
  header .header_wrap {
    width: 100%;
  }
  header .header_wrap .store_name {
    width: min(60%, 250px);
    margin-left: 20px;
  }
  .menu-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    height: 54px;
    width: 54px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    color: var(--base-color01);
    cursor: pointer;
  }
  .menu-btn span.bar,
  .menu-btn span.bar:before,
  .menu-btn span.bar:after {
    content: "";
    display: block;
    height: 3px;
    width: 34px;
    border-radius: 3px;
    background-color: var(--base-color01);
    position: absolute;
  }
  .menu-btn span.txt {
    position: absolute;
    bottom: 0;
    color: var(--base-color01);
    font-size: 1.2rem;
    line-height: 1;
  }
  .menu-btn span.bar:before {
    top: -10px;
  }
  .menu-btn span.bar {
    top: 20px;
  }
  .menu-btn span.bar:after {
    top: 10px;
  }
  #menu-btn-check:checked ~ .menu-btn span.bar {
    background-color: transparent;
  }
  #menu-btn-check:checked ~ .menu-btn span.bar::before {
    top: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span.bar::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .navigation {
    width: 100%;
    height: calc(100% - 80px);
    position: fixed;
    top: 80px;
    left: 100%;
    z-index: 80;
    background: var(--base-color01);
    transition: all 0.5s;
  }
  .navigation ul#page_link {
    padding: 10px 25px 0;
    height: auto;
  }
  .navigation ul#page_link > li {
    width: 100%;
    margin: 0;
    border-bottom: solid 1px #fff;
    list-style: none;
  }
  .navigation ul#page_link li:not(:last-of-type)::after {
    content: none;
  }
  .navigation ul#page_link > li a {
    padding: 10px 0;
  }
  .navigation ul#page_link > li a span {
    padding: 0 0 5px;
  }
  .navigation ul#page_link > li:before,
  .navigation ul#page_link > li:last-of-type:after {
    content: none;
  }
  .navigation ul#page_link > li a:hover,
  .navigation ul#page_link > li span:hover {
    background: none;
    opacity: 0.8;
  }
  #menu-btn-check:checked ~ .navigation {
    left: 0;
    /*メニューを画面内へ*/
  }
  .navigation li.has-child .menu-dropdown {
    position: static;
    background: none;
    width: calc(100% - 2px);
    opacity: 1;
    transition: none;
    display: none;
  }
  .navigation li.has-child {
    flex-wrap: wrap;
  }
  .phone_num.sp-only {
    width: 90%;
    text-align: center;
    max-height: unset;
    margin: 30px auto;
    display: block;
  }
  .phone_num.sp-only a {
    color: #fff;
  }
  .phone_num p {
    font-size: 1.6rem;
    background: none;
    margin-top: 20px;
  }
}
/***************************************
---------------- FOOTER ----------------
***************************************/
.footer_bg {
  background: url(../img/common/footer_bg2.jpg) no-repeat center top/cover;
  padding: clamp(60px, 13vw, 140px) 10px 120px;
}
.footer_bg .container {
  background: rgba(255, 255, 255, 0.75);
  padding: clamp(40px, 3.9vw, 60px) clamp(20px, 3.9vw, 60px)
    clamp(40px, 10vw, 100px);
  border-radius: 6px;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.1);
}
.footer_bg .ftr_logo {
  text-align: left;
  width: min(65%, 200px);
  margin-right: auto;
}
.footer_bg .ftr_list {
  font-size: clamp(16px, 2.3vw, 18px);
}
.footer_bg .ftr_list li {
  line-height: 1.7;
  font-weight: 500;
}
.footer_bg .ftr_list li a {
  color: var(--text-color);
}
.footer_bg .ft_menu--block li:not(:last-child) {
  margin-bottom: 5px;
}
.footer_bg .ft_menu--block a {
  font-weight: 700;
  color: var(--text-color);
  padding-left: 14px;
  position: relative;
}
.footer_bg .ft_menu--block a:before {
  content: "";
  width: 5px;
  height: 11px;
  background-color: var(--base-color01);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.footer_bg .ft_menu--block a:hover {
  color: var(--base-color01);
}
@media (min-width: 768px) {
  .footer_bg .ftr_container {
    display: grid;
    grid-template-columns: 28.5% 66.5%;
    gap: 20px 5%;
  }
  .footer_bg .ftr_list {
    padding-left: 60px;
  }
  .footer_bg .ft_right {
    display: flex;
    gap: 20px 50px;
  }
}
@media (min-width: 768px) and (max-width: 1250px) {
  .footer_bg .ftr_list {
    padding-left: 10px;
    font-size: 80%;
  }
  .footer_bg .ft_right {
    gap: 20px 20px;
    font-size: 80%;
  }
}
@media (max-width: 767px) {
  .footer_bg .ft_left {
    margin-bottom: 30px;
  }
  .footer_bg .ft_right {
    overflow: hidden;
  }
  .footer_bg .ft_right .ft_menu--block li a {
    font-size: 14px;
  }
  .footer_bg .ft_right .ft_menu--block.sp_nav01 {
    float: left;
    width: 54%;
  }
  .footer_bg .ft_right .ft_menu--block.sp_nav02,
  .footer_bg .ft_right .ft_menu--block.sp_nav03 {
    float: right;
    margin-left: 2%;
    width: 44%;
  }
  .footer_bg .ft_right .ft_menu--block.sp_nav02 {
    margin-bottom: 5px;
  }
}

.copyright {
  font-size: 1.4rem;
  margin: auto;
  padding: 17px 10px;
  text-align: center;
  color: #fff;
  background: var(--base-color01);
  position: relative;
}
.copyright::before {
  content: "";
  width: 100%;
  height: min(7.5vw, 60px);
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-99.5%);
  background: url(../img/common/footer_deco.svg) repeat-x bottom left/contain;
}

/***************************************
-------------- ACCESS --------------
***************************************/
.sec_access {
  padding: min(6%, 100px) 0;
  background: var(--footer-bg01);
}
.sec_access .tel a {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 53px;
  text-align: center;
  font-size: clamp(2rem, 1.789rem + 0.901vw, 2.6rem);
  color: var(--base-color01);
  font-weight: bold;
  border-radius: 4px;
  border: 2px solid var(--base-color01);
  position: relative;
}
@media (min-width: 768px) {
  .sec_access .tel a {
    pointer-events: none;
  }
}
.sec_access .tel a i {
  font-size: clamp(2rem, 1.789rem + 0.901vw, 2.6rem);
  padding-right: 0.2em;
}
.sec_access .mail a {
  font-size: clamp(2rem, 1.789rem + 0.901vw, 2.6rem);
  height: 60px;
  line-height: 53px;
  display: block;
  width: 100%;
  text-align: center;
  color: var(--base-color01);
  font-weight: bold;
  border-radius: 4px;
  border: 2px solid var(--base-color01);
}
.sec_access .mail a i {
  font-size: clamp(2rem, 1.789rem + 0.901vw, 2.6rem);
  padding-right: 0.2em;
}

/***************************************
---------------- LAYOUT ----------------
***************************************/
body {
  color: var(--text-color);
}

.container_bg {
  width: 100%;
  max-width: var(--container-width);
  margin: auto;
  background: var(--base-color02);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto 0;
}

/* 2カラム */
.main_2col {
  display: flex;
  flex-flow: row-reverse;
  gap: 40px;
}

@media screen and (max-width: 900px) {
  .main_2col {
    flex-flow: column-reverse;
  }
}
.main_2col .main_contents {
  width: 100%;
  max-width: calc(var(--container-width) - 240px - 40px);
}

@media screen and (min-width: 768px) and (max-width: 1230px) {
  .main_2col .main_contents {
    max-width: calc(100% - 240px - 40px);
  }
}
@media screen and (max-width: 900px) {
  .main_2col .main_contents {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
.main_contents .container {
  padding: 0;
}

.main_2col .side_contents {
  width: 240px;
  padding: 50px 0;
}

@media screen and (max-width: 900px) {
  .main_2col .side_contents {
    width: 100%;
    max-width: 100%;
    padding: 0 0 50px;
  }
}
@media screen and (max-width: 1230px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .container_bg {
    width: 100%;
  }
  .left_contents {
    width: 100%;
    padding: 0;
  }
  #sidebar {
    width: 100%;
  }
}
.strong {
  color: var(--base-color01);
  font-weight: bold;
  font-size: 24px;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .disc {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
.page_wrap {
  padding: 50px 0;
}

.page_wrap section + section {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .page_wrap section + section {
    margin-top: 40px;
  }
}
/***************************************
-------------- PAGENATION --------------
***************************************/
.pagination {
  width: min(100%, 768px);
  margin: 60px auto;
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pagination li {
  width: 8%;
  line-height: 1.5;
}

.pagination li:not(:last-of-type) {
  margin-right: 2%;
}

.pagination li a {
  display: flex;
  font-size: 1.44rem;
  color: var(--base-color01);
  border: 1px solid var(--base-color01);
  width: 100%;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.pagination li.active a {
  background: var(--base-color01);
  color: #fff;
}

/***************************************
----------------- UTIL -----------------
***************************************/
/*light*/
.fw-300 {
  font-weight: 300;
}

/*regular*/
.fw-400 {
  font-weight: 400;
}

/*medium*/
.fw-500 {
  font-weight: 500;
}

/*semibold*/
.fw-600 {
  font-weight: 600;
}

/*bold*/
.fw-700 {
  font-weight: 700;
}

/*black*/
.fw-900 {
  font-weight: 900;
}

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

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

@media (min-width: 768px) {
  .pc-text-center {
    text-align: center;
  }
  .pc-text-right {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .sp-text-center {
    text-align: center;
  }
  .sp-text-right {
    text-align: right;
  }
}
.text-color01 {
  color: var(--base-color01);
}

.text-color02 {
  color: var(--base-color02);
}

.mt-0,
.mt0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1em !important;
}

.mt-2 {
  margin-top: 2em !important;
}

.mt-3 {
  margin-top: 3em !important;
}

.mt-4 {
  margin-top: 4em !important;
}

.mt-5 {
  margin-top: 5em !important;
}

.mb-0,
.mb0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1em !important;
}

.mb-2 {
  margin-bottom: 2em !important;
}

.mb-3 {
  margin-bottom: 3em !important;
}

.mb-4 {
  margin-bottom: 4em !important;
}

.mb-5 {
  margin-bottom: 5em !important;
}

@media (max-width: 767px) {
  .sp-mt-0 {
    margin-top: 0 !important;
  }
  .sp-mt-1 {
    margin-top: 1em !important;
  }
  .sp-mt-2 {
    margin-top: 2em !important;
  }
  .sp-mt-3 {
    margin-top: 3em !important;
  }
  .sp-mt-4 {
    margin-top: 4em !important;
  }
  .sp-mt-5 {
    margin-top: 5em !important;
  }
  .sp-mb-0 {
    margin-bottom: 0 !important;
  }
  .sp-mb-1 {
    margin-bottom: 1em !important;
  }
  .sp-mb-2 {
    margin-bottom: 2em !important;
  }
  .sp-mb-3 {
    margin-bottom: 3em !important;
  }
  .sp-mb-4 {
    margin-bottom: 4em !important;
  }
  .sp-mb-5 {
    margin-bottom: 5em !important;
  }
}
@media (max-width: 767px) {
  .sp-mt-1 {
    margin-top: 1em;
  }
  .sp-mt-2 {
    margin-top: 2em;
  }
  .sp-mt-3 {
    margin-top: 3em;
  }
  .sp-mt-4 {
    margin-top: 4em;
  }
  .sp-mt-5 {
    margin-top: 5em;
  }
}
.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

a[href^="tel:"] {
  text-decoration: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
@media screen and (min-width: 1025px) {
  .tablet-only {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .tablet-only {
    display: none !important;
  }
}
@media (max-width: 1249px) {
  .pc-only02 {
    display: none !important;
  }
}
@media (min-width: 1250px) {
  .sp-only02 {
    display: none !important;
  }
}
.text-red {
  color: var(--base-color03);
}

/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767px */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
-------------- WEB FONT --------------
***************************************/
.gf-oswald {
  font-family: "Oswald", sans-serif;
}

/***************************************
-------------- STORE INFO --------------
***************************************/
.info_wrap {
  background: #fff;
  padding: 10px;
}
.info_wrap dl {
  display: grid;
  grid-template-columns: min(35%, 150px) 1fr;
  grid-template-rows: auto;
  gap: 10px 20px;
}
@media (max-width: 767px) {
  .info_wrap dl {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 5px;
  }
}
.info_wrap dl dt {
  font-size: 1.6rem;
  height: fit-content;
  background: var(--base-color01);
  padding: 2px 0;
  color: #fff;
  text-align: center;
  align-items: center;
}
.info_wrap dl dd {
  font-size: 1.6rem;
  padding: 2px 0;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .info_wrap dl dt,
  .info_wrap dl dd {
    font-size: 1.6rem;
    width: 100%;
    padding-left: 10px;
    justify-content: flex-start;
  }
}

/***************************************
------------- 木も背景 -------------
***************************************/
.grain_bg {
  background: url(../img/top_flow_ctn_bg_sp.jpg) repeat left top;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
  padding: clamp(15px, 2.6vw, 30px);
  position: relative;
  z-index: 1;
}

.grid_bg {
  background: url(../img/grid_bg_sp.jpg) repeat top left;
  padding: clamp(25px, 6.5vw, 50px) clamp(15px, 2.6vw, 30px);
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
.grid_bg .row:not(:last-child) {
  margin-bottom: clamp(40px, 7vw, 100px);
}
.grid_bg .row figure {
  margin-bottom: 0;
}
.grid_bg .row .caption {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  margin-top: 5px;
}

@media (min-width: 768px) {
  .grain_bg {
    background: url(../img/top_flow_ctn_bg.jpg) repeat center top;
  }
  .grid_bg {
    background: url(../img/grid_bg.jpg) repeat top left;
  }
}
/***************************************
-------------- NEWS LIST --------------
***************************************/
.news-lists {
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  display: grid;
  grid-template-columns: max-content 1fr;
}
@media (max-width: 767px) {
  .news-lists {
    grid-template-columns: 1fr;
  }
}
.news-lists dt {
  border-bottom: var(--base-color01) solid 1px;
  padding: 0.5em;
}
@media (max-width: 767px) {
  .news-lists dt {
    border-bottom: none;
    padding: 0.5em 0.5em 0;
  }
}
.news-lists dt i {
  display: inline-block;
  margin-right: 10px;
}
.news-lists dd {
  border-bottom: var(--base-color01) solid 1px;
  padding: 0.5em;
}

.side_info .news-lists {
  display: grid;
  grid-template-columns: 1fr;
}
.side_info .news-lists dt {
  border-bottom: none;
  padding-bottom: 0;
}

/***************カテゴリタグカラー設定****************/
.post_heading {
  display: flex;
  gap: 10px;
}
.post_heading > * {
  margin: 0;
}

.c-categoryTag {
  display: inline-block;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background: var(--base-color01);
  padding: 0 10px;
}
.c-categoryTag .category-news {
  background: var(--base-color01);
}
.c-categoryTag .category-recruit {
  background: var(--base-color01);
}
.c-categoryTag .category-other {
  background: var(--base-color01);
}

/***************************************
-------------- ITEM LIST --------------
***************************************/
.item_list .col-3 > a {
  display: block;
  position: relative;
  height: 0;
  padding-top: 70%;
}

.item_list .col-3 > a > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item_list .cat {
  text-align: center;
  color: #fff;
  background: var(--base-color01);
  font-size: 14px;
  font-weight: bold;
}

.item_list .date {
  color: #555;
  text-align: right;
  margin: 0;
}

/***************************************
-------------- GOOGLE MAP --------------
***************************************/
#store_info .gmap {
  width: 100%;
  margin: auto;
}
#store_info .gmap iframe {
  width: 100%;
  height: 400px;
  vertical-align: bottom;
}

/***************************************
-------------- PAGE TOP --------------
***************************************/
#page_top a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99;
  bottom: 0;
  text-align: center;
  background: #0058bc;
  border-radius: 6px;
  width: 60px;
  height: 60px;
  right: -100%;
  span {
    font-weight: bold;
    color: #fff;
    line-height: 1;
    font-size: 0.9em;
  }
  span::before {
    content: "";
    display: block;
    margin: 0 auto 5px;
    width: 16px;
    height: 10px;
    background: #fff;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
  }
}

#side {
  position: fixed;
  right: 0;
  top: 100px;
}

#side ul li + li {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  #page_top a {
    bottom: 64px;
  }
  #side {
    position: fixed;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 1;
  }
  #side ul {
    display: flex;
    align-items: center;
  }
  #side ul li + li {
    margin: 0;
  }
}
/***************************************
-------------- タブ式コンテンツ -----------
***************************************/
.tabAllWrap .tab {
  width: 100%;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tabAllWrap .tab .tab__button a {
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  background: white;
  padding: 1.2em 1em;
  font-weight: bold;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .tabAllWrap .tab .tab__button a {
    padding: 0.5em 1em;
    height: 4em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.tabAllWrap .tab .tab__button a:hover {
  background: var(--base-color01);
  color: white;
}

.tabAllWrap .tab .tab__button.active a {
  background: var(--base-color01);
  color: white;
}

/***************************************
------------ コンテンツスライダー ----------
***************************************/
.parts_content_slider .slider_wrapper {
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
}

.parts_content_slider .slick-slide {
  padding: 0 10px;
}

.parts_content_slider .slick-arrow {
  width: 40px;
  height: 40px;
  background: var(--base-color01);
  position: absolute;
  z-index: 10;
  top: 31%;
  margin: auto;
  cursor: pointer;
  transform: translate(0);
}

.parts_content_slider .slick-arrow:before {
  content: none;
}

@media (min-width: 768px) and (max-width: 1220px) {
  .parts_content_slider .slick-arrow {
    top: 9vw;
  }
}
@media (max-width: 767px) {
  .parts_content_slider .slick-arrow {
    top: 30vw;
  }
}
.parts_content_slider .slick-arrow.slick-prev {
  left: 10px;
  background: url(../img/arrow_bk.svg) no-repeat center;
  transform: scale(-1, 1);
}

.parts_content_slider .slick-arrow.slick-next {
  right: 10px;
  background: url(../img/arrow_bk.svg) no-repeat center;
}

/***************************************
------------- 共通 BTN ------------
***************************************/
.common_btn {
  width: min(93%, 750px);
  margin: 20px auto 0;
  border-radius: 80px;
  color: var(--base-color01);
  background: #ffcc00;
  border: 2px solid #ffcc00;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.common_btn a {
  width: 100%;
  padding: 16px 0;
  font-size: min(3.5vw, 3.5rem);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  position: relative;
  transition: 0.5s;
}
.common_btn a:after {
  content: "";
  display: block;
  width: 20px;
  height: 24px;
  background: url(../img/arrow_br.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.common_btn:hover {
  background: var(--base-color01);
  color: #fff;
  border-radius: 80px;
  border: 2px solid #fff;
  box-sizing: border-box;
}
.common_btn:hover:after {
  background: url(../img/arrow_wh.svg) no-repeat;
}

@media screen and (max-width: 767px) {
  .common_btn {
    width: 90%;
    margin: 10px auto 0;
  }
  .common_btn a {
    padding: 10px;
    font-size: clamp(2rem, 4.75vw, 2.4rem);
  }
  .common_btn a:after {
    width: 12px;
    height: 20px;
  }
}
.button {
  text-align: center;
  font-size: clamp(16px, 2.22vw, 18px);
  min-width: 300px;
  border: solid 1px var(--base-color01);
  display: inline-block;
  padding: clamp(10px, 1.3vw, 15px) 10px;
  border-radius: 50px;
  position: relative;
  background: #fff;
  color: var(--base-color01) !important;
}
.button:after {
  content: "";
  border-top: solid clamp(2px, 0.04vw, 3px) var(--base-color01);
  border-right: solid clamp(2px, 0.04vw, 3px) var(--base-color01);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(15px, 2.6vw, 25px);
  margin: auto;
  transform: rotate(45deg);
  transition: 0.3s;
}
.button:hover {
  background: var(--base-color01);
  color: #fff !important;
}
.button:hover:after {
  border-color: #fff;
  transition: 0.3s;
}

/***************************************
-------------- ぱんくず -----------
***************************************/
.breadcrumb {
  margin: 20px 0 0 0;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
}
.breadcrumb ul li a {
  color: var(--base-color01);
  text-decoration: underline;
}
.breadcrumb ul li:not(:first-child):before {
  content: ">";
  margin: 0 0.5em;
}

/***************************************
-------------- 共通ボタン -----------
***************************************/
.common_button {
  max-width: 550px;
  width: 100%;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 80px;
  overflow: hidden;
}
.common_button a {
  color: #fff;
  text-decoration: none;
}
.common_button a .ic {
  position: relative;
}
.common_button a .ic:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.common_button.tel {
  background: #008519;
  padding-bottom: 5px;
}
.common_button01.tel {
  background: #f9b852;
  padding-bottom: 5px;
}
.common_button.tel .txt {
  display: block;
  font-size: 16px;
}
.common_button.tel a {
  font-size: clamp(18px, 5vw, 28px);
  line-height: 1;
  margin-top: 3px;
}
.common_button.tel .ic {
  padding-left: 1.5em;
}
.common_button.tel .ic:before {
  width: auto;
  height: 0.9em;
  aspect-ratio: 4/3;
  background: url(../img/common/tel_ic.png) no-repeat center/cover;
}
.common_button01.tel .ic:before {
  width: auto;
  height: 0.9em;
  aspect-ratio: 4/3;
  background: url(../img/common/tel_ic02.png) no-repeat center/cover;
}
.common_button.contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--base-color01);
  width: 100%;
  height: 100%;
  flex-grow: 1;
  padding-bottom: 5px;
}
.common_button.contact a .ic {
  font-size: clamp(18px, 5vw, 24px);
  line-height: 1.2;
  padding-left: clamp(25px, 4vw, 32px);
}
.common_button.contact a .ic:before {
  width: clamp(20px, 3.3vw, 26px);
  height: clamp(20px, 3.3vw, 26px);
  background: url(../img/common/mail_ic.png) no-repeat center/cover;
}

/***************************************
-------------- 共通スライダー+コンテンツ -----------
***************************************/
.common_parts_block01 #thumbnail-slider {
  margin-top: 20px;
}
.common_parts_block01 #thumbnail-slider .splide__list {
  justify-content: center;
}
.common_parts_block01 #thumbnail-slider .splide__list img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.common_parts_block01 #main-slider .splide__slide {
  width: 100% !important;
}
@media (min-width: 768px) {
  .common_parts_block01 {
    display: grid;
    grid-template-columns: 40% 58%;
    gap: 2%;
  }
}
@media (max-width: 767px) {
  .common_parts_block01 .slider_container {
    margin-bottom: 20px;
  }
}

/***************************************
-------------- 施工事例スライダー -----------
***************************************/
.works_list_container .content {
  padding: clamp(10px, 1.9vw, 20px);
  background: #fff;
}
.works_list_container .row .col {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.works_list_container figure {
  margin: 0;
}
.works_list_container .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0 15px;
}
.works_list_container .list .cat {
  background: var(--base-color01);
  color: #fff;
  font-weight: 700;
  padding: 2px 15px;
  border-radius: 5px;
}
.works_list_container .list .name {
  font-weight: 700;
}
.works_list_container .link {
  text-align: right;
}
.works_list_container .link a {
  font-weight: 700;
  padding-right: 16px;
  position: relative;
}
.works_list_container .link a:after {
  content: "";
  border-top: solid 2px var(--base-color01);
  border-right: solid 2px var(--base-color01);
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.works_list_container .cat_wall .cat {
  background: #008519;
}
.works_list_container .cat_wall .link a {
  color: #008519;
  font-size: clamp(16px, 2.2vw, 18px);
}
.works_list_container .cat_wall .link a:after {
  border-color: #008519;
}
.works_list_container .cat_roof .cat {
  background: #0058bc;
}
.works_list_container .cat_roof .link a {
  color: #0058bc;
  font-size: clamp(16px, 2.2vw, 18px);
}
.works_list_container .cat_roof .link a:after {
  border-color: #0058bc;
}
.works_list_container .cat_others .cat {
  background: #d0487b;
}
.works_list_container .cat_others .link a {
  color: #d0487b;
  font-size: clamp(16px, 2.2vw, 18px);
}
.works_list_container .cat_others .link a:after {
  border-color: #d0487b;
}

.works_list_container .cat_wash .cat {
  background: #9b59b6;
}
.works_list_container .cat_wash .link a {
  color: #9b59b6;
  font-size: clamp(16px, 2.2vw, 18px);
}
.works_list_container .cat_wash .link a:after {
  border-color: #9b59b6;
}

table.table-default {
  width: 100%;
  border-collapse: collapse;
}
table.table-default thead th,
table.table-default thead td {
  background: var(--base-color01);
  color: #fff;
}
table.table-default th,
table.table-default td {
  padding: 10px 10px;
  border: solid 1px #ccc;
}
table.table-default th a,
table.table-default td a {
  color: var(--text-color);
}
table.table-default tbody th {
  background: #5982b1;
  color: #fff;
}
table.table-default tbody td {
  background: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  table.table-default th,
  table.table-default td {
    display: block;
    width: 100% !important;
  }
}
table.typeA {
  table-layout: fixed;
}
table.typeA td,
table.typeA th {
  text-align: center;
}
table.typeA td:first-child,
table.typeA th:first-child {
  width: 70px;
}
@media (max-width: 767px) {
  table.typeA th,
  table.typeA td {
    display: table-cell;
    width: 50px !important;
    font-size: 80%;
    padding: 5px 2px;
  }
}
table.typeB {
  table-layout: fixed;
}
@media (max-width: 767px) {
  table.typeB th,
  table.typeB td {
    display: table-cell;
    width: auto !important;
    font-size: 80%;
    padding: 5px 2px;
  }
}
table.color_green tbody th {
  background: #008519;
}
table.color_pink tbody th {
  background: #d0487b;
}
table.w900 {
  max-width: 900px;
  margin: auto;
}
.txt_center_box {
  display: table;
  margin: 15px auto;
}
@media (max-width: 767px) {
  table.w900 th,
  table.w900 td {
    padding: 10px;
  }
}
table.w800 {
  max-width: 800px;
  margin: auto;
}
@media (max-width: 767px) {
  table.w800 th,
  table.w800 td {
    padding: 10px;
  }
}

.targetOffset {
  scroll-margin-top: 80px;
}

@media (min-width: 768px) {
  body:not(.home) > .container {
    position: relative;
    z-index: 0;
  }
  body:not(.home) > .container:before {
    content: "";
    width: 100vw;
    height: 100%;
    background: url(../img/common/under_bg.jpg) no-repeat center top/cover;
    position: absolute;
    top: 80px;
    left: -300%;
    right: -300%;
    margin: auto;
    z-index: -1;
  }
}
.faq_wrap:not(:last-child) {
  margin-bottom: clamp(40px, 10.4vw, 100px);
}
.faq_wrap .faq_item:not(:last-child) {
  margin: 0 auto clamp(20px, 6.5vw, 50px);
}
.faq_wrap .question {
  border-bottom: solid 2px var(--base-color01);
  padding-bottom: 10px;
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 500;
  padding-left: clamp(28px, 5vw, 45px);
  position: relative;
  margin: 0;
  padding-right: 35px;
  cursor: pointer;
}
.faq_wrap .question:after {
  content: "";
  width: 15px;
  height: 15px;
  border-bottom: solid 4px var(--base-color01);
  border-right: solid 4px var(--base-color01);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  transform: rotate(45deg);
  transition: 0.3s;
}
.faq_wrap .question:before {
  content: "Q.";
  position: absolute;
  left: 0;
  color: #0058bc;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1;
}
.faq_wrap .question.open:after {
  transform: rotate(225deg);
  transition: 0.3s;
}
.faq_wrap .answer {
  font-size: 18px;
  font-weight: 500;
  padding: clamp(20px, 5.2vw, 40px) 0 0 clamp(28px, 5vw, 45px);
  position: relative;
  display: none;
}
.faq_wrap .answer:before {
  content: "A.";
  position: absolute;
  left: 0;
  font-size: clamp(20px, 3vw, 28px);
  color: #008519;
  line-height: 1;
}

@media (max-width: 767px) {
  .faq_wrap .question:after {
    bottom: auto;
    top: 0.2em;
  }
}
.circle_list:not(:last-child) {
  margin-bottom: 20px;
}
.circle_list li {
  padding-left: 15px;
  position: relative;
}
.circle_list li .text-large {
  font-size: 24px;
  line-height: 1;
}
.circle_list li:not(:last-child) {
  margin-bottom: 10px;
}
.circle_list li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--text-color);
  border-radius: 50%;
  position: absolute;
  top: 0.8em;
  left: 0;
}

/* 20250416 */

.box_inner {
  display: flex;
  gap: 20px;
}

.paint_feature {
  width: 40%;
}

.price_box {
  width: 40%;
}

.table_price_inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.price_item {
  border-bottom: dashed 1px #f9b852;
  padding: 10px 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
}

span.price_value {
  margin-left: 40px;
}

.price_item.type_green01 {
  border-bottom: dashed 1px #008519;
}
.price_item.type_blue01 {
  border-bottom: dashed 1px #0058bc;
}
.price_item.type_pink01 {
  border-bottom: dashed 1px #d0487b;
}
.price_item.type_purple01 {
  border-bottom: dashed 1px #9b59b6;
}

@media (max-width: 767px) {
  .box_inner {
    flex-direction: column;
  }

  .paint_feature {
    width: 100%;
  }

  .price_box {
    width: 100%;
  }
}

figure.news_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: 0.5s;
}
figure.news_img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
}
figure.news_img a:hover img {
  opacity: 0.85;
  transform: scale(1.1, 1.1);
}

figure.works_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: 0.5s;
}
figure.works_img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
}
figure.works_img a:hover img {
  opacity: 0.85;
  transform: scale(1.1, 1.1);
}
footer .container {
  position: relative;
}
footer .container::before {
  content: "";
  display: block;
  width: min(21%, 141px);
  height: auto;
  aspect-ratio: 61 / 77;
  background: url(../img/common/aopen01.svg) no-repeat bottom right / contain;
  position: absolute;
  bottom: min(4%, 52px);
  right: min(4%, 14px);
}
@media (max-width: 767px) {
  footer .container::before {
    top: 0px;
    bottom: auto;
  }
}
.store_name a {
  display: flex;
  align-items: center;
}
.store_name .logo_ico {
  width: clamp(48px, 2vw, 65px);
  margin-right: clamp(4px, 2vw, 8px);
  height: auto;
}
.store_name img {
  width: clamp(115px, 2vw, 145px);
  height: auto;
}
.ftr_logo a {
  display: flex;
  align-items: center;
}
.ftr_logo .logo_ico {
  width: clamp(50px, 8vw, 60px);
  margin-right: 0;
  height: auto;
}
.ftr_logo .logo_main {
  height: clamp(50px, 8vw, 60px);
}
@media (max-width: 600px) {
  .ftr_logo .logo_ico {
    margin-right: 0;
  }
}
.service-section {
  padding: 2em 1em;

  h2 {
    color: #2a4d7a;
    margin-bottom: 0.5em;
  }

  ul {
    margin: 1em 0;
    padding-left: 1.5em;

    &.notes {
      font-size: 0.95em;
      color: #666;
      list-style: disc;
      margin-top: 1em;
    }
  }

  strong {
    color: #d2691e;
    font-size: 1.1em;
  }

  @media (max-width: 600px) {
    padding: 1em 0.5em;
    margin: 1em 0;

    h2 {
      font-size: 1.2em;
    }
    ul,
    ul.notes {
      font-size: 0.98em;
    }
  }
}

@media (max-width: 768px) {
  .footer-contact-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
  }
  .footer-contact-btn {
    flex: 1;
    text-align: center;
    padding: 1em 0;
    font-size: 1.1em;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
  }
  .footer-contact-btn.tel {
    background: #008519;
  }
  .footer-contact-btn.form {
    background: var(--base-color01);
  }
  .footer-contact-btn:active {
    opacity: 0.8;
  }
  body {
    padding-bottom: 60px;
  }
}

.footer_inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.footer_col {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.footer_col--logo {
  justify-content: flex-start;
}

.footer_col--sns {
  justify-content: center;
}

.footer_col--blank {
  justify-content: flex-end;
}

.footer_sns {
  display: flex;
  gap: 16px;
  margin-left: 50px;
}

@media (max-width: 1200px) {
  .footer_sns {
    margin-left: 60px;
  }
}
@media (max-width: 890px) {
  .footer_sns {
    margin-left: 170px;
  }
}
@media (max-width: 767px) {
  .footer_sns {
    margin-left: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
  }
}
.footer_sns a {
  color: #fff;
  padding: 1em 2.5em;
  min-width: 180px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  transition: opacity 0.2s;
  background: #888;
}
.footer_sns a.instagram,
.footer_sns a.line {
  width: 100%;
  min-width: 200px;
  /* max-width: 50%; */
  padding: 1em 0.5em;
  text-align: center;
  box-sizing: border-box;
}

.footer_sns a.instagram {
  background: linear-gradient(
    90deg,
    #e6c200,
    #cc6a00,
    #c2005c,
    #a000a0,
    #5a2eb2
  );
}
.footer_sns a.line {
  background: linear-gradient(90deg, #059944, #2dbd5a, #008a00);
}
.footer_sns a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .footer_inner {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .footer_col {
    justify-content: left;
    margin-bottom: 8px;
  }
  .footer_col--logo,
  .footer_col--blank {
    justify-content: center;
  }
  .footer_sns a.instagram,
  .footer_sns a.line {
    width: 100%;
    min-width: 50%;
    padding: 1em;
  }

  .footer-contact-fixed.sp-only03 {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
  }
  .footer-contact-btn.sp-only03 {
    flex: 1;
    text-align: center;
    padding: 1em 0;
    font-size: 1.1em;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
  }
  .footer-contact-btn.tel.sp-only03 {
    background: #008519;
  }
  .footer-contact-btn.form.sp-only03 {
    background: var(--base-color01);
  }
  .footer-contact-btn:active.sp-only03 {
    opacity: 0.8;
  }
  body.sp-only03 {
    padding-bottom: 60px;
  }
}
.sp-only03 {
  display: none;
}

@media (max-width: 767px) {
  .sp-only03 {
    display: block;
  }
}

.notice_box {
  border-radius: 10px;
  padding: 1em 1.5em;
  margin: 1em 0;
  color: #222;
  text-align: center;

  .notice-inner {
    max-width: 700px;
    margin: 0 auto;

    p {
      &:nth-child(-n + 3) {
        font-weight: bold;
        color: #2360a7;
        font-size: clamp(1.1em, 2vw, 1.8em);
        position: relative;
        margin: 0;
      }
    }

    .notice-sign {
      font-weight: bold;
      color: #e67a2c;
      font-size: clamp(1.1em, 2vw, 1.8em);
      margin-bottom: 0.5em;
      letter-spacing: 0.05em;
    }
  }
}
@media (max-width: 767px) {
  .notice_box {
    border-radius: 10px;
    padding: 1em 0.5em;
    margin: 1em 0;
    color: #222;
  }
  p.notice-text {
    text-align: left;
  }
}

.footer_sns a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
}
.sns_icon {
  width: 1.3em;
  height: 1.3em;
  display: inline-block;
  vertical-align: middle;
}

p.txt_maintenance-timing {
  margin-bottom: 50px;
}

.maintenance-timing .flow_block .flow_box:not(:last-child):after {
  display: none !important;
  content: none !important;
}

/* 20250627 */
.text-orange {
  color: #e67a2c;
  font-weight: bold;
}
.insurance-case-list {
  margin: 1em 0 2em 1.5em;
  padding: 0;
  list-style: disc;
  color: #444;
  font-size: 1em;
  line-height: 1.8;
}
.insurance-case-list li {
  margin-bottom: 0.5em;
}
