@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: 30px 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 {
    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:hover {
  opacity: 0.7;
}

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

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

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: 10px;
}

/*: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;
  margin-top: 80px;
}

#pagetitle h1 {
  font-size: 4.4rem;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  #pagetitle {
    margin-top: 80px;
    height: 100px;
  }
  #pagetitle h1 {
    font-size: 3rem;
  }
}
.h2 {
  font-size: clamp(3.3rem, 3vw, 4.8rem);
  font-weight: 600;
  color: #555555;
  margin-bottom: 0.4em;
  line-height: 1.2;
}

.h2 .sub {
  font-size: 1.28rem;
  padding-left: 1em;
}

.h3 {
  color: var(--base-color01);
  font-size: clamp(2.2rem, 2vw, 2.8rem);
  font-weight: bold;
  padding-bottom: 15px;
  margin-bottom: clamp(15px, 2.6vw, 30px);
  border-bottom: 4px solid var(--base-color01);
}

.h2_A {
  position: relative;
  font-size: clamp(26px, 3.95vw, 38px);
  text-align: center;
  border-bottom: solid 1px var(--base-color01);
  font-weight: 400;
  padding-bottom: 10px;
  position: relative;
  color: var(--title-color);
  margin: 0 auto clamp(20px, 3.9vw, 65px);
}
.h2_A:after {
  content: "";
  width: clamp(150px, 26vw, 300px);
  height: 5px;
  background: var(--base-color01);
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 10px;
}

.h3_A {
  font-size: clamp(22px, 3.3vw, 28px);
  padding: 0 0 10px;
  margin: 0 0 clamp(15px, 2.6vw, 30px);
  border-bottom: solid 1px var(--base-color01);
  font-weight: 400;
  color: var(--title-color);
}

.h3_B, .h4_A {
  font-size: clamp(17px, 2.3vw, 20px);
  border-left: solid 3px var(--base-color01);
  padding: 0 0 0 15px;
  margin: 0 0 10px;
}

.h4 {
  font-size: clamp(20px, 3.1vw, 26px);
  font-weight: 700;
  margin-bottom: 10px;
}

.h4_B {
  font-size: clamp(17px, 2.3vw, 20px);
  padding: 5px 10px;
  margin: 0 0 10px;
  border: double 3px var(--title-color);
  display: table;
}

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

@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;
}
header .header_wrap {
  width: 100%;
  height: 80px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header .header_wrap .store_name {
  width: min(30%, 294px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: unset;
  margin: 0;
}
@media (min-width: 768px) {
  header .header_wrap {
    width: min(96%, 1130px);
  }
}

.hdr_right_container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0 32px;
}
.hdr_right_container .hdr_list {
  display: flex;
  gap: 15px;
}

.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;
  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;
  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%;
  background: var(--base-color01);
}
.navigation > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 50px;
  max-width: var(--container-width);
  margin: auto;
  list-style: none;
  justify-content: center;
}
.navigation > ul#page_link > li {
  width: 16.6666666667%;
  height: inherit;
  display: flex;
  align-items: center;
  position: relative;
}
.navigation > ul#page_link > li:after {
  content: "";
  display: block;
  width: 1px;
  height: 38px;
  background: var(--base-color02);
}
.navigation > ul#page_link > li.has-child {
  position: relative;
}
.navigation > ul#page_link > li.has-child > a {
  position: relative;
  padding-right: 0.5rem;
}
@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;
}

/*本体リンクありの場合の追加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;
}

.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;
  color: #fff;
  font-size: clamp(1.2rem, 1.4vw, 1.8rem);
}

.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;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
  display: flex;
  align-items: center;
}
header .header_wrap .store_name {
  width: 170px;
  margin-left: 10px;
}

.menu-btn {
  position: relative;
  display: flex;
  height: 80px;
  width: 80px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  color: var(--base-color01);
  cursor: pointer;
  background: var(--base-color01);
  color: #fff;
}

.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: #fff;
  position: absolute;
}

.menu-btn span.txt {
  position: absolute;
  bottom: 15px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
}

.menu-btn span.bar:before {
  top: -10px;
}

.menu-btn span.bar {
  top: 30px;
}

.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;
}
@media (min-width: 768px) {
  .navigation {
    top: 0;
    width: 470px;
    left: auto;
    right: -80%;
    padding-top: 100px;
    height: 100%;
  }
}

.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; /*メニューを画面内へ*/
}
@media (min-width: 768px) {
  #menu-btn-check:checked ~ .navigation {
    left: auto;
    right: 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 {
  width: 90%;
  text-align: center;
  max-height: unset;
  margin: 30px auto;
  display: block;
}

.phone_num a {
  color: #fff;
}

.phone_num p {
  font-size: 1.6rem;
  background: none;
  margin-top: 20px;
}

/***************************************
---------------- FOOTER ----------------
***************************************/
footer {
  position: relative;
  background: var(--footer-bg01);
  padding: clamp(40px, 5.2vw, 80px) 0 0;
}
footer .ftr_primary_block {
  padding: 0 0 clamp(30px, 5.2vw, 100px);
}
footer .ftr_info .list {
  color: #fff;
  font-weight: 700;
}
footer .ftr_info .list a {
  color: #fff;
}
footer .ftr_info .list .img-list {
  margin-top: 15px;
}
footer .img-list {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
footer .ftr_nav .ft_menu--block li:not(:last-child) {
  margin-bottom: 10px;
}
footer .ftr_nav .ft_menu--block > li .sub-menu {
  padding-left: 20px;
  margin-top: 10px;
}
footer .ftr_nav .ft_menu--block a {
  color: #fff;
  font-weight: 700;
  font-size: clamp(16px, 2.08vw, 18px);
}
@media (max-width: 767px) {
  footer {
    padding-bottom: 15vw;
  }
  footer .sp_wrap {
    display: flex;
    align-items: center;
    gap: 0 2%;
    margin-bottom: 15px;
  }
  footer .sp_wrap .ftr_logo, footer .sp_wrap .img-list {
    width: 49%;
  }
  footer .sp_wrap .img-list {
    gap: 10px;
  }
  footer .sp_wrap .bnr {
    width: 100px;
  }
  footer .list {
    margin: 0 auto;
    display: table;
  }
}
@media (min-width: 768px) {
  footer .ftr_logo {
    text-align: left;
  }
  footer .ftr_nav {
    display: flex;
    justify-content: space-between;
    gap: 20px 20px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  footer .ftr_info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  footer .ftr_nav, footer .ftr_info {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1000px) {
  footer .ftr_primary_block {
    display: grid;
    gap: 4%;
    grid-template-columns: 30% 66%;
  }
  footer .ftr_nav {
    justify-content: flex-end;
  }
}

.copyright {
  font-size: 1.4rem;
  margin: auto;
  padding: 10px;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .copyright {
    padding-bottom: 20px;
  }
}

/***************************************
-------------- 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;
  }
}
.text-large {
  font-size: clamp(18px, 2.6vw, 22px);
}

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

/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：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;
  }
}

/***************************************
-------------- 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;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99;
  bottom: 10px;
  color: #fff;
  text-align: center;
  background: var(--base-color01);
  width: clamp(40px, 6.5vw, 65px);
  height: clamp(40px, 6.5vw, 65px);
  border: solid 1px #fff;
  right: -100%;
  border-radius: 50%;
  margin-right: 10px;
}

#page_top a::before {
  content: "";
  width: 1px;
  height: 1px;
  border-right: clamp(7px, 1.3vw, 10px) solid transparent;
  border-bottom: clamp(7px, 1.3vw, 10px) solid #fff;
  border-left: clamp(7px, 1.3vw, 10px) solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#page_top a span {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

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

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

@media screen and (max-width: 767px) {
  #page_top a {
    bottom: 18vw;
  }
  #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;
  }
}
.cv_bnr_list {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
}
/***************************************
-------------- タブ式コンテンツ -----------
***************************************/
.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 {
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  font-weight: 700;
  color: #fff;
  background: var(--base-color01);
  min-width: 300px;
  display: inline-block;
  text-align: center;
  padding: clamp(12px, 1.9vw, 20px) 45px clamp(12px, 1.9vw, 20px) 30px;
  position: relative;
  transition: 0.2s;
  border-radius: 50px;
  line-height: 1.4;
}
.button:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/common/button_arrow.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}

.button:hover {
  opacity: 0.8;
}

/***************************************
-------------- ぱんくず -----------
***************************************/
.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;
}

/***************************************
-------------- おすすめの掃除時期 -----------
***************************************/
.season_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: clamp(12px, 1.8vw, 16px);
}
.season_table th,
.season_table td {
  padding: 15px 0;
}
.season_table thead {
  background: var(--base-color01);
  color: #fff;
}
.season_table thead th:first-child {
  width: clamp(90px, 19.5vw, 180px);
}
.season_table thead tr th:not(:last-child) {
  border-right: solid 1px #fff;
}
.season_table tbody th,
.season_table tbody td {
  border-bottom: solid 1px #fad391;
}
.season_table tbody tr th:not(:last-child),
.season_table tbody tr td:not(:last-child) {
  border-right: solid 1px var(--base-color01);
}
.season_table tbody td.start {
  position: relative;
}
.season_table tbody td.start:after {
  content: "";
  width: calc(100% - 8px);
  height: 3px;
  background: #3f3f3f;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.season_table tbody td.start:before {
  content: "";
  border-bottom: solid 3px #3f3f3f;
  border-left: solid 3px #3f3f3f;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  margin: auto;
  width: 13px;
  height: 13px;
}
.season_table tbody td.line {
  position: relative;
}
.season_table tbody td.line:after {
  content: "";
  width: calc(100% + 2px);
  height: 3px;
  background: #3f3f3f;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  left: -1px;
  margin: auto;
}
.season_table tbody td.end {
  position: relative;
}
.season_table tbody td.end:after {
  content: "";
  width: calc(100% - 8px);
  height: 3px;
  background: #3f3f3f;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.season_table tbody td.end:before {
  content: "";
  border-top: solid 3px #3f3f3f;
  border-right: solid 3px #3f3f3f;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
  width: 13px;
  height: 13px;
}
.season_table .bg_yellow th,
.season_table .bg_yellow td {
  background: #fff4bf;
}

table.table-default {
  width: 100%;
  border-collapse: collapse;
}
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: var(--base-color01);
  color: #fff;
}
table.table-default tbody td {
  background: #fff;
}
@media (max-width: 767px) {
  table.table-default th, table.table-default td {
    display: block;
    width: 100% !important;
  }
}

