@charset "UTF-8";
:root {
  --color: #000;
  --primary: #044223;
  --success: #988057;
  --red: #e73828;
}

/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the line height in all browsers.
3. Prevent adjustments of font size after orientation changes in iOS.
4. Use a more readable tab size (opinionated).
*/
html {
  font-family: system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  tab-size: 4;
  /* 4 */
}

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

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

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, 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;
}

/*
Tabular data
============
*/
/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  border-color: currentcolor;
}

/*
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 */
}

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

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

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

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-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.
*/
::-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 Chrome and Safari.
*/
summary {
  display: list-item;
}

/* -------------------------------
	default
-------------------------------- */
:root {
  --app-h: 100vh;
  --app-w: 100vw;
  --anchor-offset: 50px;
}

@supports (height: 100dvh) {
  :root {
    --app-h: 100dvh;
    --app-w: 100dvw;
  }
}
@media print, screen and (min-width: 992px) {
  :root {
    --anchor-offset: 100px;
  }
}
html {
  font-size: 16px;
}
@media print, screen and (min-width: 1200px) {
  html {
    font-size: min(calc(16px + 2 * (100vw - 1200px) / 200), 18px);
  }
}

body {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 2;
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

/* -------------------------------
	見出しタグ調整
-------------------------------- */
h1, .h1 {
  font-size: 1.9rem;
  /* 30px相当 */
}

h2, .h2 {
  font-size: 1.69rem;
  /* 27px相当 */
}

h3, .h3 {
  font-size: 1.5rem;
  /* 24px相当 */
}

h4, .h4 {
  font-size: 1.33rem;
  /* 21px相当 */
}

h5, .h5 {
  font-size: 1.19rem;
  /* 19px相当 */
}

h6, .h6 {
  font-size: 1.05rem;
  /* 17px相当 */
}

@media screen and (min-width: 768px) {
  h1, .h1 {
    font-size: 2.21rem;
    /* 35px相当 */
  }

  h2, .h2 {
    font-size: 1.97rem;
    /* 32px相当 */
  }

  h3, .h3 {
    font-size: 1.75rem;
    /* 28px相当 */
  }

  h4, .h4 {
    font-size: 1.56rem;
    /* 25px相当 */
  }

  h5, .h5 {
    font-size: 1.38rem;
    /* 22px相当 */
  }

  h6, .h6 {
    font-size: 1.23rem;
    /* 20px相当 */
  }
}
@media screen and (min-width: 992px) {
  h1, .h1 {
    font-size: 2.37rem;
    /* 38px相当 */
  }

  h2, .h2 {
    font-size: 2.11rem;
    /* 34px相当 */
  }

  h3, .h3 {
    font-size: 1.88rem;
    /* 30px相当 */
  }

  h4, .h4 {
    font-size: 1.67rem;
    /* 27px相当 */
  }

  h5, .h5 {
    font-size: 1.48rem;
    /* 24px相当 */
  }

  h6, .h6 {
    font-size: 1.32rem;
    /* 21px相当 */
  }
}
@media screen and (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.53rem;
    /* 40px相当 */
  }

  h2, .h2 {
    font-size: 2.25rem;
    /* 36px相当 */
  }

  h3, .h3 {
    font-size: 2rem;
    /* 32px相当 */
  }

  h4, .h4 {
    font-size: 1.78rem;
    /* 28px相当 */
  }

  h5, .h5 {
    font-size: 1.58rem;
    /* 25px相当 */
  }

  h6, .h6 {
    font-size: 1.4rem;
    /* 22px相当 */
  }
}
h2, h3, h4, h5, h6, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 600;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 2rem;
}

p, ol, ul, dl, table {
  margin-bottom: 1rem;
}
p + h3, p + h4, p + h5, p + h6, ol + h3, ol + h4, ol + h5, ol + h6, ul + h3, ul + h4, ul + h5, ul + h6, dl + h3, dl + h4, dl + h5, dl + h6, table + h3, table + h4, table + h5, table + h6 {
  margin-top: 2rem;
}
p:last-child, ol:last-child, ul:last-child, dl:last-child, table:last-child {
  margin-bottom: 0;
}

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

ul {
  padding-left: 1.5em;
}

