@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;
  }
  .row.sp-3col {
    grid-template-columns: repeat(3, 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: max(1.25rem, min(1.25vw, 16px));
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 2.25;
  height: auto;
  overflow: hidden;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  body {
    font-size: clamp(1.25rem, min(3.7777777778vw, 28.9755555556px), 34px);
    line-height: 1.2941176471;
  }
}
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;
}

.ofi {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 75%;
}
.ofi.cover img {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
  font-family: "object-fit: cover;";
}

.ofi > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.fs12 {
  font-size: min(calc(12 / 1920 * 100vw * 4.5 / 3), 12px);
}

@media (max-width: 767px) {
  .sp-fs12 {
    font-size: min(12 / 900 * 100vw, 12px * 767 / 900);
  }
}
.fs13 {
  font-size: min(calc(13 / 1920 * 100vw * 4.5 / 3), 13px);
}

@media (max-width: 767px) {
  .sp-fs13 {
    font-size: min(13 / 900 * 100vw, 13px * 767 / 900);
  }
}
.fs14 {
  font-size: min(calc(14 / 1920 * 100vw * 4.5 / 3), 14px);
}

@media (max-width: 767px) {
  .sp-fs14 {
    font-size: min(14 / 900 * 100vw, 14px * 767 / 900);
  }
}
.fs15 {
  font-size: min(calc(15 / 1920 * 100vw * 4.5 / 3), 15px);
}

@media (max-width: 767px) {
  .sp-fs15 {
    font-size: min(15 / 900 * 100vw, 15px * 767 / 900);
  }
}
.fs16 {
  font-size: min(calc(16 / 1920 * 100vw * 4.5 / 3), 16px);
}

@media (max-width: 767px) {
  .sp-fs16 {
    font-size: min(16 / 900 * 100vw, 16px * 767 / 900);
  }
}
.fs17 {
  font-size: min(calc(17 / 1920 * 100vw * 4.5 / 3), 17px);
}

@media (max-width: 767px) {
  .sp-fs17 {
    font-size: min(17 / 900 * 100vw, 17px * 767 / 900);
  }
}
.fs18 {
  font-size: min(calc(18 / 1920 * 100vw * 4.5 / 3), 18px);
}

@media (max-width: 767px) {
  .sp-fs18 {
    font-size: min(18 / 900 * 100vw, 18px * 767 / 900);
  }
}
.fs19 {
  font-size: min(calc(19 / 1920 * 100vw * 4.5 / 3), 19px);
}

@media (max-width: 767px) {
  .sp-fs19 {
    font-size: min(19 / 900 * 100vw, 19px * 767 / 900);
  }
}
.fs20 {
  font-size: min(calc(20 / 1920 * 100vw * 4.5 / 3), 20px);
}

@media (max-width: 767px) {
  .sp-fs20 {
    font-size: min(20 / 900 * 100vw, 20px * 767 / 900);
  }
}
.fs21 {
  font-size: min(calc(21 / 1920 * 100vw * 4.5 / 3), 21px);
}

@media (max-width: 767px) {
  .sp-fs21 {
    font-size: min(21 / 900 * 100vw, 21px * 767 / 900);
  }
}
.fs22 {
  font-size: min(calc(22 / 1920 * 100vw * 4.5 / 3), 22px);
}

@media (max-width: 767px) {
  .sp-fs22 {
    font-size: min(22 / 900 * 100vw, 22px * 767 / 900);
  }
}
.fs23 {
  font-size: min(calc(23 / 1920 * 100vw * 4.5 / 3), 23px);
}

@media (max-width: 767px) {
  .sp-fs23 {
    font-size: min(23 / 900 * 100vw, 23px * 767 / 900);
  }
}
.fs24 {
  font-size: min(calc(24 / 1920 * 100vw * 4.5 / 3), 24px);
}

@media (max-width: 767px) {
  .sp-fs24 {
    font-size: min(24 / 900 * 100vw, 24px * 767 / 900);
  }
}
.fs25 {
  font-size: min(calc(25 / 1920 * 100vw * 4.5 / 3), 25px);
}

@media (max-width: 767px) {
  .sp-fs25 {
    font-size: min(25 / 900 * 100vw, 25px * 767 / 900);
  }
}
.fs26 {
  font-size: min(calc(26 / 1920 * 100vw * 4.5 / 3), 26px);
}

@media (max-width: 767px) {
  .sp-fs26 {
    font-size: min(26 / 900 * 100vw, 26px * 767 / 900);
  }
}
.fs27 {
  font-size: min(calc(27 / 1920 * 100vw * 4.5 / 3), 27px);
}

@media (max-width: 767px) {
  .sp-fs27 {
    font-size: min(27 / 900 * 100vw, 27px * 767 / 900);
  }
}
.fs28 {
  font-size: min(calc(28 / 1920 * 100vw * 4.5 / 3), 28px);
}

@media (max-width: 767px) {
  .sp-fs28 {
    font-size: min(28 / 900 * 100vw, 28px * 767 / 900);
  }
}
.fs29 {
  font-size: min(calc(29 / 1920 * 100vw * 4.5 / 3), 29px);
}