.faq_wrap {
  display: flex;
  flex-flow: column;
}
.faq_wrap:not(:last-child) {
  margin-bottom: 40px;
}
.faq_wrap .question {
  font-size: clamp(16px, 2.2vw, 18px);
  border-top: solid 2px #ffd846;
  padding: 10px 10px 10px 20px;
  margin: 0;
  display: flex;
  position: relative;
}
.faq_wrap .question .number {
  color: var(--base-color01);
  padding-right: 15px;
  display: inline-block;
}
.faq_wrap .answer {
  position: relative;
  padding: 30px;
  background: #fffcea;
}

.qa_active .question {
  cursor: pointer;
  padding-right: 40px;
}
.qa_active .question:after {
  content: "+";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 15px;
  right: 15px;
  transition: 0.3s;
  color: var(--base-color01);
}
.qa_active .question.open:after {
  transform: rotate(135deg);
  transition: 0.3s;
}
.qa_active .answer {
  display: none;
}

.price_txt {
  font-weight: 700;
  font-size: clamp(20px, 2.99vw, 24px);
  padding-left: 10px;
  margin-bottom: 10px;
}

ol + h4 {
  margin-top: 40px !important;
}

.section_bg {
  position: relative;
  padding: clamp(40px, 3.9vw, 50px) 0;
  z-index: 0;
}
.section_bg:before {
  content: "";
  background: rgba(255, 249, 175, 0.2);
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: -300%;
  right: -300%;
  margin: auto;
  z-index: -1;
}