ol {
  padding-left: 2em;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

/* -------------------------------
	グリッド
-------------------------------- */
.container {
  max-width: 1500px;
  width: 100%;
  padding-left: calc(15px + 83 * (100vw - 320px) / 1180);
  padding-right: calc(15px + 83 * (100vw - 320px) / 1180);
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 1500px) {
  .container {
    padding-left: 98px;
    padding-right: 98px;
  }
}

.container-fluid {
  margin: 0 auto;
  padding: 0 15px;
}

/* -------------------------------
	display
-------------------------------- */
.d-none {
  display: none !important;
}

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

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

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

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media print, screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

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

  .d-sm-block {
    display: block !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media print, screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

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

  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media print, screen and (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

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

  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

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

  .d-xl-block {
    display: block !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print, screen and (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

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

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
/* -------------------------------
	text-align
-------------------------------- */
.text-left {
  text-align: left !important;
}

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

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

.text-justify {
  text-align: justify !important;
}

.text-start {
  text-align: start !important;
}

.text-end {
  text-align: end !important;
}

@media print, screen and (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }

  .text-sm-justify {
    text-align: justify !important;
  }

  .text-sm-start {
    text-align: start !important;
  }

  .text-sm-end {
    text-align: end !important;
  }
}
@media print, screen and (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }

  .text-md-justify {
    text-align: justify !important;
  }

  .text-md-start {
    text-align: start !important;
  }

  .text-md-end {
    text-align: end !important;
  }
}
@media print, screen and (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }

  .text-lg-justify {
    text-align: justify !important;
  }

  .text-lg-start {
    text-align: start !important;
  }

  .text-lg-end {
    text-align: end !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }

  .text-xl-justify {
    text-align: justify !important;
  }

  .text-xl-start {
    text-align: start !important;
  }

  .text-xl-end {
    text-align: end !important;
  }
}
@media print, screen and (min-width: 1400px) {
  .text-xxl-left {
    text-align: left !important;
  }

  .text-xxl-right {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }

  .text-xxl-justify {
    text-align: justify !important;
  }

  .text-xxl-start {
    text-align: start !important;
  }

  .text-xxl-end {
    text-align: end !important;
  }
}
/* -------------------------------
	マージンとパディングクラス
-------------------------------- */
.m-0 {
  margin: 0 !important;
}

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

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

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

@media print, screen and (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

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

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

  .ml-sm-0 {
    margin-left: 0 !important;
  }

  .mr-sm-0 {
    margin-right: 0 !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0 {
    padding-left: 0 !important;
  }

  .pr-sm-0 {
    padding-right: 0 !important;
  }
}
@media print, screen and (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

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

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

  .ml-md-0 {
    margin-left: 0 !important;
  }

  .mr-md-0 {
    margin-right: 0 !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0 {
    padding-left: 0 !important;
  }

  .pr-md-0 {
    padding-right: 0 !important;
  }
}
@media print, screen and (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

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

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

  .ml-lg-0 {
    margin-left: 0 !important;
  }

  .mr-lg-0 {
    margin-right: 0 !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0 {
    padding-left: 0 !important;
  }

  .pr-lg-0 {
    padding-right: 0 !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

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

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

  .ml-xl-0 {
    margin-left: 0 !important;
  }

  .mr-xl-0 {
    margin-right: 0 !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0 {
    padding-left: 0 !important;
  }

  .pr-xl-0 {
    padding-right: 0 !important;
  }
}
@media print, screen and (min-width: 1400px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

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

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

  .ml-xxl-0 {
    margin-left: 0 !important;
  }

  .mr-xxl-0 {
    margin-right: 0 !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xxl-0 {
    padding-left: 0 !important;
  }

  .pr-xxl-0 {
    padding-right: 0 !important;
  }
}
.m-1 {
  margin: 0.5rem !important;
}

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

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

.ml-1 {
  margin-left: 0.5rem !important;
}

.mr-1 {
  margin-right: 0.5rem !important;
}

.p-1 {
  padding: 0.5rem !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.pl-1 {
  padding-left: 0.5rem !important;
}

.pr-1 {
  padding-right: 0.5rem !important;
}

@media print, screen and (min-width: 576px) {
  .m-sm-1 {
    margin: 0.5rem !important;
  }

  .mt-sm-1 {
    margin-top: 0.5rem !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-1 {
    margin-left: 0.5rem !important;
  }

  .mr-sm-1 {
    margin-right: 0.5rem !important;
  }

  .p-sm-1 {
    padding: 0.5rem !important;
  }

  .pt-sm-1 {
    padding-top: 0.5rem !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-1 {
    padding-left: 0.5rem !important;
  }

  .pr-sm-1 {
    padding-right: 0.5rem !important;
  }
}
@media print, screen and (min-width: 768px) {
  .m-md-1 {
    margin: 0.5rem !important;
  }

  .mt-md-1 {
    margin-top: 0.5rem !important;
  }

  .mb-md-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-1 {
    margin-left: 0.5rem !important;
  }

  .mr-md-1 {
    margin-right: 0.5rem !important;
  }

  .p-md-1 {
    padding: 0.5rem !important;
  }

  .pt-md-1 {
    padding-top: 0.5rem !important;
  }

  .pb-md-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-1 {
    padding-left: 0.5rem !important;
  }

  .pr-md-1 {
    padding-right: 0.5rem !important;
  }
}
@media print, screen and (min-width: 992px) {
  .m-lg-1 {
    margin: 0.5rem !important;
  }

  .mt-lg-1 {
    margin-top: 0.5rem !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-1 {
    margin-left: 0.5rem !important;
  }

  .mr-lg-1 {
    margin-right: 0.5rem !important;
  }

  .p-lg-1 {
    padding: 0.5rem !important;
  }

  .pt-lg-1 {
    padding-top: 0.5rem !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-1 {
    padding-left: 0.5rem !important;
  }

  .pr-lg-1 {
    padding-right: 0.5rem !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .m-xl-1 {
    margin: 0.5rem !important;
  }

  .mt-xl-1 {
    margin-top: 0.5rem !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-1 {
    margin-left: 0.5rem !important;
  }

  .mr-xl-1 {
    margin-right: 0.5rem !important;
  }

  .p-xl-1 {
    padding: 0.5rem !important;
  }

  .pt-xl-1 {
    padding-top: 0.5rem !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-1 {
    padding-left: 0.5rem !important;
  }

  .pr-xl-1 {
    padding-right: 0.5rem !important;
  }
}
@media print, screen and (min-width: 1400px) {
  .m-xxl-1 {
    margin: 0.5rem !important;
  }

  .mt-xxl-1 {
    margin-top: 0.5rem !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xxl-1 {
    margin-left: 0.5rem !important;
  }

  .mr-xxl-1 {
    margin-right: 0.5rem !important;
  }

  .p-xxl-1 {
    padding: 0.5rem !important;
  }

  .pt-xxl-1 {
    padding-top: 0.5rem !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xxl-1 {
    padding-left: 0.5rem !important;
  }

  .pr-xxl-1 {
    padding-right: 0.5rem !important;
  }
}
.m-2 {
  margin: 1rem !important;
}

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

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

.ml-2 {
  margin-left: 1rem !important;
}

.mr-2 {
  margin-right: 1rem !important;
}

.p-2 {
  padding: 1rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.pl-2 {
  padding-left: 1rem !important;
}

.pr-2 {
  padding-right: 1rem !important;
}

@media print, screen and (min-width: 576px) {
  .m-sm-2 {
    margin: 1rem !important;
  }

  .mt-sm-2 {
    margin-top: 1rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-2 {
    margin-left: 1rem !important;
  }

  .mr-sm-2 {
    margin-right: 1rem !important;
  }

  .p-sm-2 {
    padding: 1rem !important;
  }

  .pt-sm-2 {
    padding-top: 1rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-2 {
    padding-left: 1rem !important;
  }

  .pr-sm-2 {
    padding-right: 1rem !important;
  }
}
@media print, screen and (min-width: 768px) {
  .m-md-2 {
    margin: 1rem !important;
  }

  .mt-md-2 {
    margin-top: 1rem !important;
  }

  .mb-md-2 {
    margin-bottom: 1rem !important;
  }

  .ml-md-2 {
    margin-left: 1rem !important;
  }

  .mr-md-2 {
    margin-right: 1rem !important;
  }

  .p-md-2 {
    padding: 1rem !important;
  }

  .pt-md-2 {
    padding-top: 1rem !important;
  }

  .pb-md-2 {
    padding-bottom: 1rem !important;
  }

  .pl-md-2 {
    padding-left: 1rem !important;
  }

  .pr-md-2 {
    padding-right: 1rem !important;
  }
}
@media print, screen and (min-width: 992px) {
  .m-lg-2 {
    margin: 1rem !important;
  }

  .mt-lg-2 {
    margin-top: 1rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-2 {
    margin-left: 1rem !important;
  }

  .mr-lg-2 {
    margin-right: 1rem !important;
  }

  .p-lg-2 {
    padding: 1rem !important;
  }

  .pt-lg-2 {
    padding-top: 1rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-2 {
    padding-left: 1rem !important;
  }

  .pr-lg-2 {
    padding-right: 1rem !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .m-xl-2 {
    margin: 1rem !important;
  }

  .mt-xl-2 {
    margin-top: 1rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-2 {
    margin-left: 1rem !important;
  }

  .mr-xl-2 {
    margin-right: 1rem !important;
  }

  .p-xl-2 {
    padding: 1rem !important;
  }

  .pt-xl-2 {
    padding-top: 1rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-2 {
    padding-left: 1rem !important;
  }

  .pr-xl-2 {
    padding-right: 1rem !important;
  }
}
@media print, screen and (min-width: 1400px) {
  .m-xxl-2 {
    margin: 1rem !important;
  }

  .mt-xxl-2 {
    margin-top: 1rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 1rem !important;
  }

  .ml-xxl-2 {
    margin-left: 1rem !important;
  }

  .mr-xxl-2 {
    margin-right: 1rem !important;
  }

  .p-xxl-2 {
    padding: 1rem !important;
  }

  .pt-xxl-2 {
    padding-top: 1rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 1rem !important;
  }

  .pl-xxl-2 {
    padding-left: 1rem !important;
  }

  .pr-xxl-2 {
    padding-right: 1rem !important;
  }
}
.m-3 {
  margin: 1.5rem !important;
}

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

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

.ml-3 {
  margin-left: 1.5rem !important;
}

.mr-3 {
  margin-right: 1.5rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.pl-3 {
  padding-left: 1.5rem !important;
}

.pr-3 {
  padding-right: 1.5rem !important;
}

@media print, screen and (min-width: 576px) {
  .m-sm-3 {
    margin: 1.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-3 {
    margin-left: 1.5rem !important;
  }

  .mr-sm-3 {
    margin-right: 1.5rem !important;
  }

  .p-sm-3 {
    padding: 1.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-3 {
    padding-left: 1.5rem !important;
  }

  .pr-sm-3 {
    padding-right: 1.5rem !important;
  }
}
@media print, screen and (min-width: 768px) {
  .m-md-3 {
    margin: 1.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-3 {
    margin-left: 1.5rem !important;
  }

  .mr-md-3 {
    margin-right: 1.5rem !important;
  }

  .p-md-3 {
    padding: 1.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-3 {
    padding-left: 1.5rem !important;
  }

  .pr-md-3 {
    padding-right: 1.5rem !important;
  }
}
@media print, screen and (min-width: 992px) {
  .m-lg-3 {
    margin: 1.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-3 {
    margin-left: 1.5rem !important;
  }

  .mr-lg-3 {
    margin-right: 1.5rem !important;
  }

  .p-lg-3 {
    padding: 1.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-3 {
    padding-left: 1.5rem !important;
  }

  .pr-lg-3 {
    padding-right: 1.5rem !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .m-xl-3 {
    margin: 1.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-3 {
    margin-left: 1.5rem !important;
  }

  .mr-xl-3 {
    margin-right: 1.5rem !important;
  }

  .p-xl-3 {
    padding: 1.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-3 {
    padding-left: 1.5rem !important;
  }

  .pr-xl-3 {
    padding-right: 1.5rem !important;
  }
}
@media print, screen and (min-width: 1400px) {
  .m-xxl-3 {
    margin: 1.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xxl-3 {
    margin-left: 1.5rem !important;
  }

  .mr-xxl-3 {
    margin-right: 1.5rem !important;
  }

  .p-xxl-3 {
    padding: 1.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xxl-3 {
    padding-left: 1.5rem !important;
  }

  .pr-xxl-3 {
    padding-right: 1.5rem !important;
  }
}
.m-4 {
  margin: 2rem !important;
}

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

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

.ml-4 {
  margin-left: 2rem !important;
}

.mr-4 {
  margin-right: 2rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.pl-4 {
  padding-left: 2rem !important;
}

.pr-4 {
  padding-right: 2rem !important;
}

@media print, screen and (min-width: 576px) {
  .m-sm-4 {
    margin: 2rem !important;
  }

  .mt-sm-4 {
    margin-top: 2rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 2rem !important;
  }

  .ml-sm-4 {
    margin-left: 2rem !important;
  }

  .mr-sm-4 {
    margin-right: 2rem !important;
  }

  .p-sm-4 {
    padding: 2rem !important;
  }

  .pt-sm-4 {
    padding-top: 2rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 2rem !important;
  }

  .pl-sm-4 {
    padding-left: 2rem !important;
  }

  .pr-sm-4 {
    padding-right: 2rem !important;
  }
}
@media print, screen and (min-width: 768px) {
  .m-md-4 {
    margin: 2rem !important;
  }

  .mt-md-4 {
    margin-top: 2rem !important;
  }

  .mb-md-4 {
    margin-bottom: 2rem !important;
  }

  .ml-md-4 {
    margin-left: 2rem !important;
  }

  .mr-md-4 {
    margin-right: 2rem !important;
  }

  .p-md-4 {
    padding: 2rem !important;
  }

  .pt-md-4 {
    padding-top: 2rem !important;
  }

  .pb-md-4 {
    padding-bottom: 2rem !important;
  }

  .pl-md-4 {
    padding-left: 2rem !important;
  }

  .pr-md-4 {
    padding-right: 2rem !important;
  }
}
@media print, screen and (min-width: 992px) {
  .m-lg-4 {
    margin: 2rem !important;
  }

  .mt-lg-4 {
    margin-top: 2rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 2rem !important;
  }

  .ml-lg-4 {
    margin-left: 2rem !important;
  }

  .mr-lg-4 {
    margin-right: 2rem !important;
  }

  .p-lg-4 {
    padding: 2rem !important;
  }

  .pt-lg-4 {
    padding-top: 2rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 2rem !important;
  }

  .pl-lg-4 {
    padding-left: 2rem !important;
  }

  .pr-lg-4 {
    padding-right: 2rem !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .m-xl-4 {
    margin: 2rem !important;
  }

  .mt-xl-4 {
    margin-top: 2rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 2rem !important;
  }

  .ml-xl-4 {
    margin-left: 2rem !important;
  }

  .mr-xl-4 {
    margin-right: 2rem !important;
  }

  .p-xl-4 {
    padding: 2rem !important;
  }

  .pt-xl-4 {
    padding-top: 2rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 2rem !important;
  }

  .pl-xl-4 {
    padding-left: 2rem !important;
  }

  .pr-xl-4 {
    padding-right: 2rem !important;
  }
}
@media print, screen and (min-width: 1400px) {
  .m-xxl-4 {
    margin: 2rem !important;
  }

  .mt-xxl-4 {
    margin-top: 2rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 2rem !important;
  }

  .ml-xxl-4 {
    margin-left: 2rem !important;
  }

  .mr-xxl-4 {
    margin-right: 2rem !important;
  }

  .p-xxl-4 {
    padding: 2rem !important;
  }

  .pt-xxl-4 {
    padding-top: 2rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 2rem !important;
  }

  .pl-xxl-4 {
    padding-left: 2rem !important;
  }

  .pr-xxl-4 {
    padding-right: 2rem !important;
  }
}
.m-5 {
  margin: 3rem !important;
}

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

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

.ml-5 {
  margin-left: 3rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

@media print, screen and (min-width: 576px) {
  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5 {
    margin-left: 3rem !important;
  }

  .mr-sm-5 {
    margin-right: 3rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5 {
    padding-left: 3rem !important;
  }

  .pr-sm-5 {
    padding-right: 3rem !important;
  }
}
@media print, screen and (min-width: 768px) {
  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5 {
    margin-left: 3rem !important;
  }

  .mr-md-5 {
    margin-right: 3rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5 {
    padding-left: 3rem !important;
  }

  .pr-md-5 {
    padding-right: 3rem !important;
  }
}
@media print, screen and (min-width: 992px) {
  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5 {
    margin-left: 3rem !important;
  }

  .mr-lg-5 {
    margin-right: 3rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5 {
    padding-left: 3rem !important;
  }

  .pr-lg-5 {
    padding-right: 3rem !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5 {
    margin-left: 3rem !important;
  }

  .mr-xl-5 {
    margin-right: 3rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5 {
    padding-left: 3rem !important;
  }

  .pr-xl-5 {
    padding-right: 3rem !important;
  }
}
@media print, screen and (min-width: 1400px) {
  .m-xxl-5 {
    margin: 3rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xxl-5 {
    margin-left: 3rem !important;
  }

  .mr-xxl-5 {
    margin-right: 3rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xxl-5 {
    padding-left: 3rem !important;
  }

  .pr-xxl-5 {
    padding-right: 3rem !important;
  }
}
.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.p-auto {
  padding: auto !important;
}

.pt-auto {
  padding-top: auto !important;
}

.pb-auto {
  padding-bottom: auto !important;
}

.pl-auto {
  padding-left: auto !important;
}

.pr-auto {
  padding-right: auto !important;
}

@media print, screen and (min-width: 576px) {
  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto {
    margin-left: auto !important;
  }

  .mr-sm-auto {
    margin-right: auto !important;
  }

  .p-sm-auto {
    padding: auto !important;
  }

  .pt-sm-auto {
    padding-top: auto !important;
  }

  .pb-sm-auto {
    padding-bottom: auto !important;
  }

  .pl-sm-auto {
    padding-left: auto !important;
  }

  .pr-sm-auto {
    padding-right: auto !important;
  }
}
@media print, screen and (min-width: 768px) {
  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto {
    margin-left: auto !important;
  }

  .mr-md-auto {
    margin-right: auto !important;
  }

  .p-md-auto {
    padding: auto !important;
  }

  .pt-md-auto {
    padding-top: auto !important;
  }

  .pb-md-auto {
    padding-bottom: auto !important;
  }

  .pl-md-auto {
    padding-left: auto !important;
  }

  .pr-md-auto {
    padding-right: auto !important;
  }
}
@media print, screen and (min-width: 992px) {
  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto {
    margin-left: auto !important;
  }

  .mr-lg-auto {
    margin-right: auto !important;
  }

  .p-lg-auto {
    padding: auto !important;
  }

  .pt-lg-auto {
    padding-top: auto !important;
  }

  .pb-lg-auto {
    padding-bottom: auto !important;
  }

  .pl-lg-auto {
    padding-left: auto !important;
  }

  .pr-lg-auto {
    padding-right: auto !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto {
    margin-left: auto !important;
  }

  .mr-xl-auto {
    margin-right: auto !important;
  }

  .p-xl-auto {
    padding: auto !important;
  }

  .pt-xl-auto {
    padding-top: auto !important;
  }

  .pb-xl-auto {
    padding-bottom: auto !important;
  }

  .pl-xl-auto {
    padding-left: auto !important;
  }

  .pr-xl-auto {
    padding-right: auto !important;
  }
}
@media print, screen and (min-width: 1400px) {
  .m-xxl-auto {
    margin: auto !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ml-xxl-auto {
    margin-left: auto !important;
  }

  .mr-xxl-auto {
    margin-right: auto !important;
  }

  .p-xxl-auto {
    padding: auto !important;
  }

  .pt-xxl-auto {
    padding-top: auto !important;
  }

  .pb-xxl-auto {
    padding-bottom: auto !important;
  }

  .pl-xxl-auto {
    padding-left: auto !important;
  }

  .pr-xxl-auto {
    padding-right: auto !important;
  }
}
/* ===============================
   基本変数（CSSカスタムプロパティ）
   =============================== */
:root {
  /* 既定ガター */
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  /* ブレークポイント */
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
  /* ガター・スケール */
  --bs-gutter-0: 0;
  --bs-gutter-1: 0.5rem;
  --bs-gutter-2: 1rem;
  --bs-gutter-3: 1.5rem;
  --bs-gutter-4: 2rem;
  --bs-gutter-5: 3rem;
}

/* ===============================
   .row と 子要素の基本レイアウト
   =============================== */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

/* ===============================
   列の基本（.col, .col-auto, .col-1..12）
   =============================== */
.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

/* 12分割の幅ユーティリティ */
.col-1 {
  flex: 0 0 auto;
  width: 8.333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

/* ===============================
   レスポンシブ列（各ブレークポイント）
   =============================== */
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
/* ===============================
   行内列数ユーティリティ（.row-cols-*）
   =============================== */
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.666667%;
}

@media (min-width: 576px) {
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.666667%;
  }
}
@media (min-width: 768px) {
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.666667%;
  }
}
@media (min-width: 992px) {
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.666667%;
  }
}
@media (min-width: 1200px) {
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.666667%;
  }
}
@media (min-width: 1400px) {
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.666667%;
  }
}
/* ===============================
   オフセット（.offset-*）
   =============================== */
.offset-0 {
  margin-left: 0;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1400px) {
  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.666667%;
  }
}
/* ===============================
   並び順ユーティリティ（.order-*）
   =============================== */
@media (min-width: 0) {
  .order-xs-first {
    order: -1;
  }

  .order-xs-0 {
    order: 0;
  }

  .order-xs-1 {
    order: 1;
  }

  .order-xs-2 {
    order: 2;
  }

  .order-xs-3 {
    order: 3;
  }

  .order-xs-4 {
    order: 4;
  }

  .order-xs-5 {
    order: 5;
  }

  .order-xs-6 {
    order: 6;
  }

  .order-xs-7 {
    order: 7;
  }

  .order-xs-8 {
    order: 8;
  }

  .order-xs-9 {
    order: 9;
  }

  .order-xs-10 {
    order: 10;
  }

  .order-xs-11 {
    order: 11;
  }

  .order-xs-12 {
    order: 12;
  }

  .order-xs-last {
    order: 13;
  }
}
@media (min-width: 576px) {
  .order-sm-first {
    order: -1;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .order-sm-last {
    order: 13;
  }
}
@media (min-width: 768px) {
  .order-md-first {
    order: -1;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .order-md-last {
    order: 13;
  }
}
@media (min-width: 992px) {
  .order-lg-first {
    order: -1;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .order-lg-last {
    order: 13;
  }
}
@media (min-width: 1200px) {
  .order-xl-first {
    order: -1;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .order-xl-last {
    order: 13;
  }
}
@media (min-width: 1400px) {
  .order-xxl-first {
    order: -1;
  }

  .order-xxl-0 {
    order: 0;
  }

  .order-xxl-1 {
    order: 1;
  }

  .order-xxl-2 {
    order: 2;
  }

  .order-xxl-3 {
    order: 3;
  }

  .order-xxl-4 {
    order: 4;
  }

  .order-xxl-5 {
    order: 5;
  }

  .order-xxl-6 {
    order: 6;
  }

  .order-xxl-7 {
    order: 7;
  }

  .order-xxl-8 {
    order: 8;
  }

  .order-xxl-9 {
    order: 9;
  }

  .order-xxl-10 {
    order: 10;
  }

  .order-xxl-11 {
    order: 11;
  }

  .order-xxl-12 {
    order: 12;
  }

  .order-xxl-last {
    order: 13;
  }
}
/* ===============================
   ガター・ユーティリティ（.g-*, .gx-*, .gy-*）
   =============================== */
/* base */
.g-0 {
  --bs-gutter-x: var(--bs-gutter-0);
  --bs-gutter-y: var(--bs-gutter-0);
}

.g-1 {
  --bs-gutter-x: var(--bs-gutter-1);
  --bs-gutter-y: var(--bs-gutter-1);
}

.g-2 {
  --bs-gutter-x: var(--bs-gutter-2);
  --bs-gutter-y: var(--bs-gutter-2);
}

.g-3 {
  --bs-gutter-x: var(--bs-gutter-3);
  --bs-gutter-y: var(--bs-gutter-3);
}

.g-4 {
  --bs-gutter-x: var(--bs-gutter-4);
  --bs-gutter-y: var(--bs-gutter-4);
}

.g-5 {
  --bs-gutter-x: var(--bs-gutter-5);
  --bs-gutter-y: var(--bs-gutter-5);
}

.gx-0 {
  --bs-gutter-x: var(--bs-gutter-0);
}

.gx-1 {
  --bs-gutter-x: var(--bs-gutter-1);
}

.gx-2 {
  --bs-gutter-x: var(--bs-gutter-2);
}

.gx-3 {
  --bs-gutter-x: var(--bs-gutter-3);
}

.gx-4 {
  --bs-gutter-x: var(--bs-gutter-4);
}

.gx-5 {
  --bs-gutter-x: var(--bs-gutter-5);
}

.gy-0 {
  --bs-gutter-y: var(--bs-gutter-0);
}

.gy-1 {
  --bs-gutter-y: var(--bs-gutter-1);
}

.gy-2 {
  --bs-gutter-y: var(--bs-gutter-2);
}

.gy-3 {
  --bs-gutter-y: var(--bs-gutter-3);
}

.gy-4 {
  --bs-gutter-y: var(--bs-gutter-4);
}

.gy-5 {
  --bs-gutter-y: var(--bs-gutter-5);
}

/* sm */
@media (min-width: 576px) {
  .g-sm-0 {
    --bs-gutter-x: var(--bs-gutter-0);
    --bs-gutter-y: var(--bs-gutter-0);
  }

  .g-sm-1 {
    --bs-gutter-x: var(--bs-gutter-1);
    --bs-gutter-y: var(--bs-gutter-1);
  }

  .g-sm-2 {
    --bs-gutter-x: var(--bs-gutter-2);
    --bs-gutter-y: var(--bs-gutter-2);
  }

  .g-sm-3 {
    --bs-gutter-x: var(--bs-gutter-3);
    --bs-gutter-y: var(--bs-gutter-3);
  }

  .g-sm-4 {
    --bs-gutter-x: var(--bs-gutter-4);
    --bs-gutter-y: var(--bs-gutter-4);
  }

  .g-sm-5 {
    --bs-gutter-x: var(--bs-gutter-5);
    --bs-gutter-y: var(--bs-gutter-5);
  }

  .gx-sm-0 {
    --bs-gutter-x: var(--bs-gutter-0);
  }

  .gx-sm-1 {
    --bs-gutter-x: var(--bs-gutter-1);
  }

  .gx-sm-2 {
    --bs-gutter-x: var(--bs-gutter-2);
  }

  .gx-sm-3 {
    --bs-gutter-x: var(--bs-gutter-3);
  }

  .gx-sm-4 {
    --bs-gutter-x: var(--bs-gutter-4);
  }

  .gx-sm-5 {
    --bs-gutter-x: var(--bs-gutter-5);
  }

  .gy-sm-0 {
    --bs-gutter-y: var(--bs-gutter-0);
  }

  .gy-sm-1 {
    --bs-gutter-y: var(--bs-gutter-1);
  }

  .gy-sm-2 {
    --bs-gutter-y: var(--bs-gutter-2);
  }

  .gy-sm-3 {
    --bs-gutter-y: var(--bs-gutter-3);
  }

  .gy-sm-4 {
    --bs-gutter-y: var(--bs-gutter-4);
  }

  .gy-sm-5 {
    --bs-gutter-y: var(--bs-gutter-5);
  }
}
/* md */
@media (min-width: 768px) {
  .g-md-0 {
    --bs-gutter-x: var(--bs-gutter-0);
    --bs-gutter-y: var(--bs-gutter-0);
  }

  .g-md-1 {
    --bs-gutter-x: var(--bs-gutter-1);
    --bs-gutter-y: var(--bs-gutter-1);
  }

  .g-md-2 {
    --bs-gutter-x: var(--bs-gutter-2);
    --bs-gutter-y: var(--bs-gutter-2);
  }

  .g-md-3 {
    --bs-gutter-x: var(--bs-gutter-3);
    --bs-gutter-y: var(--bs-gutter-3);
  }

  .g-md-4 {
    --bs-gutter-x: var(--bs-gutter-4);
    --bs-gutter-y: var(--bs-gutter-4);
  }

  .g-md-5 {
    --bs-gutter-x: var(--bs-gutter-5);
    --bs-gutter-y: var(--bs-gutter-5);
  }

  .gx-md-0 {
    --bs-gutter-x: var(--bs-gutter-0);
  }

  .gx-md-1 {
    --bs-gutter-x: var(--bs-gutter-1);
  }

  .gx-md-2 {
    --bs-gutter-x: var(--bs-gutter-2);
  }

  .gx-md-3 {
    --bs-gutter-x: var(--bs-gutter-3);
  }

  .gx-md-4 {
    --bs-gutter-x: var(--bs-gutter-4);
  }

  .gx-md-5 {
    --bs-gutter-x: var(--bs-gutter-5);
  }

  .gy-md-0 {
    --bs-gutter-y: var(--bs-gutter-0);
  }

  .gy-md-1 {
    --bs-gutter-y: var(--bs-gutter-1);
  }

  .gy-md-2 {
    --bs-gutter-y: var(--bs-gutter-2);
  }

  .gy-md-3 {
    --bs-gutter-y: var(--bs-gutter-3);
  }

  .gy-md-4 {
    --bs-gutter-y: var(--bs-gutter-4);
  }

  .gy-md-5 {
    --bs-gutter-y: var(--bs-gutter-5);
  }
}
/* lg */
@media (min-width: 992px) {
  .g-lg-0 {
    --bs-gutter-x: var(--bs-gutter-0);
    --bs-gutter-y: var(--bs-gutter-0);
  }

  .g-lg-1 {
    --bs-gutter-x: var(--bs-gutter-1);
    --bs-gutter-y: var(--bs-gutter-1);
  }

  .g-lg-2 {
    --bs-gutter-x: var(--bs-gutter-2);
    --bs-gutter-y: var(--bs-gutter-2);
  }

  .g-lg-3 {
    --bs-gutter-x: var(--bs-gutter-3);
    --bs-gutter-y: var(--bs-gutter-3);
  }

  .g-lg-4 {
    --bs-gutter-x: var(--bs-gutter-4);
    --bs-gutter-y: var(--bs-gutter-4);
  }

  .g-lg-5 {
    --bs-gutter-x: var(--bs-gutter-5);
    --bs-gutter-y: var(--bs-gutter-5);
  }

  .gx-lg-0 {
    --bs-gutter-x: var(--bs-gutter-0);
  }

  .gx-lg-1 {
    --bs-gutter-x: var(--bs-gutter-1);
  }

  .gx-lg-2 {
    --bs-gutter-x: var(--bs-gutter-2);
  }

  .gx-lg-3 {
    --bs-gutter-x: var(--bs-gutter-3);
  }

  .gx-lg-4 {
    --bs-gutter-x: var(--bs-gutter-4);
  }

  .gx-lg-5 {
    --bs-gutter-x: var(--bs-gutter-5);
  }

  .gy-lg-0 {
    --bs-gutter-y: var(--bs-gutter-0);
  }

  .gy-lg-1 {
    --bs-gutter-y: var(--bs-gutter-1);
  }

  .gy-lg-2 {
    --bs-gutter-y: var(--bs-gutter-2);
  }

  .gy-lg-3 {
    --bs-gutter-y: var(--bs-gutter-3);
  }

  .gy-lg-4 {
    --bs-gutter-y: var(--bs-gutter-4);
  }

  .gy-lg-5 {
    --bs-gutter-y: var(--bs-gutter-5);
  }
}
/* xl */
@media (min-width: 1200px) {
  .g-xl-0 {
    --bs-gutter-x: var(--bs-gutter-0);
    --bs-gutter-y: var(--bs-gutter-0);
  }

  .g-xl-1 {
    --bs-gutter-x: var(--bs-gutter-1);
    --bs-gutter-y: var(--bs-gutter-1);
  }

  .g-xl-2 {
    --bs-gutter-x: var(--bs-gutter-2);
    --bs-gutter-y: var(--bs-gutter-2);
  }

  .g-xl-3 {
    --bs-gutter-x: var(--bs-gutter-3);
    --bs-gutter-y: var(--bs-gutter-3);
  }

  .g-xl-4 {
    --bs-gutter-x: var(--bs-gutter-4);
    --bs-gutter-y: var(--bs-gutter-4);
  }

  .g-xl-5 {
    --bs-gutter-x: var(--bs-gutter-5);
    --bs-gutter-y: var(--bs-gutter-5);
  }

  .gx-xl-0 {
    --bs-gutter-x: var(--bs-gutter-0);
  }

  .gx-xl-1 {
    --bs-gutter-x: var(--bs-gutter-1);
  }

  .gx-xl-2 {
    --bs-gutter-x: var(--bs-gutter-2);
  }

  .gx-xl-3 {
    --bs-gutter-x: var(--bs-gutter-3);
  }

  .gx-xl-4 {
    --bs-gutter-x: var(--bs-gutter-4);
  }

  .gx-xl-5 {
    --bs-gutter-x: var(--bs-gutter-5);
  }

  .gy-xl-0 {
    --bs-gutter-y: var(--bs-gutter-0);
  }

  .gy-xl-1 {
    --bs-gutter-y: var(--bs-gutter-1);
  }

  .gy-xl-2 {
    --bs-gutter-y: var(--bs-gutter-2);
  }

  .gy-xl-3 {
    --bs-gutter-y: var(--bs-gutter-3);
  }

  .gy-xl-4 {
    --bs-gutter-y: var(--bs-gutter-4);
  }

  .gy-xl-5 {
    --bs-gutter-y: var(--bs-gutter-5);
  }
}
/* xxl */
@media (min-width: 1400px) {
  .g-xxl-0 {
    --bs-gutter-x: var(--bs-gutter-0);
    --bs-gutter-y: var(--bs-gutter-0);
  }

  .g-xxl-1 {
    --bs-gutter-x: var(--bs-gutter-1);
    --bs-gutter-y: var(--bs-gutter-1);
  }

  .g-xxl-2 {
    --bs-gutter-x: var(--bs-gutter-2);
    --bs-gutter-y: var(--bs-gutter-2);
  }

  .g-xxl-3 {
    --bs-gutter-x: var(--bs-gutter-3);
    --bs-gutter-y: var(--bs-gutter-3);
  }

  .g-xxl-4 {
    --bs-gutter-x: var(--bs-gutter-4);
    --bs-gutter-y: var(--bs-gutter-4);
  }

  .g-xxl-5 {
    --bs-gutter-x: var(--bs-gutter-5);
    --bs-gutter-y: var(--bs-gutter-5);
  }

  .gx-xxl-0 {
    --bs-gutter-x: var(--bs-gutter-0);
  }

  .gx-xxl-1 {
    --bs-gutter-x: var(--bs-gutter-1);
  }

  .gx-xxl-2 {
    --bs-gutter-x: var(--bs-gutter-2);
  }

  .gx-xxl-3 {
    --bs-gutter-x: var(--bs-gutter-3);
  }

  .gx-xxl-4 {
    --bs-gutter-x: var(--bs-gutter-4);
  }

  .gx-xxl-5 {
    --bs-gutter-x: var(--bs-gutter-5);
  }

  .gy-xxl-0 {
    --bs-gutter-y: var(--bs-gutter-0);
  }

  .gy-xxl-1 {
    --bs-gutter-y: var(--bs-gutter-1);
  }

  .gy-xxl-2 {
    --bs-gutter-y: var(--bs-gutter-2);
  }

  .gy-xxl-3 {
    --bs-gutter-y: var(--bs-gutter-3);
  }

  .gy-xxl-4 {
    --bs-gutter-y: var(--bs-gutter-4);
  }

  .gy-xxl-5 {
    --bs-gutter-y: var(--bs-gutter-5);
  }
}
/* -------------------------------
	header
-------------------------------- */
/* 基本サイズ */
#header {
  width: 100%;
  display: flex;
  align-items: center;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.7);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  transition: background 0.3s ease;
}
@media print, screen and (min-width: 992px) {
  #header {
    height: 100px;
    padding: 0 clamp(16px, 3.125vw, 60px);
  }
}
@media print {
  #header {
    position: absolute;
  }
}
#header .logo {
  padding-left: 15px;
}
#header .logo h1 {
  font-size: 1rem;
  line-height: normal;
  padding: 0;
  margin: 0;
}
#header .logo h1 img {
  height: 30px;
}
@media print, screen and (min-width: 992px) {
  #header .logo {
    flex: 0 0 25%;
  }
  #header .logo h1 img {
    height: auto;
  }
}
@media print, screen and (min-width: 992px) {
  #header .head_contents {
    display: flex;
    justify-content: flex-end;
    flex: 1 1 0;
  }
}

@media screen and (max-width: 991px) {
  .side-open #header {
    background-color: white;
  }
}
/* -------------------------------
	メインメニュー
-------------------------------- */
#gNavi {
  --gap: 20px;
  display: none;
}
@media print, screen and (min-width: 992px) {
  #gNavi {
    --gap: min(calc(20px + 30 * (100vw - 992px) / 928), 50px);
    font-size: min(calc(15px + 5 * (100vw - 992px) / 508), 20px);
    display: flex;
    align-items: center;
  }
}

.list-gnav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0 var(--gap);
}
.list-gnav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-gnav a {
  text-decoration: none;
}
.list-gnav > li > a {
  color: #000;
  line-height: 2.2;
  display: block;
  position: relative;
}
.list-gnav > li > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  background-color: currentColor;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.list-gnav > li > a:hover:after, .list-gnav > li > a.active:after {
  transform: scaleX(1);
  visibility: visible;
}
.list-gnav > li > a.active {
  color: var(--primary);
}

.gnav_contact {
  padding-left: var(--gap);
}
.gnav_contact > a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0.75em 2em;
  border-radius: 0.25em;
  border: solid 1px var(--primary);
  background-color: var(--primary);
  transition: color 0.3s ease, background 0.3s ease;
}
.gnav_contact > a:hover {
  color: var(--primary);
  background-color: #fff;
}

/* -------------------------------
	main
-------------------------------- */
/* -------------------------------
	main title
-------------------------------- */
.main_ttl {
  height: min(calc(150px + 150 * (100vw - 320px) / 1180), 300px);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
}
.main_ttl > .bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.main_ttl > .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_ttl h2 {
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

/* -------------------------------
	pagetop
-------------------------------- */
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 10;
}
#pagetop.is-active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  #pagetop {
    right: 0;
    bottom: 0;
  }
  #pagetop img {
    width: 40px;
  }
}

/* -------------------------------
	スクロールバー
-------------------------------- */
div, .scrollbar {
  scrollbar-color: #111 #eeeeee;
  scrollbar-width: thin;
}
div::-webkit-scrollbar, .scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
div::-webkit-scrollbar-track, .scrollbar::-webkit-scrollbar-track {
  background: #eeeeee;
}
div::-webkit-scrollbar-thumb, .scrollbar::-webkit-scrollbar-thumb {
  background: #111;
}

/* -------------------------------
	サイドメニュー
-------------------------------- */
#sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -280px;
  width: 280px;
  text-align: left;
  padding: 65px 15px 15px;
  background-color: #fff;
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 9900;
}
.side-open #sidebar {
  transform: translate3d(-100%, 0, 0);
}
@media print, screen and (min-width: 992px) {
  #sidebar {
    display: none !important;
  }
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
}
#sidebar .list-sidenav > li {
  text-align: left;
  border-bottom: solid 1px #ccc;
  position: relative;
}
#sidebar .list-sidenav > li > a {
  color: #000;
  line-height: 1.5;
  display: block;
  padding: 1em 2em 1em 1em;
  position: relative;
}
#sidebar .list-sidenav > li > a:after {
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-size: 0.8125em;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -.5em;
}
#sidebar .list-sidenav > li > a:hover {
  color: #044223;
}
#sidebar .list-sidenav > li > a.active {
  background-color: #E8FDF3;
}

/*
 * 下層メニュー用ボタン
 */
#sidebar .list-sidenav > li .toggle-submenu {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(1.5em + 0.55em + 0.55em);
  height: calc(1.5em + 0.55em + 0.55em);
  border: none;
  outline: none;
  background-color: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#sidebar .list-sidenav > li .toggle-submenu:before, #sidebar .list-sidenav > li .toggle-submenu:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 14px;
  height: 2px;
  margin: auto;
  background: #fff;
  transition: transform 0.3s ease;
}
#sidebar .list-sidenav > li .toggle-submenu:after {
  transform: rotate(90deg);
}
#sidebar .list-sidenav > li.is-open > .toggle-submenu:before {
  transform: rotate(360deg);
}
#sidebar .list-sidenav > li.is-open > .toggle-submenu:after {
  transform: rotate(0deg);
}

/* 
 * 下層メニュー
 */
#sidebar .list-sidenav li > ul {
  display: none;
}

#sidebar .list-sidenav > ul {
  position: relative;
}
#sidebar .list-sidenav > ul > a:after {
  display: none;
}
#sidebar .list-sidenav > ul > ul {
  background-color: #fff;
}
#sidebar .list-sidenav > ul > ul > li {
  position: relative;
}
#sidebar .list-sidenav > ul > ul > li > a {
  color: #333;
  font-size: 0.875em;
  line-height: 1.5;
  padding: 0.65em 2em 0.65em 1.3em;
  display: block;
  background-color: #fff;
  position: relative;
}
#sidebar .list-sidenav > ul > ul > li > a:before {
  content: "\f0da";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 50%;
  margin-top: -.5em;
}
#sidebar .list-sidenav > ul > ul > li.active > a, #sidebar .list-sidenav > ul > ul > li > a:hover {
  background-color: #ddd;
}

/* -------------------------------
	半透明
-------------------------------- */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 20;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 992px) {
  .overlay {
    display: none;
  }
}

/* -------------------------------
	三本線
-------------------------------- */
.menuWrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  transform: translate3d(0, 0, 0);
  z-index: 9999;
}
@media print, screen and (min-width: 992px) {
  .menuWrapper {
    display: none;
  }
}

#menuButton {
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 2px;
  margin: auto;
  background: #000;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #000;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -9px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 9px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  color: #000;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  display: block;
}

/* アニメーション */
#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

/* -------------------------------
	footer
-------------------------------- */
#footer {
  color: #fff;
  background-color: var(--primary);
  page-break-inside: avoid;
}

.copyright {
  font-weight: 400;
  font-size: 12px;
  text-align: center;
}
.copyright:before {
  content: "";
  display: block;
  width: 175px;
  height: 78px;
  margin: 0 auto 10px;
  background: url("../images/common/f-logo.svg") no-repeat center center/contain;
}

/* 印刷用 */
@page {
  margin: 10mm 4mm 10mm 4mm;
}
@media print {
  body {
    min-width: 1500px !important;
  }

  .container {
    min-width: 1200px !important;
  }

  .container-fluid-xl {
    min-width: 1500px !important;
  }

  .row {
    overflow: visible !important;
  }

  [class^="col"], [class*=" col"], [class^="col-"], [class*=" col-"] {
    page-break-inside: avoid;
  }

  #pagetop {
    opacity: 0;
    visibility: hidden;
  }

  .page-break {
    page-break-inside: avoid;
    page-break-after: avoid;
  }
}
/* firefox　ハック */
@-moz-document url-prefix() {
  @page {
    margin: auto;
  }
}