@media (max-width: 767px) {
  .sp-fs29 {
    font-size: min(29 / 900 * 100vw, 29px * 767 / 900);
  }
}
.fs30 {
  font-size: min(calc(30 / 1920 * 100vw * 4.5 / 3), 30px);
}

@media (max-width: 767px) {
  .sp-fs30 {
    font-size: min(30 / 900 * 100vw, 30px * 767 / 900);
  }
}
.fs31 {
  font-size: min(calc(31 / 1920 * 100vw * 4.5 / 3), 31px);
}

@media (max-width: 767px) {
  .sp-fs31 {
    font-size: min(31 / 900 * 100vw, 31px * 767 / 900);
  }
}
.fs32 {
  font-size: min(calc(32 / 1920 * 100vw * 4.5 / 3), 32px);
}

@media (max-width: 767px) {
  .sp-fs32 {
    font-size: min(32 / 900 * 100vw, 32px * 767 / 900);
  }
}
.fs33 {
  font-size: min(calc(33 / 1920 * 100vw * 4.5 / 3), 33px);
}

@media (max-width: 767px) {
  .sp-fs33 {
    font-size: min(33 / 900 * 100vw, 33px * 767 / 900);
  }
}
.fs34 {
  font-size: min(calc(34 / 1920 * 100vw * 4.5 / 3), 34px);
}

@media (max-width: 767px) {
  .sp-fs34 {
    font-size: min(34 / 900 * 100vw, 34px * 767 / 900);
  }
}
.fs35 {
  font-size: min(calc(35 / 1920 * 100vw * 4.5 / 3), 35px);
}

@media (max-width: 767px) {
  .sp-fs35 {
    font-size: min(35 / 900 * 100vw, 35px * 767 / 900);
  }
}
.fs36 {
  font-size: min(calc(36 / 1920 * 100vw * 4.5 / 3), 36px);
}

@media (max-width: 767px) {
  .sp-fs36 {
    font-size: min(36 / 900 * 100vw, 36px * 767 / 900);
  }
}
.fs37 {
  font-size: min(calc(37 / 1920 * 100vw * 4.5 / 3), 37px);
}

@media (max-width: 767px) {
  .sp-fs37 {
    font-size: min(37 / 900 * 100vw, 37px * 767 / 900);
  }
}
.fs38 {
  font-size: min(calc(38 / 1920 * 100vw * 4.5 / 3), 38px);
}

@media (max-width: 767px) {
  .sp-fs38 {
    font-size: min(38 / 900 * 100vw, 38px * 767 / 900);
  }
}
.fs39 {
  font-size: min(calc(39 / 1920 * 100vw * 4.5 / 3), 39px);
}

@media (max-width: 767px) {
  .sp-fs39 {
    font-size: min(39 / 900 * 100vw, 39px * 767 / 900);
  }
}
.fs40 {
  font-size: min(calc(40 / 1920 * 100vw * 4.5 / 3), 40px);
}

@media (max-width: 767px) {
  .sp-fs40 {
    font-size: min(40 / 900 * 100vw, 40px * 767 / 900);
  }
}
.fs41 {
  font-size: min(calc(41 / 1920 * 100vw * 4.5 / 3), 41px);
}

@media (max-width: 767px) {
  .sp-fs41 {
    font-size: min(41 / 900 * 100vw, 41px * 767 / 900);
  }
}
.fs42 {
  font-size: min(calc(42 / 1920 * 100vw * 4.5 / 3), 42px);
}

@media (max-width: 767px) {
  .sp-fs42 {
    font-size: min(42 / 900 * 100vw, 42px * 767 / 900);
  }
}
.fs43 {
  font-size: min(calc(43 / 1920 * 100vw * 4.5 / 3), 43px);
}

@media (max-width: 767px) {
  .sp-fs43 {
    font-size: min(43 / 900 * 100vw, 43px * 767 / 900);
  }
}
.fs44 {
  font-size: min(calc(44 / 1920 * 100vw * 4.5 / 3), 44px);
}

@media (max-width: 767px) {
  .sp-fs44 {
    font-size: min(44 / 900 * 100vw, 44px * 767 / 900);
  }
}
.fs45 {
  font-size: min(calc(45 / 1920 * 100vw * 4.5 / 3), 45px);
}

@media (max-width: 767px) {
  .sp-fs45 {
    font-size: min(45 / 900 * 100vw, 45px * 767 / 900);
  }
}
.fs46 {
  font-size: min(calc(46 / 1920 * 100vw * 4.5 / 3), 46px);
}

@media (max-width: 767px) {
  .sp-fs46 {
    font-size: min(46 / 900 * 100vw, 46px * 767 / 900);
  }
}
.fs47 {
  font-size: min(calc(47 / 1920 * 100vw * 4.5 / 3), 47px);
}

@media (max-width: 767px) {
  .sp-fs47 {
    font-size: min(47 / 900 * 100vw, 47px * 767 / 900);
  }
}
.fs48 {
  font-size: min(calc(48 / 1920 * 100vw * 4.5 / 3), 48px);
}