ol {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
}
ol li {
  position: relative;
  padding-left: 25px;
}
ol li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: var(--base-color01);
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  width: 22px;
  color: #ffffff;
  font-size: 70%;
  line-height: 3;
  position: absolute;
  top: 2px;
  left: 0;
}

.ol_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.circle_list li {
  padding-left: 15px;
  position: relative;
  margin: 3px 0;
}
.circle_list li:before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--text-color);
  border-radius: 50%;
  position: absolute;
  top: 0.65em;
  left: 0;
}

/***************************************
-------------- ご利用の流れ -----------
***************************************/
.common_flow_parts {
  padding: clamp(40px, 7.8vw, 120px) 0;
  position: relative;
  z-index: 0;
}
.common_flow_parts:not(:last-child) {
  margin-bottom: clamp(40px, 7.8vw, 120px);
}
.common_flow_parts:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: linear-gradient(to right, #fffce8 0%, #fff4c0 100%);
  height: 100%;
  position: absolute;
  top: 0;
  left: -300%;
  right: -300%;
  margin: auto;
  z-index: -1;
}
.common_flow_parts .primary_block {
  margin-bottom: 40px;
}
.common_flow_parts .primary_block .step {
  background: #FA7D00;
  color: #fff;
  text-align: center;
  font-size: clamp(14px, 2.8vw, 24px);
  font-weight: 700;
  padding: 10px 5px;
  border-radius: 10px 10px 0 0;
  line-height: 1.4;
  margin: 0;
  font-family: "Roboto", sans-serif;
}
.common_flow_parts .primary_block .box {
  background: #fff;
  padding: 12px 12px 25px;
  border-radius: 0 0 10px 10px;
}
.common_flow_parts .primary_block .box p {
  letter-spacing: normal;
}
.common_flow_parts .primary_block h3 {
  text-align: center;
  margin: 0 auto 10px;
  font-size: clamp(16px, 2.3vw, 23px);
}
.common_flow_parts .primary_block .col:not(:last-child) {
  position: relative;
}
.common_flow_parts .primary_block .col:not(:last-child):after {
  content: "";
  position: absolute;
  margin: auto;
  width: clamp(18px, 3.125vw, 24px);
  height: clamp(16px, 2.73vw, 21px);
  background: url(../img/common/flow_arrow.png) no-repeat center/cover;
}
.common_flow_parts .secondary_block h3 {
  background: #FA7D00;
  color: #fff;
  text-align: center;
  font-size: clamp(20px, 3.38vw, 34px);
  font-weight: 500;
  margin: 0;
  padding: 12px 10px;
  line-height: 1.4;
  border-radius: 10px 10px 0 0;
}
.common_flow_parts .secondary_block h4 {
  background: #ff9700;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  border-radius: 5vw;
  margin: 0 auto clamp(10px, 3vw, 24px);
  padding: 10px 10px;
  font-size: clamp(11px, 2vw, 16px);
}
.common_flow_parts .secondary_block figure {
  margin-bottom: clamp(20px, 3vw, 24px);
}
.common_flow_parts .secondary_block .box {
  background: #fff;
  padding: 25px 10px clamp(25px, 5vw, 45px);
  border-radius: 0 0 10px 10px;
}
.common_flow_parts .secondary_block .box .wrap {
  max-width: 600px;
  width: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .common_flow_parts .col {
    display: flex;
    flex-wrap: wrap;
  }
  .common_flow_parts .col:not(:last-child) {
    margin-bottom: 40px;
  }
  .common_flow_parts .col:not(:last-child):after {
    left: 0;
    right: 0;
    top: 115%;
    transform: rotate(90deg);
  }
  .common_flow_parts .col .step {
    border-radius: 5px 0 0 5px;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .common_flow_parts .col .box {
    width: 75%;
    padding: 10px;
  }
  .common_flow_parts .col h3 {
    text-align: left;
    margin-bottom: 5px;
  }
  .common_flow_parts .col .txt_wrap {
    font-size: 12px;
  }
  .common_flow_parts .secondary_block figure img {
    width: 90%;
  }
}
@media (min-width: 768px) {
  .common_flow_parts .primary_block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 6%;
  }
  .common_flow_parts .primary_block .col {
    display: flex;
    flex-direction: column;
    width: 20.5%;
  }
  .common_flow_parts .primary_block .col:not(:last-child):after {
    top: 0;
    bottom: 0;
    left: 111%;
  }
  .common_flow_parts .primary_block .col .box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .common_flow_parts .primary_block .col .box h3, .common_flow_parts .primary_block .col .box .txt_wrap {
    flex-grow: 1;
  }
  .common_flow_parts .primary_block .col .box h3 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/***************************************
-------------- 対応エリア -----------
***************************************/
.common_area_parts {
  padding: clamp(40px, 7.8vw, 120px) 0;
}
.common_area_parts .txt_container h3 {
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 clamp(10px, 2vw, 25px);
  color: ;
}
.common_area_parts .txt_container .highlight {
  padding: clamp(15px, 1.9vw, 20px);
  background: #FFF4C5;
  border-radius: 25px;
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 10px;
}
.common_area_parts .txt_container .txt {
  font-size: clamp(14px, 2vw, 16px);
}
@media (max-width: 767px) {
  .common_area_parts .row {
    gap: 20px;
  }
  .common_area_parts .txt {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .common_area_parts .row {
    grid-template-columns: 38.8% 61.2%;
    gap: 10px 0;
    background: #FFFCEA;
  }
  .common_area_parts .col {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1224px) {
  .common_area_parts .row {
    grid-template-columns: 60% 40%;
  }
  .common_area_parts .row .txt_container {
    padding: 20px 0 20px 20px;
  }
}
@media (max-width: 767px) {
  .common_area_parts h3 {
    text-align: center;
  }
}
@media (min-width: 1225px) {
  .common_area_parts .txt_container {
    padding-left: 25px;
  }
}

/***************************************
-------------- 新着情報 -----------
***************************************/
.common_news_parts {
  padding: 0 0 clamp(40px, 7.8vw, 120px);
}
.common_news_parts dl {
  max-width: 768px;
  width: 100%;
  margin: auto;
  font-weight: 500;
}
.common_news_parts dl dt {
  padding-bottom: 5px;
  padding-top: 15px;
  font-size: 14px;
}
.common_news_parts dl dd {
  border-bottom: solid 1px #b2b2b2;
  padding-bottom: 15px;
}

/***************************************
--------------  -----------
***************************************/
.common_bnr_parts {
  padding: 0 0 clamp(40px, 7.8vw, 100px);
}
.common_bnr_parts .list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 1.334%;
}
.common_bnr_parts .list li {
  background: #fff;
  padding: clamp(5px, 1.3vw, 10px);
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
}
@media (min-width: 768px) {
  .common_bnr_parts .list li {
    width: 49.333%;
  }
}

/***************************************
-------------- お問い合わせ -----------
***************************************/
.common_contact_parts {
  padding: clamp(40px, 7.8vw, 120px) 0;
  background: #EFFEF2;
}
.common_contact_parts .primary_block {
  margin-bottom: clamp(20px, 3.9vw, 40px);
}
.common_contact_parts .primary_block p {
  font-size: clamp(18px, 4.4vw, 34px);
  display: table;
  margin: auto;
  position: relative;
}
.common_contact_parts .primary_block p:before {
  content: "";
  width: clamp(160px, 20.83vw, 210px);
  height: clamp(78px, 10.156vw, 103px);
  position: absolute;
  background: url(../img/common/free_txt.png) no-repeat center/cover;
  bottom: 100%;
  right: 82%;
}
.common_contact_parts .secondary_block {
  max-width: 840px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 4%;
}
.common_contact_parts .secondary_block .col {
  background: #fff;
  padding: 20px 15px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
}
.common_contact_parts .secondary_block h3 {
  font-size: clamp(17px, 2.3vw, 20px);
  padding-bottom: 15px;
  margin: 0 0 15px;
  border-bottom: solid 2px #b2b2b2;
}
.common_contact_parts .secondary_block h3 .ic {
  color: #636363;
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.common_contact_parts .secondary_block .txt_wrap {
  margin-bottom: clamp(10px, 1.3vw, 20px);
  font-size: clamp(13px, 2vw, 16px);
}
.common_contact_parts .secondary_block .btn {
  margin: 0;
}
.common_contact_parts .secondary_block .btn a {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(42px, 6.1vw, 52px);
  color: #fff;
  border-radius: 50px;
}
.common_contact_parts .secondary_block .btn a.line {
  background: linear-gradient(#01e069 0%, #00bf11 100%);
  box-shadow: 0 4px 0 #009304;
}
.common_contact_parts .secondary_block .btn a.tel {
  background: linear-gradient(#35afff 0%, #087efa 100%);
  box-shadow: 0 4px 0 #005cd3;
}
.common_contact_parts .secondary_block .btn a.mail {
  background: linear-gradient(#fdbd37 0%, #ff9f00 100%);
  box-shadow: 0 4px 0 #d07700;
}
.common_contact_parts .secondary_block .btn a:hover {
  box-shadow: none;
  transform: translateY(4px);
}
.common_contact_parts .secondary_block .line_box .txt_wrap {
  width: 82%;
}
.common_contact_parts .secondary_block .line_box .btn {
  position: relative;
}
.common_contact_parts .secondary_block .line_box .btn:after {
  content: "";
  width: 90px;
  height: 64px;
  background: url(../img/common/line_img.png) no-repeat center/cover;
  position: absolute;
  bottom: calc(100% - 1px);
  right: 0;
}
@media (max-width: 767px) {
  .common_contact_parts .primary_block p {
    margin-top: 100px;
  }
  .common_contact_parts .primary_block p:before {
    right: 0;
    left: 0;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .common_contact_parts .secondary_block .col {
    width: 48%;
  }
  .common_contact_parts .secondary_block .col.wide {
    width: 100%;
  }
  .common_contact_parts .secondary_block .col:not(.wide) {
    display: flex;
    flex-direction: column;
  }
  .common_contact_parts .secondary_block .col:not(.wide) .txt_wrap {
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 1.8vw, 16px);
  }
  .common_contact_parts .secondary_block .col:not(.wide) .btn {
    margin-top: auto;
  }
  .common_contact_parts .secondary_block .line_box .txt_wrap {
    width: 73%;
  }
  .common_contact_parts .secondary_block .line_box .btn {
    position: relative;
  }
  .common_contact_parts .secondary_block .line_box .btn:after {
    content: "";
    width: 211px;
    height: 150px;
  }
}

/***************************************
--------------  -----------
***************************************/
.common_company_parts {
  padding: clamp(40px, 7.8vw, 100px) 0;
}
.common_company_parts .head_list {
  display: flex;
  justify-content: center;
  gap: 10px 45px;
  margin-bottom: 20px;
}
.common_company_parts .container {
  max-width: 800px;
  width: 100%;
  margin: auto;
}
.common_company_parts .info_table {
  width: 100%;
  margin-bottom: clamp(15px, 3.2vw, 38px);
}
.common_company_parts .info_table th, .common_company_parts .info_table td {
  padding: 10px 0;
}
.common_company_parts .info_table th {
  width: 24%;
  text-align: left;
  font-weight: 700;
  border-bottom: solid 2px #FFD846;
}
.common_company_parts .info_table td {
  border-bottom: dotted 2px #FFD846;
}
.common_company_parts .map_container {
  position: relative;
  height: clamp(220px, 45.5vw, 400px);
}
.common_company_parts .map_container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .common_company_parts {
    padding-bottom: 0;
  }
  .common_company_parts .container {
    padding: 0;
  }
  .common_company_parts .sp_wrap {
    padding: 0 15px;
  }
  .common_company_parts .head_list {
    gap: 0 20px;
    width: 80%;
    margin: 0 auto 20px;
  }
  .common_company_parts .info_table th, .common_company_parts .info_table td {
    width: 100%;
    display: block;
    padding: 0;
  }
  .common_company_parts .info_table th {
    border-bottom: 0;
    padding-top: 5px;
  }
  .common_company_parts .info_table td {
    padding-bottom: 5px;
  }
}

body:not(.home) .common_news_parts {
  display: none;
}