@charset "UTF-8";
@font-face {
  font-family: "icomoon";
  src: url("font/icomoon.eot?hz8b7v");
  src: url("font/icomoon.eot?hz8b7v#iefix") format("embedded-opentype"), url("font/icomoon.ttf?hz8b7v") format("truetype"), url("font/icomoon.woff?hz8b7v") format("woff"), url("font/icomoon.svg?hz8b7v#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow::before {
  content: '\e900';
}

/* Verification
   ========================================================================== */
*, *::before, *::after {
  /* outline: 1px solid red; */
  /* outline-offset: -1px; */
}

/* Root
   ========================================================================== */
:root {
  --color: black;
  --theme-color: #6a5422;
  --gutter: 20px;
}

/* Document
   ========================================================================== */
/**
 * 1. Prevent adjustments of font size after orientation changes in iOS.
 * 2. Smooth scroll.
 */
html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* 2 */
  scroll-behavior: smooth;
}

/* Sections
   ========================================================================== */
/**
 * 1. Line feed processing.
 * 2. Remove the margin in all browsers.
 */
body {
  color: var(--color);
  font-family: "Shippori Mincho", serif;
  /* 1 */
  word-wrap: break-word;
  /* 1 */
  overflow-wrap: break-word;
  min-inline-size: 23.4375rem;
  -webkit-padding-before: 3.75rem;
  padding-block-start: 3.75rem;
  /* 2 */
  margin: 0;
}
@media (min-width: 48rem) {
  body {
    min-inline-size: 80rem;
    -webkit-padding-before: 7.5rem;
    padding-block-start: 7.5rem;
  }
}

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

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 */
a {
  color: var(--theme-color);
  /* 1 */
  background-color: transparent;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}

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

/**
 * 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 {
  /* 1 */
  font-family: monospace, monospace;
  /* 2 */
  font-size: 1em;
}

/**
 * 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 {
  inset-block-end: -0.25em;
}

sup {
  inset-block-start: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Eliminate the gap.
 * 2. Fluid image.
 * 3. Remove the border on images inside links in IE 10.
 */
img {
  /* 1 */
  vertical-align: bottom;
  /* 2 */
  max-inline-size: 100%;
  /* 2 */
  block-size: auto;
  /* 3 */
  border-style: none;
}

a img {
  transition: opacity 0.2s linear;
}
a:hover img {
  opacity: 0.5;
}

svg {
  /* 1 */
  vertical-align: bottom;
  /* 2 */
  max-inline-size: 100%;
  /* 2 */
  block-size: auto;
}

/**
 * 1. Eliminate the gap.
 * 2. Fluid iframe.
 */
iframe {
  /* 1 */
  vertical-align: bottom;
  /* 2 */
  max-inline-size: 100%;
}

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

/**
 * 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;
  -moz-appearance: button;
  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 {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  color: inherit;
  /* 1 */
  display: table;
  /* 1 */
  max-inline-size: 100%;
  /* 3 */
  padding: 0;
  /* 1 */
  white-space: normal;
}

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

/**
 * 1. Remove the default vertical scrollbar in IE 10+.
 * 2. Eliminate the gap.
 */
textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  vertical-align: bottom;
}

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

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

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

/**
 * 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 {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit;
}

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

/* Video
   ========================================================================== */
/**
 * Fluid video.
 */
video {
  max-inline-size: 100%;
  block-size: auto;
}

/* List
   ========================================================================== */
li[class] {
  list-style: none;
}

/* id
   ========================================================================== */
[id] {
  scroll-margin-block-start: 3.75rem;
}
@media (min-width: 48rem) {
  [id] {
    scroll-margin-block-start: 7.5rem;
  }
}

/* Button
   ========================================================================== */
button {
  cursor: pointer;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}

/* YouTube
   ========================================================================== */
/**
 * Fluid YouTube.
 */
@supports (aspect-ratio: 16 / 9) {
  iframe[src*=youtube] {
    aspect-ratio: 16 / 9;
    max-inline-size: 100%;
    block-size: 100%;
  }
}

/************************************************
    JavaScript
*************************************************/
.js-ac-contents--close {
  display: none;
}
.js-ac-contents--open {
  display: block;
}

/************************************************
    Screen Reader
*************************************************/
.sr-only {
  white-space: nowrap;
  inline-size: 1px;
  block-size: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  overflow: hidden;
  position: absolute;
}

/************************************************
    Display
*************************************************/
/*  inline
------------------------------------------------*/
.inline {
  display: inline;
}

@media (min-width: 48rem) {
  .mq-M-inline {
    display: inline;
  }
}
/*  inline-block
------------------------------------------------*/
.i-blk {
  display: inline-block;
}

@media (min-width: 48rem) {
  .mq-M-i-blk {
    display: inline-block;
  }
}
/*  block
------------------------------------------------*/
.blk {
  display: block;
}

@media (min-width: 48rem) {
  .mq-M-blk {
    display: block;
  }
}
/************************************************
    Sticky Polyfill
*************************************************/
.sticky {
  position: sticky;
}
.sticky.sticky-fixed.is-sticky {
  margin-top: 0;
  margin-bottom: 0;
  position: fixed;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sticky.sticky-fixed.is-sticky:not([style*=margin-top]) {
  margin-top: 0 !important;
}
.sticky.sticky-fixed.is-sticky:not([style*=margin-bottom]) {
  margin-bottom: 0 !important;
}
.sticky.sticky-fixed.is-absolute {
  position: absolute;
}

/* Image
   ========================================================================== */
img.alignleft, img.aligncenter, img.alignright {
  display: block;
}
img.alignleft {
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}
img.aligncenter {
  margin-inline: auto;
}
img.alignright {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}

/************************************************
    Button
*************************************************/
.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--color);
  font-size: 1.125em;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  box-sizing: border-box;
  min-inline-size: 13.3333333333em;
  padding-block: 0.75em;
  padding-inline: 1.06em 1em;
  border: 1px solid #707070;
  border-radius: 1.5555555556em;
}
@supports not (padding-block: 0.75em) {
  .button {
    -webkit-padding-before: 0.75em;
    padding-block-start: 0.75em;
    -webkit-padding-after: 0.75em;
    padding-block-end: 0.75em;
  }
}
@supports not (padding-inline: 1.06em 1em) {
  .button {
    -webkit-padding-start: 1.06em;
    padding-inline-start: 1.06em;
    -webkit-padding-end: 1em;
    padding-inline-end: 1em;
  }
}
.page-navigation-item__title + .button {
  -webkit-margin-before: 2.0555555556em;
  margin-block-start: 2.0555555556em;
}
.section-Class__content--outline + .button {
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
}
@media (min-width: 48rem) {
  .section-Class__content--outline + .button {
    -webkit-margin-before: -4.8888888889em;
    margin-block-start: -4.8888888889em;
  }
}
.button:hover {
  color: white;
  background-color: var(--color);
  border-color: var(--color);
}