@media (max-width: 767px) {
  .sp-fs48 {
    font-size: min(48 / 900 * 100vw, 48px * 767 / 900);
  }
}
.fs49 {
  font-size: min(calc(49 / 1920 * 100vw * 4.5 / 3), 49px);
}

@media (max-width: 767px) {
  .sp-fs49 {
    font-size: min(49 / 900 * 100vw, 49px * 767 / 900);
  }
}
.fs50 {
  font-size: min(calc(50 / 1920 * 100vw * 4.5 / 3), 50px);
}

@media (max-width: 767px) {
  .sp-fs50 {
    font-size: min(50 / 900 * 100vw, 50px * 767 / 900);
  }
}
/***************************************
----------------- TITLE -----------------
***************************************/
#pagetitle {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: var(--base-color02);
  position: relative;
  z-index: 0;
}

@media (min-width: 768px) {
  #pagetitle:after {
    content: "";
    display: block;
    position: absolute;
    width: 45%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    margin: auto;
    background: url(../img/common/pagetitle.jpg) no-repeat center / cover;
    z-index: -1;
  }
}
@media (max-width: 767px) {
  #pagetitle {
    background: url(../img/common/sp_pagetitle.jpg) no-repeat center
      bottom/cover;
    margin-top: min(120 / 900 * 100vw, 120px * 767 / 900);
  }
}
#pagetitle .container {
  height: min(calc(305 / 1920 * 100vw * 4.5 / 3), 305px);
}
@media (min-width: 768px) {
  #pagetitle .container {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  #pagetitle .container {
    height: min(335 / 900 * 100vw, 335px * 767 / 900);
  }
}

#pagetitle h1 {
  text-align: left;
  color: var(--base-color01);
  font-size: max(1rem, min(calc(50 / 1920 * 100vw * 4.5 / 3), 50px));
  font-weight: bold;
  margin: 0;
}
@media (max-width: 767px) {
  #pagetitle h1 {
    text-align: center;
    font-size: clamp(1.25rem, min(70 / 900 * 100vw, 70px * 767 / 900), 70px);
    padding-top: 0.8em;
  }
}

.h2 {
  font-weight: bold;
  color: var(--base-color01);
  margin: 0;
  margin-bottom: 0.8em;
  padding-bottom: 0.5em;
  line-height: 1.2;
  font-size: max(1rem, min(calc(60 / 1920 * 100vw * 4.5 / 3), 60px));
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .h2 {
    font-size: clamp(1.25rem, min(60 / 900 * 100vw, 60px * 767 / 900), 60px);
  }
}
.h2:after {
  content: "";
  display: block;
  position: absolute;
  width: min(calc(100 / 1920 * 100vw * 4.5 / 3), 100px);
  height: min(calc(5 / 1920 * 100vw * 4.5 / 3), 5px);
  top: auto;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: var(--base-color01);
}
@media (max-width: 767px) {
  .h2:after {
    width: min(100 / 900 * 100vw, 100px * 767 / 900);
    height: min(5 / 900 * 100vw, 5px * 767 / 900);
  }
}
.h2 small {
  display: block;
  font-size: 0.4166666667em;
  color: var(--text-color);
  font-weight: normal;
  margin-bottom: 0.5em;
}
.h2.en_h2 {
  padding-bottom: 0;
}
.h2.en_h2 .en {
  display: block;
  font-size: 0.3333333333em;
  color: var(--text-color);
  font-weight: normal;
  font-family: var(--base-font-family);
  margin-top: 2.5em;
}
.h2.en_h2:after {
  bottom: 0.75em;
}

.h2_A {
  font-size: max(1rem, min(calc(40 / 1920 * 100vw * 4.5 / 3), 40px));
  margin: 0 0 0.3em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: bold;
  border-bottom: solid 1px;
  padding-bottom: 0.3em;
}

@media (max-width: 767px) {
  .h2_A {
    font-size: clamp(1.25rem, min(40 / 900 * 100vw, 40px * 767 / 900), 40px);
  }
}
.h3 {
  line-height: 1.5;
  font-size: max(1rem, min(calc(30 / 1920 * 100vw * 4.5 / 3), 30px));
  text-align: center;
  position: relative;
  margin: 0 0 1em;
  padding-bottom: 0.8em;
  color: var(--base-color01);
}
@media (max-width: 767px) {
  .h3 {
    font-size: clamp(1.25rem, min(46 / 900 * 100vw, 46px * 767 / 900), 46px);
  }
}
.h3:after {
  content: "";
  display: block;
  position: absolute;
  width: 2.6666666667em;
  height: 3px;
  top: auto;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: var(--base-color01);
}
.h3:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  top: auto;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #8fbee1;
}
.h3.text-left {
  text-align: left;
}
.h3.text-left:after {
  left: 0;
  right: auto;
}

.h4 {
  position: relative;
  font-size: max(1rem, min(calc(24 / 1920 * 100vw * 4.5 / 3), 24px));
  padding-left: 1em;
  margin: 0 auto 1em;
}
@media (max-width: 767px) {
  .h4 {
    font-size: clamp(1.25rem, min(40 / 900 * 100vw, 40px * 767 / 900), 40px);
  }
}
.h4:before {
  content: "";
  display: block;
  position: absolute;
  width: 0.3em;
  height: 1em;
  top: 0.1em;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  background: var(--base-color01);
}

/***************************************
---------------- HEADER ----------------
***************************************/
header {
  width: 100%;
  background: #fff;
}
header .header_wrap {
  width: min(96%, var(--container-width));
  height: min(calc(100 / 1920 * 100vw * 4.5 / 3), 100px);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  header .header_wrap {
    height: min(120 / 900 * 100vw, 120px * 767 / 900);
  }
}
header .header_wrap .store_name {
  width: min(23%, 225px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: unset;
  margin: 0;
}

.header_right {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: min(calc(20 / 1920 * 100vw * 4.5 / 3), 20px);
}

.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: #fff;
  border: 1px solid var(--base-color01);
  background: var(--base-color01);
  font-family: var(--title-font-family);
  font-weight: 500;
  text-align: center;
  padding: 1em 0.3em;
  line-height: 1;
  font-size: max(1rem, min(calc(16 / 1920 * 100vw * 4.5 / 3), 16px));
  width: min(calc(145 / 1920 * 100vw * 4.5 / 3), 145px);
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .hdr_contact_btn a {
    color: var(--base-color01) !important;
    background: #fff;
    padding: 1em;
    width: auto;
    font-size: clamp(1.25rem, min(34 / 900 * 100vw, 34px * 767 / 900), 34px);
  }
}
.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 > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 50px;
  max-width: var(--container-width);
  margin: auto;
  list-style: none;
  justify-content: center;
}
@media (min-width: 768px) {
  .navigation > ul {
    gap: 0.7em;
  }
}
.navigation > ul#page_link > li {
  height: inherit;
  display: flex;
  align-items: center;
  position: relative;
  flex: none;
}
.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;
}