/************************************************
    Toggle
*************************************************/
/* ハンバーガーメニュー */
.toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1em;
  line-height: 1em;
  background-color: white;
  padding-block: 0.9375rem;
  padding-inline: 0.625rem;
  border: none;
  cursor: pointer;
  position: relative;
}
@supports not (padding-block: 0.9375rem) {
  .toggle {
    -webkit-padding-before: 0.9375rem;
    padding-block-start: 0.9375rem;
    -webkit-padding-after: 0.9375rem;
    padding-block-end: 0.9375rem;
  }
}
@supports not (padding-inline: 0.625rem) {
  .toggle {
    -webkit-padding-start: 0.625rem;
    padding-inline-start: 0.625rem;
    -webkit-padding-end: 0.625rem;
    padding-inline-end: 0.625rem;
  }
}
.toggle .hamburger {
  display: block;
  inline-size: 2.5rem;
  block-size: 1.875rem;
  margin-inline: auto;
  position: relative;
  transition: all 0.4s;
}
@supports not (margin-inline: auto) {
  .toggle .hamburger {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
  }
}
.toggle .line {
  display: block;
  background-color: black;
  inline-size: 100%;
  block-size: 0.1875rem;
  border-radius: 0.09375rem;
  position: absolute;
  inset-inline-start: 0;
  transition: all 0.4s;
}
@supports not (inset-inline-start: 0) {
  .toggle .line {
    left: 0;
  }
}
.toggle .line:first-of-type {
  inset-block-start: 0;
}
@supports not (inset-block-start: 0) {
  .toggle .line:first-of-type {
    top: 0;
  }
}
.toggle .line:nth-of-type(2) {
  inset-block-start: 0;
  inset-block-end: 0;
  margin: auto;
  font-size: 0.625rem;
  -js-display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
@supports not (inset-block-start: 0) {
  .toggle .line:nth-of-type(2) {
    top: 0;
  }
}
@supports not (inset-block-end: 0) {
  .toggle .line:nth-of-type(2) {
    bottom: 0;
  }
}
.toggle .line:nth-of-type(2)::before {
  content: "MENU";
  color: #000;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  -webkit-padding-start: 0.1em;
  padding-inline-start: 0.1em;
}
.toggle .line:last-of-type {
  inset-block-end: 0;
}
@supports not (inset-block-end: 0) {
  .toggle .line:last-of-type {
    bottom: 0;
  }
}

/* ハンバーガーボタンクリックアニメーション */
.open .toggle .line:first-of-type {
  transform: translateY(0.84375rem) rotate(-45deg);
}
.open .toggle .line:nth-of-type(2) {
  opacity: 0;
}
.open .toggle .line:last-of-type {
  transform: translateY(-0.84375rem) rotate(45deg);
}

/************************************************
    Title
*************************************************/
.title {
  font-size: 1.5em;
  letter-spacing: 0.1em;
  line-height: 1.75;
  text-align: center;
  -webkit-padding-start: 0.1em;
  padding-inline-start: 0.1em;
  margin: 0;
}

/************************************************
    Content
*************************************************/
.content {
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
.content p {
  margin: 0;
}

/************************************************
    Address
*************************************************/
.address {
  font-size: 1.125em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.75;
  padding-block: 4.1666666667em;
  padding-inline: 1.06em 1em;
  -webkit-border-before: 1px solid #b1b1b1;
  border-block-start: 1px solid #b1b1b1;
}
@supports not (padding-block: 4.1666666667em) {
  .address {
    -webkit-padding-before: 4.1666666667em;
    padding-block-start: 4.1666666667em;
    -webkit-padding-after: 4.1666666667em;
    padding-block-end: 4.1666666667em;
  }
}
@supports not (padding-inline: 1.06em 1em) {
  .address {
    -webkit-padding-start: 1.06em;
    padding-inline-start: 1.06em;
    -webkit-padding-end: 1em;
    padding-inline-end: 1em;
  }
}
@media (min-width: 48rem) {
  .address {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.address p {
  margin: 0;
}
@media (min-width: 48rem) {
  .address .name {
    -webkit-margin-end: 2.12em;
    margin-inline-end: 2.12em;
  }
}
.address .i-blk {
  padding-inline: 0.53em;
}
@supports not (padding-inline: 0.53em) {
  .address .i-blk {
    -webkit-padding-start: 0.53em;
    padding-inline-start: 0.53em;
    -webkit-padding-end: 0.53em;
    padding-inline-end: 0.53em;
  }
}
.address a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

/************************************************
    Copyright
*************************************************/
.copyright {
  font-size: 0.75em;
  letter-spacing: 0.06em;
  line-height: 1.75;
  text-align: center;
  padding-block: 4em;
  padding-inline: 1.06em 1em;
  -webkit-border-before: 1px solid #b1b1b1;
  border-block-start: 1px solid #b1b1b1;
  margin: 0;
}
@supports not (padding-block: 4em) {
  .copyright {
    -webkit-padding-before: 4em;
    padding-block-start: 4em;
    -webkit-padding-after: 4em;
    padding-block-end: 4em;
  }
}
@supports not (padding-inline: 1.06em 1em) {
  .copyright {
    -webkit-padding-start: 1.06em;
    padding-inline-start: 1.06em;
    -webkit-padding-end: 1em;
    padding-inline-end: 1em;
  }
}

/************************************************
    LOGO
*************************************************/
.logo {
  margin: 0;
}

/************************************************
    Navigation
*************************************************/
.navigation {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 48rem) {
  .footer .navigation {
    -webkit-margin-end: -2.2em;
    margin-inline-end: -2.2em;
  }
}
.navigation-list {
  padding: 0;
  margin: 0;
}
@media (min-width: 48rem) {
  .navigation-list {
    -js-display: flex;
    display: flex;
    padding-inline: 1.1em;
  }
  @supports not (padding-inline: 1.1em) {
    .navigation-list {
      -webkit-padding-start: 1.1em;
      padding-inline-start: 1.1em;
      -webkit-padding-end: 1.1em;
      padding-inline-end: 1.1em;
    }
  }
}
.navigation__item {
  padding-inline: 1.1em;
}
@supports not (padding-inline: 1.1em) {
  .navigation__item {
    -webkit-padding-start: 1.1em;
    padding-inline-start: 1.1em;
    -webkit-padding-end: 1.1em;
    padding-inline-end: 1.1em;
  }
}
.header .navigation__item {
  padding-block: 0.5em;
}
@supports not (padding-block: 0.5em) {
  .header .navigation__item {
    -webkit-padding-before: 0.5em;
    padding-block-start: 0.5em;
    -webkit-padding-after: 0.5em;
    padding-block-end: 0.5em;
  }
}
@media (min-width: 48rem) {
  .header .navigation__item {
    padding-block: 0;
  }
  @supports not (padding-block: 0) {
    .header .navigation__item {
      -webkit-padding-before: 0;
      padding-block-start: 0;
      -webkit-padding-after: 0;
      padding-block-end: 0;
    }
  }
}
.navigation__item a {
  color: inherit;
  text-decoration: none;
}

/************************************************
    PAGE TOP
*************************************************/
.pageTop {
  font-size: 0.3125em;
  text-align: end;
  padding-inline: var(--gutter);
  -webkit-margin-before: -20.676em;
  margin-block-start: -20.676em;
  transform: translateY(-50%);
  pointer-events: none;
  position: sticky;
  inset-block-end: var(--gutter);
  z-index: 2;
}
@supports not (padding-inline: var(--gutter)) {
  .pageTop {
    -webkit-padding-start: var(--gutter);
    padding-inline-start: var(--gutter);
    -webkit-padding-end: var(--gutter);
    padding-inline-end: var(--gutter);
  }
}
@supports not (inset-block-end: var(--gutter)) {
  .pageTop {
    bottom: var(--gutter);
  }
}
@media (min-width: 48rem) {
  .pageTop {
    font-size: 0.625em;
    padding-inline: 100px;
    -webkit-margin-before: -11.8em;
    margin-block-start: -11.8em;
  }
  @supports not (padding-inline: 100px) {
    .pageTop {
      -webkit-padding-start: 100px;
      padding-inline-start: 100px;
      -webkit-padding-end: 100px;
      padding-inline-end: 100px;
    }
  }
}
.pageTop a {
  color: #1a1311;
  text-decoration: none;
  display: inline-block;
  background-color: #f8f8f5;
  padding-block: 3.25em;
  padding-inline: 3.375em;
  border-radius: 50%;
  pointer-events: auto;
}
@supports not (padding-block: 3.25em) {
  .pageTop a {
    -webkit-padding-before: 3.25em;
    padding-block-start: 3.25em;
    -webkit-padding-after: 3.25em;
    padding-block-end: 3.25em;
  }
}
@supports not (padding-inline: 3.375em) {
  .pageTop a {
    -webkit-padding-start: 3.375em;
    padding-inline-start: 3.375em;
    -webkit-padding-end: 3.375em;
    padding-inline-end: 3.375em;
  }
}
.pageTop a:hover {
  color: #f8f8f5;
  background-color: #1a1311;
}
.pageTop a::before {
  content: '\e900';
  font-family: "icomoon";
  font-weight: normal;
}

/************************************************
    パンくずリスト
*************************************************/
.breadcrumb {
  font-size: 0.875em;
  line-height: 1.75;
  padding-block: 1.3571428571em;
  padding-inline: var(--gutter);
}
@supports not (padding-block: 1.3571428571em) {
  .breadcrumb {
    -webkit-padding-before: 1.3571428571em;
    padding-block-start: 1.3571428571em;
    -webkit-padding-after: 1.3571428571em;
    padding-block-end: 1.3571428571em;
  }
}
@supports not (padding-inline: var(--gutter)) {
  .breadcrumb {
    -webkit-padding-start: var(--gutter);
    padding-inline-start: var(--gutter);
    -webkit-padding-end: var(--gutter);
    padding-inline-end: var(--gutter);
  }
}
.breadcrumb--gray {
  background-color: #f8f8f5;
}
.breadcrumb-list {
  max-inline-size: 85.7142857143em;
  padding: 0;
  margin-block: auto;
  margin-inline: auto;
}
@supports not (margin-block: auto) {
  .breadcrumb-list {
    -webkit-margin-before: auto;
    margin-block-start: auto;
    -webkit-margin-after: auto;
    margin-block-end: auto;
  }
}
@supports not (margin-inline: auto) {
  .breadcrumb-list {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
  }
}
.breadcrumb__item {
  display: inline;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: " > ";
  white-space: pre;
}
.breadcrumb a {
  color: #737b80;
  text-decoration: none;
}

/************************************************
    wp-admin
*************************************************/
.admin-bar #wpadminbar {
  position: fixed;
}

/************************************************
    Post
*************************************************/
.post.article {
  font-size: 0.875em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -ms-grid-rows: (auto)[5];
  grid-template-rows: repeat(5, auto);
}
@media (min-width: 48rem) {
  .post.article {
    font-size: 1em;
    padding-inline: var(--gutter);
  }
  @supports not (padding-inline: var(--gutter)) {
    .post.article {
      -webkit-padding-start: var(--gutter);
      padding-inline-start: var(--gutter);
      -webkit-padding-end: var(--gutter);
      padding-inline-end: var(--gutter);
    }
  }
}
.post.article .wp-post-image {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / -1;
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column-align: center;
  justify-self: center;
  -webkit-margin-before: 2em;
  margin-block-start: 2em;
}
.post__time {
  font-weight: 400;
  white-space: nowrap;
  display: block;
}
.posts .post__time {
  font-size: 1em;
  letter-spacing: 0.06em;
  -js-display: inline-flex;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 48rem) {
  .posts .post__time {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
@media (min-width: 48rem) {
  .posts .post__time::after {
    content: "";
    display: inline-block;
    background-color: #707070;
    inline-size: 2.5em;
    block-size: 1px;
    margin-inline: 0.75em;
  }
  @supports not (margin-inline: 0.75em) {
    .posts .post__time::after {
      -webkit-margin-start: 0.75em;
      margin-inline-start: 0.75em;
      -webkit-margin-end: 0.75em;
      margin-inline-end: 0.75em;
    }
  }
}
.post__title {
  margin: 0;
}
.posts .post__title {
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (min-width: 48rem) {
  .posts .post__title {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
.post__title.js-ac-trigger {
  -js-display: flex;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.post__title.js-ac-trigger .text {
  -webkit-padding-end: 1.06em;
  padding-inline-end: 1.06em;
}
.post__title.js-ac-trigger::after {
  content: '\e900';
  color: white;
  font-family: "icomoon";
  font-weight: normal;
  font-size: 0.6666666667em;
  letter-spacing: 0;
  line-height: 1;
  display: inline-block;
  background-color: black;
  padding-block: 0.8333333333em;
  padding-inline: 0.66875em;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  transform: scaleY(-1);
}
@supports not (padding-block: 0.8333333333em) {
  .post__title.js-ac-trigger::after {
    -webkit-padding-before: 0.8333333333em;
    padding-block-start: 0.8333333333em;
    -webkit-padding-after: 0.8333333333em;
    padding-block-end: 0.8333333333em;
  }
}
@supports not (padding-inline: 0.66875em) {
  .post__title.js-ac-trigger::after {
    -webkit-padding-start: 0.66875em;
    padding-inline-start: 0.66875em;
    -webkit-padding-end: 0.66875em;
    padding-inline-end: 0.66875em;
  }
}
.post__title.js-ac-trigger.js-is-active::after {
  transform: scaleY(1);
}
.post__content {
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding-block: 1.75em;
}
@supports not (padding-block: 1.75em) {
  .post__content {
    -webkit-padding-before: 1.75em;
    padding-block-start: 1.75em;
    -webkit-padding-after: 1.75em;
    padding-block-end: 1.75em;
  }
}
@media (min-width: 48rem) {
  .post__content {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
.post__content p {
  margin: 0;
}

.posts {
  padding: 0;
  margin: 0;
}
.posts-item {
  line-height: 1.75;
  padding-block: 0.4375em;
}
@supports not (padding-block: 0.4375em) {
  .posts-item {
    -webkit-padding-before: 0.4375em;
    padding-block-start: 0.4375em;
    -webkit-padding-after: 0.4375em;
    padding-block-end: 0.4375em;
  }
}
@media (min-width: 48rem) {
  .posts-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    -ms-grid-rows: (auto)[2];
    grid-template-rows: repeat(2, auto);
  }
}
.posts-item a {
  color: inherit;
  text-decoration: none;
}

/************************************************
    Page
*************************************************/
.page {
  display: block;
}
.page__title {
  color: white;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
  background: var(--theme-color) no-repeat center / cover;
  padding-block: 3.625em;
  padding-inline: 1.06em;
  margin: 0;
}
@supports not (padding-block: 3.625em) {
  .page__title {
    -webkit-padding-before: 3.625em;
    padding-block-start: 3.625em;
    -webkit-padding-after: 3.625em;
    padding-block-end: 3.625em;
  }
}
@supports not (padding-inline: 1.06em) {
  .page__title {
    -webkit-padding-start: 1.06em;
    padding-inline-start: 1.06em;
    -webkit-padding-end: 1.06em;
    padding-inline-end: 1.06em;
  }
}
@media (min-width: 48rem) {
  .page__title {
    font-size: 2em;
  }
}
@supports ((background-image: -webkit-image-set(url('img/page__title--about.webp') 1x, url('img/page__title--about@2x.webp') 2x, url('img/page__title--about@3x.webp') 3x)) or (background-image: image-set(url('img/page__title--about.webp') 1x, url('img/page__title--about@2x.webp') 2x, url('img/page__title--about@3x.webp') 3x))) {
  .webp .page__title--about {
    background-image: -webkit-image-set(url('img/page__title--about.webp') 1x, url('img/page__title--about@2x.webp') 2x, url('img/page__title--about@3x.webp') 3x);
    background-image: image-set(url('img/page__title--about.webp') 1x, url('img/page__title--about@2x.webp') 2x, url('img/page__title--about@3x.webp') 3x);
  }
}
@supports ((background-image: -webkit-image-set(url('img/page__title--about.jpg') 1x, url('img/page__title--about@2x.jpg') 2x, url('img/page__title--about@3x.jpg') 3x)) or (background-image: image-set(url('img/page__title--about.jpg') 1x, url('img/page__title--about@2x.jpg') 2x, url('img/page__title--about@3x.jpg') 3x))) {
  .no-webp .page__title--about {
    background-image: -webkit-image-set(url('img/page__title--about.jpg') 1x, url('img/page__title--about@2x.jpg') 2x, url('img/page__title--about@3x.jpg') 3x);
    background-image: image-set(url('img/page__title--about.jpg') 1x, url('img/page__title--about@2x.jpg') 2x, url('img/page__title--about@3x.jpg') 3x);
  }
}
@supports not ((background-image: -webkit-image-set(url('img/page__title--about.webp') 1x, url('img/page__title--about@2x.webp') 2x, url('img/page__title--about@3x.webp') 3x)) or (background-image: image-set(url('img/page__title--about.webp') 1x, url('img/page__title--about@2x.webp') 2x, url('img/page__title--about@3x.webp') 3x))) {
  .page__title--about {
    background-image: url('img/page__title--about.webp');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .webp .page__title--about {
      background-image: url('img/page__title--about@2x.webp');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .webp .page__title--about {
      background-image: url('img/page__title--about@3x.webp');
    }
  }
}
@supports not ((background-image: -webkit-image-set(url('img/page__title--about.jpg') 1x, url('img/page__title--about@2x.jpg') 2x, url('img/page__title--about@3x.jpg') 3x)) or (background-image: image-set(url('img/page__title--about.jpg') 1x, url('img/page__title--about@2x.jpg') 2x, url('img/page__title--about@3x.jpg') 3x))) {
  .page__title--about {
    background-image: url('img/page__title--about.jpg');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .no-webp .page__title--about {
      background-image: url('img/page__title--about@2x.jpg');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .no-webp .page__title--about {
      background-image: url('img/page__title--about@3x.jpg');
    }
  }
}
_:-ms-lang(x)::-ms-backdrop, .page__title--about {
  background-image: url('img/page__title--about.jpg');
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .page__title--about {
    background-image: url('img/page__title--about@2x.jpg');
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .page__title--about {
    background-image: url('img/page__title--about@3x.jpg');
  }
}

.page__title--profile {
  color: inherit;
  background-position: right 45% center;
}
@supports ((background-image: -webkit-image-set(url('img/page__title--profile.webp') 1x, url('img/page__title--profile@2x.webp') 2x, url('img/page__title--profile@3x.webp') 3x)) or (background-image: image-set(url('img/page__title--profile.webp') 1x, url('img/page__title--profile@2x.webp') 2x, url('img/page__title--profile@3x.webp') 3x))) {
  .webp .page__title--profile {
    background-image: -webkit-image-set(url('img/page__title--profile.webp') 1x, url('img/page__title--profile@2x.webp') 2x, url('img/page__title--profile@3x.webp') 3x);
    background-image: image-set(url('img/page__title--profile.webp') 1x, url('img/page__title--profile@2x.webp') 2x, url('img/page__title--profile@3x.webp') 3x);
  }
}
@supports ((background-image: -webkit-image-set(url('img/page__title--profile.jpg') 1x, url('img/page__title--profile@2x.jpg') 2x, url('img/page__title--profile@3x.jpg') 3x)) or (background-image: image-set(url('img/page__title--profile.jpg') 1x, url('img/page__title--profile@2x.jpg') 2x, url('img/page__title--profile@3x.jpg') 3x))) {
  .no-webp .page__title--profile {
    background-image: -webkit-image-set(url('img/page__title--profile.jpg') 1x, url('img/page__title--profile@2x.jpg') 2x, url('img/page__title--profile@3x.jpg') 3x);
    background-image: image-set(url('img/page__title--profile.jpg') 1x, url('img/page__title--profile@2x.jpg') 2x, url('img/page__title--profile@3x.jpg') 3x);
  }
}
@supports not ((background-image: -webkit-image-set(url('img/page__title--profile.webp') 1x, url('img/page__title--profile@2x.webp') 2x, url('img/page__title--profile@3x.webp') 3x)) or (background-image: image-set(url('img/page__title--profile.webp') 1x, url('img/page__title--profile@2x.webp') 2x, url('img/page__title--profile@3x.webp') 3x))) {
  .page__title--profile {
    background-image: url('img/page__title--profile.webp');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .webp .page__title--profile {
      background-image: url('img/page__title--profile@2x.webp');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .webp .page__title--profile {
      background-image: url('img/page__title--profile@3x.webp');
    }
  }
}
@supports not ((background-image: -webkit-image-set(url('img/page__title--profile.jpg') 1x, url('img/page__title--profile@2x.jpg') 2x, url('img/page__title--profile@3x.jpg') 3x)) or (background-image: image-set(url('img/page__title--profile.jpg') 1x, url('img/page__title--profile@2x.jpg') 2x, url('img/page__title--profile@3x.jpg') 3x))) {
  .page__title--profile {
    background-image: url('img/page__title--profile.jpg');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .no-webp .page__title--profile {
      background-image: url('img/page__title--profile@2x.jpg');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .no-webp .page__title--profile {
      background-image: url('img/page__title--profile@3x.jpg');
    }
  }
}
_:-ms-lang(x)::-ms-backdrop, .page__title--profile {
  background-image: url('img/page__title--profile.jpg');
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .page__title--profile {
    background-image: url('img/page__title--profile@2x.jpg');
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .page__title--profile {
    background-image: url('img/page__title--profile@3x.jpg');
  }
}

@media (min-width: 48rem) {
  .page__title--profile {
    background-position: center;
  }
}
.page__title--class {
  background-position: left 20% center;
}
@supports ((background-image: -webkit-image-set(url('img/page__title--class.webp') 1x, url('img/page__title--class@2x.webp') 2x, url('img/page__title--class@3x.webp') 3x)) or (background-image: image-set(url('img/page__title--class.webp') 1x, url('img/page__title--class@2x.webp') 2x, url('img/page__title--class@3x.webp') 3x))) {
  .webp .page__title--class {
    background-image: -webkit-image-set(url('img/page__title--class.webp') 1x, url('img/page__title--class@2x.webp') 2x, url('img/page__title--class@3x.webp') 3x);
    background-image: image-set(url('img/page__title--class.webp') 1x, url('img/page__title--class@2x.webp') 2x, url('img/page__title--class@3x.webp') 3x);
  }
}
@supports ((background-image: -webkit-image-set(url('img/page__title--class.jpg') 1x, url('img/page__title--class@2x.jpg') 2x, url('img/page__title--class@3x.jpg') 3x)) or (background-image: image-set(url('img/page__title--class.jpg') 1x, url('img/page__title--class@2x.jpg') 2x, url('img/page__title--class@3x.jpg') 3x))) {
  .no-webp .page__title--class {
    background-image: -webkit-image-set(url('img/page__title--class.jpg') 1x, url('img/page__title--class@2x.jpg') 2x, url('img/page__title--class@3x.jpg') 3x);
    background-image: image-set(url('img/page__title--class.jpg') 1x, url('img/page__title--class@2x.jpg') 2x, url('img/page__title--class@3x.jpg') 3x);
  }
}
@supports not ((background-image: -webkit-image-set(url('img/page__title--class.webp') 1x, url('img/page__title--class@2x.webp') 2x, url('img/page__title--class@3x.webp') 3x)) or (background-image: image-set(url('img/page__title--class.webp') 1x, url('img/page__title--class@2x.webp') 2x, url('img/page__title--class@3x.webp') 3x))) {
  .page__title--class {
    background-image: url('img/page__title--class.webp');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .webp .page__title--class {
      background-image: url('img/page__title--class@2x.webp');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .webp .page__title--class {
      background-image: url('img/page__title--class@3x.webp');
    }
  }
}
@supports not ((background-image: -webkit-image-set(url('img/page__title--class.jpg') 1x, url('img/page__title--class@2x.jpg') 2x, url('img/page__title--class@3x.jpg') 3x)) or (background-image: image-set(url('img/page__title--class.jpg') 1x, url('img/page__title--class@2x.jpg') 2x, url('img/page__title--class@3x.jpg') 3x))) {
  .page__title--class {
    background-image: url('img/page__title--class.jpg');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .no-webp .page__title--class {
      background-image: url('img/page__title--class@2x.jpg');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .no-webp .page__title--class {
      background-image: url('img/page__title--class@3x.jpg');
    }
  }
}
_:-ms-lang(x)::-ms-backdrop, .page__title--class {
  background-image: url('img/page__title--class.jpg');
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .page__title--class {
    background-image: url('img/page__title--class@2x.jpg');
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .page__title--class {
    background-image: url('img/page__title--class@3x.jpg');
  }
}

@media (min-width: 48rem) {
  .page__title--class {
    background-position: center;
  }
}
.page__title .text {
  display: block;
  max-inline-size: 37.5em;
  margin-inline: auto;
}
@supports not (margin-inline: auto) {
  .page__title .text {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
  }
}

/************************************************
    ヘッダー
*************************************************/
.header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  align-items: center;
  background-color: white;
  box-sizing: border-box;
  inline-size: 100%;
  -webkit-padding-start: var(--gutter);
  padding-inline-start: var(--gutter);
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 10;
}
@supports not (inset-block-start: 0) {
  .header {
    top: 0;
  }
}
@supports not (inset-inline-start: 0) {
  .header {
    left: 0;
  }
}
@media (min-width: 48rem) {
  .header {
    padding-block: 2em;
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
  }
  @supports not (padding-block: 2em) {
    .header {
      -webkit-padding-before: 2em;
      padding-block-start: 2em;
      -webkit-padding-after: 2em;
      padding-block-end: 2em;
    }
  }
}
.header .logo {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column-align: start;
  justify-self: start;
}
.header .logo img {
  inline-size: 10.875rem;
}
@media (min-width: 48rem) {
  .header .logo img {
    inline-size: 14.5rem;
  }
}
.header .toggle {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column-align: end;
  justify-self: end;
}
@media (min-width: 48rem) {
  .header .toggle {
    display: none;
  }
}

/*  モーダル
------------------------------------------------*/
.modal {
  -js-display: flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  box-sizing: border-box;
  inline-size: 100%;
  block-size: calc(100vh - 3.75rem);
  padding-block: 3.125rem;
  padding-inline: var(--gutter);
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset-block-start: 3.75rem;
  inset-inline-start: 0;
}
@supports not (padding-block: 3.125rem) {
  .modal {
    -webkit-padding-before: 3.125rem;
    padding-block-start: 3.125rem;
    -webkit-padding-after: 3.125rem;
    padding-block-end: 3.125rem;
  }
}
@supports not (padding-inline: var(--gutter)) {
  .modal {
    -webkit-padding-start: var(--gutter);
    padding-inline-start: var(--gutter);
    -webkit-padding-end: var(--gutter);
    padding-inline-end: var(--gutter);
  }
}
@supports not (inset-block-start: 3.75rem) {
  .modal {
    top: 3.75rem;
  }
}
@supports not (inset-inline-start: 0) {
  .modal {
    left: 0;
  }
}
@media (min-width: 48rem) {
  .modal {
    flex-direction: row;
    justify-content: flex-end;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    block-size: auto;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    position: static;
  }
}
.open .modal {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/************************************************
    フッター
*************************************************/
.footer {
  font-size: 0.875em;
  text-align: center;
  -webkit-padding-before: 3.5em;
  padding-block-start: 3.5em;
}
@media (min-width: 48rem) {
  .footer {
    font-size: 1em;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 14.5em 43em 1fr;
    grid-template-columns: 1fr 14.5em 43em 1fr;
    -ms-grid-rows: (auto)[3];
    grid-template-rows: repeat(3, auto);
    align-items: center;
  }
}
@media (min-width: 48rem) {
  .footer .logo {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
.footer .navigation {
  margin-block: 2em;
}
@supports not (margin-block: 2em) {
  .footer .navigation {
    -webkit-margin-before: 2em;
    margin-block-start: 2em;
    -webkit-margin-after: 2em;
    margin-block-end: 2em;
  }
}
@media (min-width: 48rem) {
  .footer .navigation {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column-align: end;
    justify-self: end;
  }
}
.footer .address {
  -webkit-margin-before: 3.5em;
  margin-block-start: 3.5em;
}
@media (min-width: 48rem) {
  .footer .address {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / -1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
@media (min-width: 48rem) {
  .footer .copyright {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / -1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}

/************************************************
    Section
*************************************************/
.section {
  font-size: 0.875em;
  padding-block: 4.6875rem;
  padding-inline: var(--gutter);
}
@supports not (padding-block: 4.6875rem) {
  .section {
    -webkit-padding-before: 4.6875rem;
    padding-block-start: 4.6875rem;
    -webkit-padding-after: 4.6875rem;
    padding-block-end: 4.6875rem;
  }
}
@supports not (padding-inline: var(--gutter)) {
  .section {
    -webkit-padding-start: var(--gutter);
    padding-inline-start: var(--gutter);
    -webkit-padding-end: var(--gutter);
    padding-inline-end: var(--gutter);
  }
}
@media (min-width: 48rem) {
  .section {
    font-size: 1em;
    padding-block: 6.25rem;
  }
  @supports not (padding-block: 6.25rem) {
    .section {
      -webkit-padding-before: 6.25rem;
      padding-block-start: 6.25rem;
      -webkit-padding-after: 6.25rem;
      padding-block-end: 6.25rem;
    }
  }
}

/************************************************
    お問い合わせ
*************************************************/
.section-Contact {
  color: white;
  background: no-repeat center / cover;
  padding-block: 8.125em 10.25em;
  padding-inline: var(--gutter);
  overflow: hidden;
}
@supports ((background-image: -webkit-image-set(url('img/section-Contact.webp') 1x, url('img/section-Contact@2x.webp') 2x, url('img/section-Contact@3x.webp') 3x)) or (background-image: image-set(url('img/section-Contact.webp') 1x, url('img/section-Contact@2x.webp') 2x, url('img/section-Contact@3x.webp') 3x))) {
  .webp .section-Contact {
    background-image: -webkit-image-set(url('img/section-Contact.webp') 1x, url('img/section-Contact@2x.webp') 2x, url('img/section-Contact@3x.webp') 3x);
    background-image: image-set(url('img/section-Contact.webp') 1x, url('img/section-Contact@2x.webp') 2x, url('img/section-Contact@3x.webp') 3x);
  }
}
@supports ((background-image: -webkit-image-set(url('img/section-Contact.jpg') 1x, url('img/section-Contact@2x.jpg') 2x, url('img/section-Contact@3x.jpg') 3x)) or (background-image: image-set(url('img/section-Contact.jpg') 1x, url('img/section-Contact@2x.jpg') 2x, url('img/section-Contact@3x.jpg') 3x))) {
  .no-webp .section-Contact {
    background-image: -webkit-image-set(url('img/section-Contact.jpg') 1x, url('img/section-Contact@2x.jpg') 2x, url('img/section-Contact@3x.jpg') 3x);
    background-image: image-set(url('img/section-Contact.jpg') 1x, url('img/section-Contact@2x.jpg') 2x, url('img/section-Contact@3x.jpg') 3x);
  }
}
@supports not ((background-image: -webkit-image-set(url('img/section-Contact.webp') 1x, url('img/section-Contact@2x.webp') 2x, url('img/section-Contact@3x.webp') 3x)) or (background-image: image-set(url('img/section-Contact.webp') 1x, url('img/section-Contact@2x.webp') 2x, url('img/section-Contact@3x.webp') 3x))) {
  .section-Contact {
    background-image: url('img/section-Contact.webp');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .webp .section-Contact {
      background-image: url('img/section-Contact@2x.webp');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .webp .section-Contact {
      background-image: url('img/section-Contact@3x.webp');
    }
  }
}
@supports not ((background-image: -webkit-image-set(url('img/section-Contact.jpg') 1x, url('img/section-Contact@2x.jpg') 2x, url('img/section-Contact@3x.jpg') 3x)) or (background-image: image-set(url('img/section-Contact.jpg') 1x, url('img/section-Contact@2x.jpg') 2x, url('img/section-Contact@3x.jpg') 3x))) {
  .section-Contact {
    background-image: url('img/section-Contact.jpg');
  }
  @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
    .no-webp .section-Contact {
      background-image: url('img/section-Contact@2x.jpg');
    }
  }
  @media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
    .no-webp .section-Contact {
      background-image: url('img/section-Contact@3x.jpg');
    }
  }
}
_:-ms-lang(x)::-ms-backdrop, .section-Contact {
  background-image: url('img/section-Contact.jpg');
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-Contact {
    background-image: url('img/section-Contact@2x.jpg');
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 3), screen and (min-resolution: 3dppx) {
  .no-webp _:-ms-lang(x)::-ms-backdrop, .no-webp .section-Contact {
    background-image: url('img/section-Contact@3x.jpg');
  }
}

@supports not (padding-block: 8.125em 10.25em) {
  .section-Contact {
    -webkit-padding-before: 8.125em;
    padding-block-start: 8.125em;
    -webkit-padding-after: 10.25em;
    padding-block-end: 10.25em;
  }
}
@supports not (padding-inline: var(--gutter)) {
  .section-Contact {
    -webkit-padding-start: var(--gutter);
    padding-inline-start: var(--gutter);
    -webkit-padding-end: var(--gutter);
    padding-inline-end: var(--gutter);
  }
}
@media (min-width: 48rem) {
  .profile + .section-Contact {
    -webkit-margin-before: 3.75em;
    margin-block-start: 3.75em;
  }
}
.section-Class--fee + .section-Contact {
  -webkit-margin-before: 10em;
  margin-block-start: 10em;
}
@media (min-width: 48rem) {
  .section-Contact > * {
    transform: translateX(-12.5rem);
  }
}
.section-Contact__title {
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
  -webkit-padding-start: 0.06em;
  padding-inline-start: 0.06em;
  margin: 0;
}
.section-Contact__content {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.75;
  text-align: center;
  -webkit-padding-start: 0.06em;
  padding-inline-start: 0.06em;
  -webkit-margin-before: 1.4375em;
  margin-block-start: 1.4375em;
}
.section-Contact__content p {
  margin: 0;
}
.section-Contact-navigation {
  font-size: 1.125em;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin-block: 2.3888888889em 0;
}
@supports not (margin-block: 2.3888888889em 0) {
  .section-Contact-navigation {
    -webkit-margin-before: 2.3888888889em;
    margin-block-start: 2.3888888889em;
    -webkit-margin-after: 0;
    margin-block-end: 0;
  }
}
.section-Contact-navigation__item {
  white-space: nowrap;
  flex: 1;
  max-inline-size: 17.7777777778em;
  padding: 0.6666666667em;
}
.section-Contact-navigation__item a {
  color: white;
  text-decoration: none;
  display: block;
  background-color: var(--theme-color);
  padding-block: 1.4722222222em;
  padding-inline: 1.06em 1em;
  border-radius: 2.2222222222em;
}
@supports not (padding-block: 1.4722222222em) {
  .section-Contact-navigation__item a {
    -webkit-padding-before: 1.4722222222em;
    padding-block-start: 1.4722222222em;
    -webkit-padding-after: 1.4722222222em;
    padding-block-end: 1.4722222222em;
  }
}
@supports not (padding-inline: 1.06em 1em) {
  .section-Contact-navigation__item a {
    -webkit-padding-start: 1.06em;
    padding-inline-start: 1.06em;
    -webkit-padding-end: 1em;
    padding-inline-end: 1em;
  }
}
.section-Contact-navigation__item a:hover {
  color: var(--theme-color);
  background-color: white;
}
.section-Contact-navigation__item--tel a {
  padding-block: 0.7222222222em 0.8333333333em;
}
@supports not (padding-block: 0.7222222222em 0.8333333333em) {
  .section-Contact-navigation__item--tel a {
    -webkit-padding-before: 0.7222222222em;
    padding-block-start: 0.7222222222em;
    -webkit-padding-after: 0.8333333333em;
    padding-block-end: 0.8333333333em;
  }
}
.section-Contact-navigation__item--tel .number {
  font-size: 1.1111111111em;
  display: block;
}
.section-Contact-navigation__item--tel .time {
  font-size: 0.7777777778em;
  display: block;
  -webkit-margin-before: 0.0714285714em;
  margin-block-start: 0.0714285714em;
}

/************************************************
    Teacher
*************************************************/
.section-Teacher {
  font-size: 0.875em;
  display: -ms-grid;
  display: grid;
  padding-block: 6.25em;
  padding-inline: var(--gutter);
}
@supports not (padding-block: 6.25em) {
  .section-Teacher {
    -webkit-padding-before: 6.25em;
    padding-block-start: 6.25em;
    -webkit-padding-after: 6.25em;
    padding-block-end: 6.25em;
  }
}
@supports not (padding-inline: var(--gutter)) {
  .section-Teacher {
    -webkit-padding-start: var(--gutter);
    padding-inline-start: var(--gutter);
    -webkit-padding-end: var(--gutter);
    padding-inline-end: var(--gutter);
  }
}
@media (min-width: 48rem) {
  .section-Teacher {
    font-size: 1em;
    -ms-grid-columns: 1fr 32.5em 7.5em 35em 1fr;
    grid-template-columns: 1fr 32.5em 7.5em 35em 1fr;
    -ms-grid-rows: (auto)[2] 1fr auto;
    grid-template-rows: repeat(2, auto) 1fr auto;
  }
}
.section-Teacher--gray {
  background-color: #f8f8f5;
}
.section-Teacher__photo {
  -ms-grid-column-align: center;
  justify-self: center;
}
@media (min-width: 48rem) {
  .section-Teacher__photo {
    -ms-grid-column: 4;
    grid-column: 4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1 / -1;
  }
}
.section-Teacher__title {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.6666666667;
  margin-block: 2.4em 0;
}
@supports not (margin-block: 2.4em 0) {
  .section-Teacher__title {
    -webkit-margin-before: 2.4em;
    margin-block-start: 2.4em;
    -webkit-margin-after: 0;
    margin-block-end: 0;
  }
}
@media (min-width: 48rem) {
  .section-Teacher__title {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
.section-Teacher__title .before {
  letter-spacing: 0.1em;
  display: block;
}
.section-Teacher__title .text {
  font-size: 1.7em;
  letter-spacing: 0.08em;
  display: block;
}
.section-Teacher__2ndTitle {
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-block: 1.15em 0;
}
@supports not (margin-block: 1.15em 0) {
  .section-Teacher__2ndTitle {
    -webkit-margin-before: 1.15em;
    margin-block-start: 1.15em;
    -webkit-margin-after: 0;
    margin-block-end: 0;
  }
}
@media (min-width: 48rem) {
  .section-Teacher__2ndTitle {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
.section-Teacher__content {
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  -webkit-margin-before: 3.7222222222em;
  margin-block-start: 3.7222222222em;
}
@media (min-width: 48rem) {
  .section-Teacher__content {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}
.section-Teacher__content p {
  margin: 0;
}
.section-Teacher .button {
  -ms-grid-column-align: end;
  justify-self: end;
  -webkit-margin-before: 2em;
  margin-block-start: 2em;
}
@media (min-width: 48rem) {
  .section-Teacher .button {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 4;
    grid-row: 4;
  }
}
/*# sourceMappingURL=maps/style.css.map */