@media (min-width: 768px) {
  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;
  color: var(--text-color);
  font-size: max(1rem, min(calc(16 / 1920 * 100vw * 4.5 / 3), 16px));
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .navigation ul#page_link li a {
    font-size: clamp(1.25rem, min(34 / 900 * 100vw, 34px * 767 / 900), 34px);
    color: #fff;
  }
}
.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: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: min(120 / 900 * 100vw, 120px * 767 / 900);
    z-index: 999;
    display: flex;
    align-items: center;
  }
  header .header_wrap {
    width: 100%;
  }
  header .header_wrap .store_name {
    width: min(330 / 900 * 100vw, 330px * 767 / 900);
    background: var(--base-color01);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header_wrap .store_name img {
    width: min(276 / 900 * 100vw, 276px * 767 / 900);
  }
  .menu-btn {
    position: fixed;
    top: min(16 / 900 * 100vw, 16px * 767 / 900);
    right: min(13 / 900 * 100vw, 13px * 767 / 900);
    display: flex;
    height: min(94 / 900 * 100vw, 94px * 767 / 900);
    width: min(94 / 900 * 100vw, 94px * 767 / 900);
    justify-content: center;
    align-items: center;
    z-index: 90;
    color: #fff;
    background: var(--base-color01);
    border-radius: 50%;
    cursor: pointer;
  }
  .menu-btn span.bar,
  .menu-btn span.bar:before,
  .menu-btn span.bar:after {
    content: "";
    display: block;
    height: min(4 / 900 * 100vw, 4px * 767 / 900);
    width: min(45 / 900 * 100vw, 45px * 767 / 900);
    background-color: #fff;
    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: calc(min(15 / 900 * 100vw, 15px * 767 / 900) * -1);
  }
  .menu-btn span.bar {
    top: min(46 / 900 * 100vw, 46px * 767 / 900);
  }
  .menu-btn span.bar:after {
    top: min(15 / 900 * 100vw, 15px * 767 / 900);
  }
  #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% - min(120 / 900 * 100vw, 120px * 767 / 900));
    position: fixed;
    top: min(120 / 900 * 100vw, 120px * 767 / 900);
    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: 0.8em 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 {
  position: relative;
}

.footer_bg {
  width: 100%;
  height: inherit;
  background: var(--footer-bg02);
  padding: min(calc(70 / 1920 * 100vw * 4.5 / 3), 70px) 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer_bg {
    padding: min(70 / 900 * 100vw, 70px * 767 / 900) 0;
    width: 100%;
    background-size: contain;
    background-position: bottom;
  }
}
.footer_bg .container {
  background-image: none;
}
@media (max-width: 767px) {
  .footer_bg .container {
    padding: 0 min(90 / 900 * 100vw, 90px * 767 / 900);
  }
}
@media (max-width: 767px) {
  .footer_bg .container .row {
    gap: min(80 / 900 * 100vw, 80px * 767 / 900);
  }
}
.footer_bg .border_wrap {
  border: solid 2px #fff;
  padding: min(calc(8 / 1920 * 100vw * 4.5 / 3), 8px)
    min(calc(12 / 1920 * 100vw * 4.5 / 3), 12px);
  margin-top: min(calc(16 / 1920 * 100vw * 4.5 / 3), 16px);
  display: table;
  text-align: center;
}
@media (max-width: 767px) {
  .footer_bg .border_wrap {
    margin: 0 auto;
    margin-top: min(50 / 900 * 100vw, 50px * 767 / 900);
    padding: min(16 / 900 * 100vw, 16px * 767 / 900)
      min(20 / 900 * 100vw, 20px * 767 / 900);
    border: solid 1px #fff;
    display: block;
  }
}
.footer_bg .border_wrap .tel_text .icon {
  font-size: max(1rem, min(calc(30 / 1920 * 100vw * 4.5 / 3), 30px));
}
@media (max-width: 767px) {
  .footer_bg .border_wrap .tel_text .icon {
    font-size: clamp(1.25rem, min(70 / 900 * 100vw, 70px * 767 / 900), 70px);
  }
}
.footer_bg .border_wrap .time_text {
  color: #fff;
  font-size: max(1rem, min(calc(13 / 1920 * 100vw * 4.5 / 3), 13px));
}
@media (max-width: 767px) {
  .footer_bg .border_wrap .time_text {
    font-size: clamp(1rem, min(3.3333333333vw, 25.5666666667px), 30px);
    margin-top: 0.5em;
  }
}
@media (max-width: 767px) {
  .footer_bg .border_wrap .time_text .time {
    font-size: 1em;
  }
}

.ft_logo {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .ft_logo {
    text-align: center;
  }
}
.ft_logo img {
  width: min(calc(276 / 1920 * 100vw * 4.5 / 3), 276px);
}
@media (max-width: 767px) {
  .ft_logo img {
    width: min(417 / 900 * 100vw, 417px * 767 / 900);
  }
}

@media (min-width: 768px) {
  .ft_menu--block {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .ft_menu--block li + li {
    margin-top: 0.8em;
  }
}
@media (min-width: 768px) {
  .ft_menu--block li {
    padding-right: 1.3em;
    margin-right: 1.3em;
    position: relative;
  }
  .ft_menu--block li:after {
    content: "|";
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.ft_menu--block li a {
  color: #fff;
}
.ft_menu--block li a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .ft_menu__menu04 {
    margin-top: 2.25em;
  }
}
.copyright {
  font-size: max(1rem, min(calc(15 / 1920 * 100vw * 4.5 / 3), 15px));
  margin: auto;
  padding: min(calc(40 / 1920 * 100vw * 4.5 / 3), 40px) 0;
  text-align: center;
  color: #fff;
  background: var(--footer-bg02);
  border-top: solid 2px #fff;
}
@media (max-width: 767px) {
  .copyright {
    font-size: clamp(1.25rem, min(30 / 900 * 100vw, 30px * 767 / 900), 30px);
    padding: min(25 / 900 * 100vw, 25px * 767 / 900) 0 16vw;
  }
}

.fixed_bnr {
  display: flex;
  position: fixed;
  bottom: min(20 / 900 * 100vw, 20px * 767 / 900);
  width: 100%;
  z-index: 10;
  gap: min(30 / 900 * 100vw, 30px * 767 / 900);
}
@media (min-width: 768px) {
  .fixed_bnr {
    display: none;
  }
}
.fixed_bnr li {
  width: 50%;
}
.fixed_bnr li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(84 / 900 * 100vw, 84px * 767 / 900);
  width: min(415 / 900 * 100vw, 415px * 767 / 900);
  border: solid 2px #fff;
  color: #fff;
  margin: 0 auto;
  border-radius: 50vw;
  font-weight: bold;
}
.fixed_bnr li a .icon {
  position: relative;
}
.fixed_bnr li a .icon:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
}
.fixed_bnr .telbnr {
  margin-right: 0;
  font-size: clamp(1.25rem, min(38 / 900 * 100vw, 38px * 767 / 900), 38px);
  background: linear-gradient(180deg, #29f19c 0%, #02a1f9 100%);
}
.fixed_bnr .telbnr .icon {
  padding-left: min(45 / 900 * 100vw, 45px * 767 / 900);
}
.fixed_bnr .telbnr .icon:before {
  content: "";
  width: 32px;
  height: 32px;
  max-width: 0.7111111111em;
  background: url(../img/common/icon_tel_wh.png) no-repeat center/contain;
}
.fixed_bnr .contactbnr {
  margin-left: 0;
  font-size: clamp(1.25rem, min(33 / 900 * 100vw, 33px * 767 / 900), 33px);
  background: linear-gradient(180deg, #fad126 0%, #ff544f 100%);
}
.fixed_bnr .contactbnr .icon {
  padding-left: min(55 / 900 * 100vw, 55px * 767 / 900);
}
.fixed_bnr .contactbnr .icon:before {
  content: "";
  width: 53px;
  height: 40px;
  max-width: 1.2727272727em;
  background: url(../img/common/icon_mail_wh.png) no-repeat center/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_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 (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 5.2222222222vw;
  }
}
@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;
  }
}
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .tablet-only {
    display: none;
  }
}
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767px */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
-------------- WEB FONT --------------
***************************************/
.gf-oswald {
  font-family: "Oswald", sans-serif;
}

/***************************************
-------------- STORE INFO --------------
***************************************/
.info_wrap dl {
  display: flex;
  flex-wrap: wrap;
  gap: 20px min(2%,20px);
  margin: 0;
}
.info_wrap dl:not(:last-of-type) {
 margin-bottom: min(2%,20px); 
}
.info_wrap dl dt,
.info_wrap dl dd {
  display: flex;
  align-items: center;
  justify-content: center;
}
.info_wrap dl dt {
  width: min(35%, 190px);
  flex-shrink: 0;
  background: var(--base-color01);
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: .25em 0 .4em;
}
.info_wrap dl dd {
  flex-grow: 1;
  word-break: break-all;
  justify-content: flex-start;
  line-height: 1.5;
}
.info_wrap a[href^="tel:"] {
  color: var(--color-text);
}




/***************************************
-------------- NEWS LIST --------------
***************************************/
.news-lists {
  display: grid;
  grid-template-columns: max-content 1fr;
}
@media (max-width: 767px) {
  .news-lists {
    grid-template-columns: 1fr;
  }
}
.news-lists dt {
  border-bottom: #dddee1 solid 2px;
  padding: 0.5em;
  color: var(--base-color01);
  font-weight: 500;
}
@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: #dddee1 solid 2px;
  padding: 0.5em;
}
.news-lists dd a {
  color: var(--color-text);
}

.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;
  margin-bottom: 1em;
}
.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: min(calc(470 / 1920 * 100vw * 4.5 / 3), 470px);
  vertical-align: bottom;
}
@media (max-width: 767px) {
  #store_info .gmap iframe {
    height: min(460 / 900 * 100vw, 460px * 767 / 900);
  }
}

/***************************************
-------------- 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: 0;
  color: #fff;
  text-align: center;
  background: var(--base-color01);
  width: 60px;
  height: 60px;
  border: solid 1px #fff;
  right: -100%;
}

#page_top a::before {
  content: "";
  width: 1px;
  height: 1px;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
  margin-bottom: 5px;
}

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

@media screen and (max-width: 767px) {
  #page_top a {
    bottom: 16vw;
  }
}
/***************************************
-------------- タブ式コンテンツ -----------
***************************************/
.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: max(1rem, min(calc(18 / 1920 * 100vw * 4.5 / 3), 18px));
  font-weight: bold;
  color: #fff;
  background: var(--base-color01);
  max-width: min(calc(320 / 1920 * 100vw * 4.5 / 3), 320px);
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 0.4em;
  position: relative;
  transition: 0.2s;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .button {
    max-width: min(600 / 900 * 100vw, 600px * 767 / 900);
    font-size: clamp(1.25rem, min(40 / 900 * 100vw, 40px * 767 / 900), 40px);
    border-radius: 4px;
    padding: 0.5em 0.4em 0.4em;
  }
}

.button::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 13%;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.2s;
}
@media (max-width: 767px) {
  .button::after {
    right: 10%;
  }
}

.button:hover {
  opacity: 0.8;
}

.button:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.button.small {
  font-size: 1.8rem;
  padding: 0.2em;
  max-width: 200px;
  width: 100%;
}

.button.small:after {
  right: 8px;
  width: 10px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 10px solid #fff;
}

.button.small:hover::after {
  right: 5px;
}

.button.color {
  background: var(--base-color03);
}

/***************************************
-------------- ぱんくず -----------
***************************************/
.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 -----------
***************************************/
.tel_text {
  color: #ffff99;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin: 0;
}
.tel_text .icon {
  font-size: max(1rem, min(calc(50 / 1920 * 100vw * 4.5 / 3), 50px));
  padding-left: 1em;
  position: relative;
}
@media (max-width: 767px) {
  .tel_text .icon {
    font-size: clamp(1.25rem, min(50 / 900 * 100vw, 50px * 767 / 900), 50px);
  }
}
.tel_text .icon:before {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0.2em;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  max-width: 0.8em;
  background: url(../img/common/icon_tel.png) no-repeat center/contain;
}

.time_text {
  text-align: center;
  line-height: 1;
  margin-top: 1em;
}
@media (max-width: 767px) {
  .time_text {
    font-size: clamp(0.5rem, min(2.2222222222vw, 17.0444444444px), 18px);
  }
}
.time_text .time {
  background: #fff;
  color: var(--base-color01);
  margin-right: 1em;
  display: inline-block;
  padding: 0.2em 1em;
}
@media (max-width: 767px) {
  .time_text .time {
    font-size: clamp(0.5rem, min(2vw, 15.34px), 18px);
  }
}

.sec_contact {
  padding: min(calc(100 / 1920 * 100vw * 4.5 / 3), 100px) 0;
  background: url(../img/common/bg_contact.jpg) no-repeat center/cover;
  color: #fff;
}
@media (max-width: 767px) {
  .sec_contact {
    padding: min(80 / 900 * 100vw, 80px * 767 / 900) 0;
    background: url(../img/common/sp_bg_contact.jpg) no-repeat center/cover;
  }
}
.sec_contact .h2 {
  color: #fff;
}
.sec_contact .h2:after {
  background: #fff;
}
.sec_contact .h2 .en {
  color: #fff;
}
.sec_contact .lead {
  font-size: max(1rem, min(calc(20 / 1920 * 100vw * 4.5 / 3), 20px));
}
@media (max-width: 767px) {
  .sec_contact .lead {
    font-size: clamp(1.25rem, min(34 / 900 * 100vw, 34px * 767 / 900), 34px);
  }
}
.sec_contact .lead2 {
  font-size: max(1.2rem, min(calc(25 / 1920 * 100vw * 4.5 / 3), 25px));
  line-height: 1.4;
}
@media (max-width: 767px) {
  .sec_contact .lead2 {
    font-size: clamp(1.2rem, min(2.7777777778vw, 21.3055555556px), 25px);
  }
}
.sec_contact .marker {
  background: #ffff99;
  font-weight: bold;
  font-size: max(1rem, min(calc(30 / 1920 * 100vw * 4.5 / 3), 30px));
  display: inline-block;
  line-height: 1.8;
  width: min(calc(540 / 1920 * 100vw * 4.5 / 3), 540px);
  margin-bottom: 0.5em;
  color: var(--base-color01);
}
@media (max-width: 767px) {
  .sec_contact .marker {
    font-size: clamp(1.25rem, min(30 / 900 * 100vw, 30px * 767 / 900), 30px);
    width: min(540 / 900 * 100vw, 540px * 767 / 900);
    margin-bottom: 0;
  }
}
.sec_contact .contact_list {
  display: flex;
  gap: min(calc(45 / 1920 * 100vw * 4.5 / 3), 45px);
  margin-top: min(calc(45 / 1920 * 100vw * 4.5 / 3), 45px);
}
@media (max-width: 767px) {
  .sec_contact .contact_list {
    gap: min(40 / 900 * 100vw, 40px * 767 / 900);
    margin-top: min(35 / 900 * 100vw, 35px * 767 / 900);
    flex-direction: column;
  }
}
.sec_contact .contact_list li {
  width: calc(50% - min(calc(22.5 / 1920 * 100vw * 4.5 / 3), 22.5px));
}
@media (max-width: 767px) {
  .sec_contact .contact_list li {
    width: 100%;
  }
}
.sec_contact .link_bnr {
  border: solid 3px #fff;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--base-color01);
  text-decoration: none;
  color: #fff;
}
@media (max-width: 767px) {
  .sec_contact .link_bnr {
    flex-direction: row;
  }
}
.sec_contact .link_bnr .bg_wrap {
  padding: 0 min(calc(40 / 1920 * 100vw * 4.5 / 3), 40px);
  height: min(calc(130 / 1920 * 100vw * 4.5 / 3), 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .sec_contact .link_bnr .bg_wrap {
    height: min(130 / 900 * 100vw, 130px * 767 / 900);
    padding: 0 min(40 / 900 * 100vw, 40px * 767 / 900);
    flex: 1;
  }
}
.sec_contact .contact_ttl {
  background: #fff;
  text-align: center;
  margin: 0;
  padding: 0.1em 0;
  font-size: max(1rem, min(calc(24 / 1920 * 100vw * 4.5 / 3), 24px));
  color: var(--base-color01);
}
@media (max-width: 767px) {
  .sec_contact .contact_ttl {
    font-size: clamp(1.25rem, min(24 / 900 * 100vw, 24px * 767 / 900), 24px);
    width: min(185 / 900 * 100vw, 185px * 767 / 900);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.sec_contact .contact_mail .link_bnr {
  background: #f83600;
}
.sec_contact .contact_mail .contact_ttl {
  color: #fe6a48;
}
.sec_contact .mail_text {
  line-height: 1;
  font-weight: bold;
  font-size: max(1rem, min(calc(40 / 1920 * 100vw * 4.5 / 3), 40px));
  margin: 0;
}
@media (max-width: 767px) {
  .sec_contact .mail_text {
    font-size: clamp(1.25rem, min(40 / 900 * 100vw, 40px * 767 / 900), 40px);
  }
}
.sec_contact .mail_text .icon {
  padding-left: 1.5em;
  position: relative;
}
.sec_contact .mail_text .icon:before {
  content: "";
  display: block;
  position: absolute;
  width: 53px;
  height: 40px;
  top: 0.1em;
  bottom: 0;
  right: auto;
  left: 0;
  margin: auto;
  max-width: 1.325em;
  background: url(../img/common/icon_mail_wh.png) no-repeat center/contain;
}
.sec_contact .mail_time_text {
  background: #fff;
  color: var(--text-color);
  display: block;
  text-align: center;
  width: 100%;
  line-height: 1;
  padding: 0.3em 0;
  margin-top: 1em;
}
@media (max-width: 767px) {
  .sec_contact .mail_time_text {
    font-size: clamp(0.5rem, min(2.4444444444vw, 18.7488888889px), 18px);
    max-width: calc(min(40 / 900 * 100vw, 40px * 767 / 900) * 8);
    margin-left: calc(min(40 / 900 * 100vw, 40px * 767 / 900) * 1.5);
  }
}

.sec_profile {
  margin: min(calc(100 / 1920 * 100vw * 4.5 / 3), 100px) 0;
}
@media (max-width: 767px) {
  .sec_profile {
    margin: min(80 / 900 * 100vw, 80px * 767 / 900) 0;
  }
}
.sec_profile .row {
  gap: min(calc(25 / 1920 * 100vw * 4.5 / 3), 25px);
}
@media (max-width: 767px) {
  .sec_profile .row {
    gap: min(25 / 900 * 100vw, 25px * 767 / 900);
  }
}
.sec_profile .name_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: max(1rem, min(calc(21 / 1920 * 100vw * 4.5 / 3), 21px));
  font-weight: 500;
  gap: min(calc(10 / 1920 * 100vw * 4.5 / 3), 10px);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .sec_profile .name_text {
    gap: min(10 / 900 * 100vw, 10px * 767 / 900);
    font-size: clamp(1.25rem, min(36 / 900 * 100vw, 36px * 767 / 900), 36px);
  }
}
.sec_profile .name_text .name {
  width: min(calc(227 / 1920 * 100vw * 4.5 / 3), 227px);
}
@media (max-width: 767px) {
  .sec_profile .name_text .name {
    width: min(400 / 900 * 100vw, 400px * 767 / 900);
  }
}

.sec_overview {
  margin: min(calc(100 / 1920 * 100vw * 4.5 / 3), 100px) 0;
}
@media (max-width: 767px) {
  .sec_overview {
    margin: min(80 / 900 * 100vw, 80px * 767 / 900) 0;
  }
}
.sec_overview .row {
  gap: min(calc(50 / 1920 * 100vw * 4.5 / 3), 50px);
}
@media (max-width: 767px) {
  .sec_overview .row {
    gap: min(50 / 900 * 100vw, 50px * 767 / 900);
  }
}
@media (max-width: 767px) {
  .sec_overview img {
    width: min(554 / 900 * 100vw, 554px * 767 / 900);
  }
}

.sec_column .row {
  display: flex;
  gap: min(calc(20 / 1920 * 100vw * 4.5 / 3), 20px);
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .sec_column .row {
    gap: min(20 / 900 * 100vw, 20px * 767 / 900);
  }
}
.sec_column .col-4 {
  box-shadow: 1px 2px 5px rgba(51, 51, 51, 0.46);
  display: flex;
  flex-direction: column;
  width: calc((100% - min(calc(40 / 1920 * 100vw * 4.5 / 3), 40px)) / 3);
}
@media (max-width: 767px) {
  .sec_column .col-4 {
    width: calc((100% - min(20 / 900 * 100vw, 20px * 767 / 900)) / 2);
  }
}
@media (min-width: 768px) {
  .sec_column .col-4:nth-child(4) {
    display: none;
  }
}
.sec_column .ofi {
  padding-top: 50%;
}
@media (max-width: 767px) {
  .sec_column .ofi {
    padding-top: 75%;
  }
}
.sec_column .text_wrap {
  padding: min(calc(20 / 1920 * 100vw * 4.5 / 3), 20px);
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .sec_column .text_wrap {
    padding: min(20 / 900 * 100vw, 20px * 767 / 900);
  }
}
.sec_column .text_wrap .text_inner {
  flex: 1;
  margin-bottom: 1em;
}
.sec_column .title {
  font-size: max(1rem, min(calc(20 / 1920 * 100vw * 4.5 / 3), 20px));
  font-weight: bold;
  color: var(--base-color01);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .sec_column .title {
    font-size: clamp(1.25rem, min(30 / 900 * 100vw, 30px * 767 / 900), 30px);
    line-height: 1.1666666667;
  }
}
.sec_column .date {
  color: #fff;
  background: var(--base-color01);
  display: table;
  padding: 0 0.5em;
  line-height: 1.8;
  margin-left: auto;
  font-weight: bold;
}
@media (max-width: 767px) {
  .sec_column .date {
    font-size: clamp(1.25rem, min(20 / 900 * 100vw, 20px * 767 / 900), 20px);
  }
}
.sec_column .disc {
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0;
  font-size: max(1rem, min(calc(16 / 1920 * 100vw * 4.5 / 3), 16px));
}
@media (max-width: 767px) {
  .sec_column .disc {
    font-size: clamp(1.25rem, min(25 / 900 * 100vw, 25px * 767 / 900), 25px);
    line-height: 1.4;
  }
}
.sec_column .link_btn {
  color: var(--base-color01);
  font-size: max(1rem, min(calc(18 / 1920 * 100vw * 4.5 / 3), 18px));
  border: solid 2px var(--base-color01);
  padding: 0 1em 0.1em 0.8em;
  line-height: 1.8;
  position: relative;
  display: inline-block;
}
@media (max-width: 767px) {
  .sec_column .link_btn {
    font-size: clamp(1.25rem, min(25 / 900 * 100vw, 25px * 767 / 900), 25px);
  }
}
.sec_column .link_btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 54%;
  right: 5%;
  margin: auto;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid var(--base-color01);
  border-right: 2px solid var(--base-color01);
  transform: translate(0, -50%) rotate(45deg);
  transition: 0.2s;
}
