@charset "UTF-8";
/* ========================================================================================= ^^
    Custom properties
============================================================================================ ^^ */
:root {
  --font-shuei-kaku-gothic-l: '秀英角ゴシック銀 L', 'Shuei KakuGo Gin L', sans-serif;
  --font-shuei-kaku-gothic-m: '秀英角ゴシック銀 M', 'Shuei KakuGo Gin M', sans-serif;
  --font-shuei-kaku-gothic-b: '秀英角ゴシック銀 B', 'Shuei KakuGo Gin B', sans-serif;
  --font-serif: "游明朝", "Yu Mincho", YuMincho, YakuHanMP_Noto, "Noto Serif JP", "游明朝体", 'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HGS明朝E','ＭＳ Ｐ明朝', serif;
  --black: #000;
  --white: #fff;
  --red: #f00;
  --red2: #b43444;
  --green: #00533c;
  --green2: #006c5a;
  --green3: #268273;
  --gray: #d1cdc2;
  --gray2: #eff0eb;
  --beige: #f0f0e6;
  --dark-brown: #352f29;
  --font-base-color: #333;
  --toggle-menu-color: #000;
  --open-toggle-menu-color: #000;
  --fixed-toggle-menu-color: #fff;
  --navigation-border-color: #00533c;
  --sp-navigation-bg-color: 255 255 255 / 0.9;
  --sp-navigation-border-color: #eee;
  --navigation-hover-color: #fdd000;
  --footer-navigation-border-color: #000;
  --beige-button-text-color: #41480d;
  --beige-button-leaf-color: #2d3309;
  --dark-brown-button-leaf-color: #fff;
  --fixed-menu-border-color: #fff;
  --fixed-menu-bg-color: #00533c;
  --fixed-menu-color: #fff;
  --page-top-bg-color: #00533c;
  --slider-pagination-color: #f0f0e6;
  --view-more-bg-color: #00533c;
  --information-bg-color: #d9eee5;
  --section-title-color: #00533c;
  --section-title-color2: #060001;
  --num-color: #d73444;
  --line-color: #000;
  --facility-info-color: #006c5a;
  --plan-header-border-color: #333;
  --space-bg-color: #f6eedf;
  --important-color: #d73444;
}

/* ========================================================================================= ^^
	uaplus.css 
============================================================================================ ^^ */
/**
 * uaplus.css version 0.3.0
 */
/**
 * Wrapping everything in an anonymous layer ensures that selectors
 * in UA+ have the lowest specificty or the highest when using
 * !important.
 */
@layer {
  /**
    * Different box model
    * 
    * We use the traditional box model, where the padding and border 
    * of the element is drawn inside and not outside the specified 
    * width and height. That makes combining relative and absolute 
    * units in properties like <code>inline-size</code> and 
    * <code>block-size</code> easier.
    * 
    * See https://en.wikipedia.org/wiki/CSS_box_model
    */
  *,
  *::after,
  *::before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  /**
    * Improve focus styles
    *
    * Add spacing between content and its focus outline.
    */
  :focus-visible {
    outline-offset: 3px;
  }
  /**
    * Disable text size adjustment
    * 
    * To improve readability on non-mobile optimized websites, browsers
    * like mobile Safari increase the default font size when you switch
    * a website from portrait to landscape. We don't want that for our 
    * optimized sites.
    *
    * See https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/
    */
  html {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
     -ms-text-size-adjust: none;
         text-size-adjust: none;
  }
  /**
    * Increase line height
    *
    * Long paragraphs are easier to read if the line height is higher.
    */
  html {
    line-height: 1.5;
  }
  /**
    * Add scrollbar gutter
    *
    * Prevent the page from “jumping” when switching from a long to a short page.
    *
    */
  html {
    scrollbar-gutter: stable;
  }
  /**
    * Remove UA styles for h1s nested in sectioning content
    *
    * Nesting h1s in section, articles, etc., shouldn't influence the 
    * styling of the heading since nesting doesn't influence 
    * semantics either.
    * 
    * See https://github.com/whatwg/html/issues/7867#issuecomment-2632395167
    * See https://github.com/whatwg/html/pull/11102
    * See https://html.spec.whatwg.org/#sections-and-headings
    */
  h1 {
    font-size: 2em;
    margin-block: 0.67em;
  }
  /**
    * Improve abbreviations with titles
    * 
    * The abbr element with the title isn't helpful regarding 
    * accessibility because support is inconsistent, and it's only 
    * accessible to some users. Still, it's commonly used. 
    * This rule shows a dotted underline on abbreviations in all 
    * browsers (there's a bug in Safari) and changes the cursor.
    * 
    * See https://adrianroselli.com/2024/01/using-abbr-element-with-title-attribute.html
    */
  abbr[title] {
    cursor: help;
    text-decoration-line: underline;
    text-decoration-style: dotted;
  }
  /**
    * Optimize mark element in Forced Colors Mode
    *
    * The colors of the mark element don't change in Forced Colors Mode,
    * which can be problematic. Use system colors instead.
    * 
    * See https://adrianroselli.com/2017/12/tweaking-text-level-styles.html#MarkWHCM
    */
  @media (forced-colors: active) {
    mark {
      color: HighlightText;
      background-color: Highlight;
    }
  }
  /**
    * Avoid overflow caused by embedded content
    * 
    * Ensure that embedded content (audio, video, images, etc.) 
    * doesn't overflow its container.
    */
  audio,
  iframe,
  img,
  svg,
  video {
    max-block-size: 100%;
    max-inline-size: 100%;
  }
  /**
    * Prevent fieldsets from causing overflow
    *
    * Reset the default `min-inline-size: min-content` to prevent
    * children from stretching fieldsets
    *
    * See https://github.com/twbs/bootstrap/issues/12359
    * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
    */
  fieldset {
    min-inline-size: 0;
  }
  /**
    * Turn labels into block elements
    * 
    * Labels for inputs, selects, and textarea should be block 
    * elements.
    */
  label:has(+ input:not([type=radio], [type=checkbox]), select, textarea) {
    display: block;
  }
  /**
    * Increase the block-size of textareas
    *
    * The default height of textareas is small. We increase it a bit.
    */
  textarea:not([rows]) {
    min-block-size: 6em;
  }
  /**
    * Inherit font styling in form elements
    * 
    * buttons, inputs, selects, and textarea should have the same font
    * family and size as the rest of the page.
    */
  button,
  input,
  select,
  textarea {
    font-family: inherit;
    font-size: inherit;
  }
  /**
    * Normalize search input styles
    *  
    * Remove the rounded corners of search inputs on macOS and IOS 
    * and normalize the background color
    */
  [type=search] {
    -webkit-appearance: textfield;
  }
  /* iOS only */
  @supports (-webkit-touch-callout: none) {
    [type=search] {
      border: 1px solid -apple-system-secondary-label;
      background-color: canvas;
    }
  }
  /**
    * Maintain direction in some input types
    * 
    * Some input types should remain left-aligned in right-to-left
    * languages,but only if the value isn't empty because the 
    * placeholder should be right-aligned.
    *
    * See https://rtlstyling.com/posts/rtl-styling#form-inputs
    */
  input:where([type=tel], [type=url], [type=email], [type=number]):not(:-moz-placeholder) {
    direction: ltr;
  }
  input:where([type=tel], [type=url], [type=email], [type=number]):not(:-ms-input-placeholder) {
    direction: ltr;
  }
  input:where([type=tel], [type=url], [type=email], [type=number]):not(:placeholder-shown) {
    direction: ltr;
  }
  /**
    * Improve table styling
    *  
    * With the default styling, tables are hard to scan. These rules 
    * add padding and collapsed borders.
    */
  table {
    border-collapse: collapse;
    border: 1px solid;
  }
  th,
  td {
    border: 1px solid;
    padding: 0.25em 0.5em;
    vertical-align: top;
  }
  /**
    * Fading dialogs
    *  
    * Add fade in and fade out transitions for the dialog element
    * and backdrops
    */
  dialog::-ms-backdrop {
    background: oklch(0% 0 0deg / 0.3);
  }
  dialog::backdrop {
    background: oklch(0% 0 0deg / 0.3);
  }
  dialog::-ms-backdrop {
    opacity: 0;
    -ms-transition: opacity 150ms ease-out, display 150ms allow-discrete, overlay 150ms allow-discrete;
    transition: opacity 150ms ease-out, display 150ms allow-discrete, overlay 150ms allow-discrete;
  }
  dialog,
  [popover],
  dialog::backdrop {
    opacity: 0;
    -webkit-transition: opacity 150ms ease-out, display 150ms allow-discrete, overlay 150ms allow-discrete;
    transition: opacity 150ms ease-out, display 150ms allow-discrete, overlay 150ms allow-discrete;
  }
  dialog[open]::-ms-backdrop {
    opacity: 1;
  }
  dialog[open],
  :popover-open,
  dialog[open]::backdrop {
    opacity: 1;
  }
  @starting-style {
    dialog[open]::-ms-backdrop {
      opacity: 0;
    }
    dialog[open],
    :popover-open,
    dialog[open]::backdrop {
      opacity: 0;
    }
  }
  /**
    * Increase specificity of [hidden]
    *  
    * Make it harder to accidentally unhide elements with the 
    * [hidden] attribute while still maintaining the until-found 
    * functionality.
    */
  [hidden]:not([hidden=until-found]) {
    display: none !important;
  }
  /**
    * Turn images into block elements
    */
  img {
    display: block;
  }
  /**
    * Change cursor of <summary>
    *
    * By default, only the ::marker inside the summary uses the 
    * default cursor.
    */
  summary {
    cursor: default;
  }
  /**
    * Remove the default border from iframes
    */
  iframe {
    border: none;
  }
  /**
   * By default popovers look like modals without a backdrop.
   * This makes use of the implicit anchor in popvers to position
   * it closely to the trigger.
   */
  @supports (position-area: block-end span-inline-end) {
    [popover] {
      margin: 0;
      position-area: block-end span-inline-end;
    }
  }
}
/* ========================================================================================= ^^
	Reset
============================================================================================ ^^ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  background: url(../img/common/bg.jpg) repeat-y 50% 0/100% auto;
}

main {
  display: block;
}
@media (max-width: 1920px) {
  main {
    margin: 0 auto;
  }
}

.content {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

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

dl {
  margin: 0;
}

dt, dd {
  padding: 0;
  margin: 0;
}

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

figure {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

button {
  padding: 0;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
button:focus {
  outline: none;
}

a {
  text-decoration: none;
}
a:link {
  color: var(--font-color);
}
a:visited {
  color: var(--font-color);
}
a:hover {
  color: var(--font-color);
}
a:focus {
  color: var(--font-color);
}

/* ======================================================================================== ^^
	Typography
=========================================================================================== ^^ */
html {
  height: 100%;
  font-size: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: 100%;
  color: var(--font-base-color);
  font-weight: 500;
  line-height: 1.75;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

sup {
  font-size: 0.7em;
}

abbr[title] {
  text-decoration: none;
}

a:link {
  color: var(--font-color);
  text-decoration: none;
}
a:visited {
  color: var(--font-color);
  text-decoration: none;
}
a:hover {
  color: var(--font-color);
  text-decoration: none;
  opacity: 0.7;
}
a:focus {
  color: var(--font-color);
  text-decoration: none;
}

/* ======================================================================================== ^^
	Utilities
============================================================================================ ^^ */
.tel-link,
a[href^="tel:"] {
  pointer-events: all;
  cursor: pointer;
}
@media (min-width: 768px) {
  .tel-link,
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

a {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .u-pc-hide-br {
    display: none;
  }
}

@media not all and (min-width: 768px) {
  .u-sp-hide-br {
    display: none;
  }
}

@media not all and (min-width: 1280px) {
  .u-tb-hide-br {
    display: none;
  }
}

@media (min-width: 1280px) {
  .u-tb-sp-br {
    display: none;
  }
}

.u-pc-tb-hide-br {
  display: none;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .u-pc-tb-hide-br {
    display: inline;
  }
}
@media (min-width: 1280px) {
  .u-pc-tb-hide-br {
    display: none;
  }
}

/* ========================================================================================= ^^
  Keyframes
============================================================================================ ^^ */
@-webkit-keyframes leaf-float {
  0% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-15px) scale(1.4);
            transform: translateY(-15px) scale(1.4);
    opacity: 0;
  }
}
@keyframes leaf-float {
  0% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-15px) scale(1.4);
            transform: translateY(-15px) scale(1.4);
    opacity: 0;
  }
}
@-webkit-keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}
@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}
@-webkit-keyframes logoReveal {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8) translateY(20px);
            transform: scale(0.8) translateY(20px);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.02) translateY(-5px);
            transform: scale(1.02) translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@keyframes logoReveal {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8) translateY(20px);
            transform: scale(0.8) translateY(20px);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.02) translateY(-5px);
            transform: scale(1.02) translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@-webkit-keyframes lineExpand {
  to {
    width: 120px;
  }
}
@keyframes lineExpand {
  to {
    width: 120px;
  }
}
/* ========================================================================================= ^^
  Color
============================================================================================ ^^ */
.u-color-green {
  color: var(--green);
}

.u-color-red {
  color: var(--red2);
}

/* ========================================================================================= ^^
  Main
============================================================================================ ^^ */
@media not all and (min-width: 768px) {
  .l-site-main {
    overflow-x: hidden;
  }
}

/* ========================================================================================= ^^
  Section
============================================================================================ ^^ */
.l-section {
  width: 100%;
  padding: 0 2.6666666667vw;
}
@media (min-width: 768px) {
  .l-section {
    padding: 0 20px;
  }
}
.l-section__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* ========================================================================================= ^^
  Page contents
============================================================================================ ^^ */
.l-page-contents {
  padding: 0 5.3333333333vw;
  background: url(../img/common/bg02.jpg) repeat-y 50% 0/100% auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .l-page-contents {
    padding: 0 20px;
  }
}
.page-quality .l-page-contents {
  background: url(../img/common/bg02.jpg) repeat-y 50% 0/100% auto;
}
.l-page-contents .l-section {
  padding: 0;
}

/* ========================================================================================= ^^
  Facility section
============================================================================================ ^^ */
.l-facility-section.l-section {
  padding: 10.6666666667vw 5.3333333333vw 8vw;
  background: var(--white) url(../img/location/bg-section.png) no-repeat 0 0/100% auto;
}
@media (min-width: 768px) {
  .l-facility-section.l-section {
    padding: 11.71875vw 1.5625vw 4.296875vw;
  }
}
@media (min-width: 1280px) {
  .l-facility-section.l-section {
    padding: 150px 0 55px;
  }
}
.l-facility-section.l-section .l-section__inner {
  max-width: 1200px;
}
.l-facility-section.l-section .c-facility-header {
  margin-bottom: 16.5333333333vw;
}
@media (min-width: 768px) {
  .l-facility-section.l-section .c-facility-header {
    margin-bottom: 9.765625vw;
  }
}
@media (min-width: 1280px) {
  .l-facility-section.l-section .c-facility-header {
    margin-bottom: 125px;
  }
}
.l-facility-section.l-section .c-grid {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100%;
  row-gap: 6.08vw;
}
@media (min-width: 768px) {
  .l-facility-section.l-section .c-grid {
    grid-template-columns: repeat(2, 44.9122807018%);
    -webkit-column-gap: 10.1754385965%;
       -moz-column-gap: 10.1754385965%;
            column-gap: 10.1754385965%;
    row-gap: 6.015625vw;
  }
}
@media (min-width: 1280px) {
  .l-facility-section.l-section .c-grid {
    row-gap: 77px;
  }
}

/* ========================================================================================= ^^
  Button
============================================================================================ ^^ */
.c-button {
  display: inline-block;
}
.c-button__link {
  width: 100%;
  height: 100%;
  font-size: clamp(0.688rem, 0.558rem + 0.55vw, 1rem);
  line-height: 1;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-button--beige .c-button__link {
  background-color: var(--beige);
}
.c-button--beige .c-button__link:link {
  color: var(--beige-button-text-color);
}
.c-button--beige .c-button__link:visited {
  color: var(--beige-button-text-color);
}
.c-button--beige .c-button__link:hover {
  color: var(--beige-button-text-color);
}
.c-button--beige .c-button__link:focus {
  color: var(--beige-button-text-color);
}
.c-button--dark-brown .c-button__link {
  background-color: var(--dark-brown);
}
.c-button--dark-brown .c-button__link:link {
  color: var(--white);
}
.c-button--dark-brown .c-button__link:visited {
  color: var(--white);
}
.c-button--dark-brown .c-button__link:hover {
  color: var(--white);
}
.c-button--dark-brown .c-button__link:focus {
  color: var(--white);
}
.c-button--leaf .c-button__link {
  position: relative;
}
.c-button--leaf .c-button__link::after {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: -2px;
  right: -7px;
  font-size: 14px;
  color: var(--dark-brown-button-leaf-color);
  opacity: 0;
  z-index: 10;
}
.c-button--leaf .c-button__link::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: 14px;
  left: 1px;
  font-size: 10px;
  color: var(--dark-brown-button-leaf-color);
  opacity: 0;
  z-index: 10;
}
@media (hover: hover) {
  .c-button--leaf .c-button__link:hover::after {
    -webkit-animation: leaf-float 1.5s 0.2s ease-out forwards;
            animation: leaf-float 1.5s 0.2s ease-out forwards;
  }
}
@media (hover: hover) {
  .c-button--leaf .c-button__link:hover::before {
    -webkit-animation: leaf-float 1.5s 0.3s ease-out forwards;
            animation: leaf-float 1.5s 0.3s ease-out forwards;
  }
}
.c-button--leaf.c-button--beige .c-button__link::after {
  color: var(--beige-button-leaf-color);
}
.c-button--leaf.c-button--beige .c-button__link::before {
  color: var(--beige-button-leaf-color);
}
.c-button--leaf-2 .c-button__link {
  position: relative;
}
.c-button--leaf-2 .c-button__link::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 8px;
  left: -12px;
  font-size: 16px;
  color: var(--white);
  opacity: 0;
  z-index: 10;
}
.c-button--leaf-2 .c-button__link .leaf-left-small::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 24px;
  left: -2px;
  font-size: 12px;
  color: var(--white);
  opacity: 0;
  z-index: 10;
}
.c-button--leaf-2 .c-button__link::after {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: 0px;
  right: -14px;
  font-size: 16px;
  color: var(--white);
  opacity: 0;
  z-index: 10;
}
.c-button--leaf-2 .c-button__link .leaf-right-small::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: 16px;
  right: -4px;
  font-size: 12px;
  color: var(--white);
  opacity: 0;
  z-index: 10;
}
.c-button--leaf-2 .c-button__link:hover::before {
  -webkit-animation: leaf-float 1.5s ease-out forwards;
          animation: leaf-float 1.5s ease-out forwards;
}
.c-button--leaf-2 .c-button__link:hover .leaf-left-small::before {
  -webkit-animation: leaf-float 1.5s 0.1s ease-out forwards;
          animation: leaf-float 1.5s 0.1s ease-out forwards;
}
.c-button--leaf-2 .c-button__link:hover::after {
  -webkit-animation: leaf-float 1.5s 0.2s ease-out forwards;
          animation: leaf-float 1.5s 0.2s ease-out forwards;
}
.c-button--leaf-2 .c-button__link:hover .leaf-right-small::before {
  -webkit-animation: leaf-float 1.5s 0.3s ease-out forwards;
          animation: leaf-float 1.5s 0.3s ease-out forwards;
}

/* ========================================================================================= ^^
  Main visual slider
============================================================================================ ^^ */
.c-main-visual-slider {
  max-width: 1280px;
  width: 100%;
  padding-bottom: 13.3333333333vw;
}
@media (min-width: 768px) {
  .c-main-visual-slider {
    padding-bottom: 50px;
  }
}
.c-main-visual-slider__pagination.swiper-pagination-horizontal.swiper-pagination-bullets {
  height: 2.6666666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.2vw;
     -moz-column-gap: 3.2vw;
          column-gap: 3.2vw;
  bottom: 5.3333333333vw;
}
@media (min-width: 768px) {
  .c-main-visual-slider__pagination.swiper-pagination-horizontal.swiper-pagination-bullets {
    height: 14px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    bottom: 20px;
  }
}
.c-main-visual-slider__pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  margin: 0;
  border: 2px solid var(--slider-pagination-color);
  border-radius: calc(infinity * 1px);
  background-color: transparent;
  opacity: 1;
}
@media (min-width: 768px) {
  .c-main-visual-slider__pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
}
.c-main-visual-slider__pagination.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--slider-pagination-color);
}

/* ========================================================================================= ^^
  Image block
============================================================================================ ^^ */
.c-image-block {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-image-block {
    display: grid;
    grid-template-columns: 56.40625% 43.59375%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-image-block__image {
  margin-bottom: 8vw;
}
@media (min-width: 768px) {
  .c-image-block__image {
    margin-bottom: 0;
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .c-image-block__contents {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.c-image-block__title {
  margin: 0 auto 5.8666666667vw;
}
@media (min-width: 768px) {
  .c-image-block__title {
    margin-bottom: 43px;
  }
}
.c-image-block__text {
  margin-bottom: 4.8vw;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(1rem, 0.896rem + 0.44vw, 1.25rem);
  line-height: 2.075;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 300;
}
@media (min-width: 768px) {
  .c-image-block__text {
    margin-bottom: 36px;
  }
}
.c-image-block__text p:last-of-type {
  margin-bottom: 0;
}
.c-image-block__button {
  width: 90.6666666667vw;
  height: 10.6666666667vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-image-block__button {
    width: 26.5625vw;
    height: 4.6875vw;
  }
}
@media (min-width: 1280px) {
  .c-image-block__button {
    width: 340px;
    height: 60px;
  }
}
@media (min-width: 768px) {
  .c-image-block--reverse {
    grid-template-columns: 43.59375% 56.40625%;
  }
}
@media (min-width: 768px) {
  .c-image-block--reverse .c-image-block__image {
    grid-column: 2/3;
  }
}
@media (min-width: 768px) {
  .c-image-block--reverse .c-image-block__contents {
    grid-column: 1/2;
  }
}

/* ========================================================================================= ^^
  View more
============================================================================================ ^^ */
.c-view-more {
  border-radius: calc(infinity * 1px);
  overflow: hidden;
}
.c-view-more__link {
  width: 100%;
  height: 100%;
  background: var(--view-more-bg-color) url(../img/common/icon-arrow.svg) no-repeat;
  background-position: calc(100% - 5.3333333333vw) 50%;
  background-size: 1.6vw auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .c-view-more__link {
    background-position: calc(100% - 20px) 50%;
    background-size: 6px auto;
  }
}
.c-view-more__link img {
  width: 30.6666666667vw;
}
@media (min-width: 768px) {
  .c-view-more__link img {
    width: 115px;
  }
}

/* ========================================================================================= ^^
  Information
============================================================================================ ^^ */
.c-information {
  padding: 10px;
  background-color: var(--information-bg-color);
}
.c-information__inner {
  width: 100%;
  height: 100%;
}
.c-information__list {
  padding: 8vw 5.3333333333vw 8vw 0;
}
@media (min-width: 768px) {
  .c-information__list {
    padding: 30px 20px 30px 0;
  }
}
.c-information__list-item {
  font-family: var(--font-serif);
  font-size: clamp(0.875rem, 0.823rem + 0.22vw, 1rem);
  line-height: 1.5555555556;
  display: grid;
  grid-template-columns: 100%;
}
@media (min-width: 768px) {
  .c-information__list-item {
    grid-template-columns: 114px 1fr;
  }
}
.c-information__content p:last-of-type {
  margin-bottom: 0;
}

/* ========================================================================================= ^^
  Ranking
============================================================================================ ^^ */
.c-ranking.swiper-horizontal {
  max-width: 1180px;
  width: 80vw;
  margin: 0 auto;
  overflow: visible;
}
@media (min-width: 768px) {
  .c-ranking.swiper-horizontal {
    width: 90vw;
  }
}
@media (min-width: 1280px) {
  .c-ranking.swiper-horizontal {
    width: 100%;
  }
}
.c-ranking.swiper-horizontal .c-ranking__button {
  width: 5.3333333333vw;
  height: 8vw;
}
@media (min-width: 768px) {
  .c-ranking.swiper-horizontal .c-ranking__button {
    width: 39px;
    height: 58px;
  }
}
.c-ranking.swiper-horizontal .c-ranking__button svg {
  display: none;
}
.c-ranking.swiper-horizontal .c-ranking__button--prev {
  background: url(../img/common/prev.svg) no-repeat 50% 50%/100% auto;
  left: -8vw;
}
@media (min-width: 768px) {
  .c-ranking.swiper-horizontal .c-ranking__button--prev {
    left: -3.90625vw;
  }
}
@media (min-width: 1344px) {
  .c-ranking.swiper-horizontal .c-ranking__button--prev {
    left: -85px;
  }
}
.c-ranking.swiper-horizontal .c-ranking__button--next {
  background: url(../img/common/next.svg) no-repeat 50% 50%/100% auto;
  right: -8vw;
}
@media (min-width: 768px) {
  .c-ranking.swiper-horizontal .c-ranking__button--next {
    right: -3.90625vw;
  }
}
@media (min-width: 1344px) {
  .c-ranking.swiper-horizontal .c-ranking__button--next {
    right: -85px;
  }
}

/* ========================================================================================= ^^
  Key visual
============================================================================================ ^^ */
.c-key-visual {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto 9.3333333333vw;
}
@media (min-width: 768px) {
  .c-key-visual {
    margin-bottom: 35px;
  }
}
.c-key-visual__cap {
  padding-top: 5px;
  margin-bottom: 0;
  font-size: clamp(0.688rem, 0.662rem + 0.11vw, 0.75rem);
  color: var(--white);
  text-align: right;
}

/* ========================================================================================= ^^
  Distance
============================================================================================ ^^ */
.c-distance__caption {
  padding-top: 2.1333333333vw;
}
@media (min-width: 768px) {
  .c-distance__caption {
    padding-top: 16px;
  }
}
.c-distance__title {
  padding-bottom: 1.6vw;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(1rem, 0.845rem + 0.66vw, 1.375rem);
  line-height: 1.2272727273;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 768px) {
  .c-distance__title {
    padding-bottom: 6px;
  }
}
.c-distance__title--2l {
  height: auto;
  padding-bottom: 1.6vw;
  margin-top: -1.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .c-distance__title--2l {
    height: 66px;
    padding-bottom: 6px;
    margin-top: -5px;
  }
}
.c-distance hr {
  width: 100%;
  height: 1px;
  margin-top: 2px;
  margin-bottom: -3px;
  background-color: var(--line-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-distance__text {
  margin-bottom: 0;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(1rem, 0.845rem + 0.66vw, 1.375rem);
  line-height: 1.8818181818;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 500;
}
.c-distance__text .num {
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.625rem, 1.366rem + 1.1vw, 2.25rem);
  color: var(--num-color);
  font-weight: 700;
}
.c-distance__note {
  font-size: clamp(0.75rem, 0.698rem + 0.22vw, 0.875rem);
}
.c-distance__note li {
  padding-left: 0.8em;
  text-indent: -0.8em;
}

/* ========================================================================================= ^^
  Table
============================================================================================ ^^ */
.c-table {
  overflow-x: auto;
  overflow-y: hidden;
}
.c-table__table {
  width: 130%;
  border-top: #333;
  border-left: #333;
  background-color: var(--white);
  font-size: clamp(1rem, 0.819rem + 0.77vw, 1.438rem);
  line-height: 1.2173913043;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .c-table__table {
    width: 100%;
  }
}
.c-table__table caption {
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1rem, 0.819rem + 0.77vw, 1.438rem);
  line-height: 2.1739130435;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-align: left;
}
.c-table__table th, .c-table__table td {
  padding: 5px;
  border-right: #333;
  border-bottom: #333;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01em;
  vertical-align: middle;
  white-space: nowrap;
}
.c-table__table thead th {
  background-color: #d9eee5;
}
.c-table__caption {
  padding-top: 3px;
  font-size: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.c-table__cite {
  padding-top: 10px;
  font-size: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem);
  line-height: 1.2;
  font-style: normal;
  display: block;
}

/* ========================================================================================= ^^
  Facility header
============================================================================================ ^^ */
@media (min-width: 768px) {
  .c-facility-header {
    display: grid;
    grid-template-columns: 52.8333333333% 47.1666666667%;
    grid-template-rows: auto 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    row-gap: 4vw;
  }
}
@media (min-width: 1280px) {
  .c-facility-header {
    row-gap: 48px;
  }
}
.c-facility-header .c-section-title {
  padding-bottom: 3.2vw;
  margin-top: 6.9333333333vw;
  margin-bottom: 5.3333333333vw;
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(to right, var(--green) 200px, var(--gray) 200px) 1;
     border-image: linear-gradient(to right, var(--green) 200px, var(--gray) 200px) 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .c-facility-header .c-section-title {
    padding-bottom: 1.875vw;
    margin-top: 4.0625vw;
    margin-bottom: 0;
    -o-border-image: linear-gradient(to right, var(--green) 200px, var(--gray) 200px) 1;
       border-image: linear-gradient(to right, var(--green) 200px, var(--gray) 200px) 1;
    row-gap: 0.78125vw;
  }
}
@media (min-width: 1280px) {
  .c-facility-header .c-section-title {
    padding-bottom: 24px;
    margin-top: 52px;
    row-gap: 10px;
  }
}
.c-facility-header .c-section-title .en {
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.875rem, 1.59rem + 1.22vw, 2.563rem);
  color: var(--green2);
  line-height: 1.0097560976;
  letter-spacing: 0.1em;
}
.c-facility-header .c-section-title .jpn {
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.c-facility-header .c-text {
  margin-bottom: 8vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.125rem, 0.814rem + 1.33vw, 1.875rem);
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .c-facility-header .c-text {
    margin-bottom: 0;
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.c-facility-header .c-text p {
  margin-bottom: 3.7333333333vw;
  color: var(--green2);
}
@media (min-width: 768px) {
  .c-facility-header .c-text p {
    margin-bottom: 2.109375vw;
  }
}
@media (min-width: 1280px) {
  .c-facility-header .c-text p {
    margin-bottom: 27px;
  }
}
.c-facility-header .c-image {
  position: relative;
}
@media (min-width: 768px) {
  .c-facility-header .c-image {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.c-facility-header .c-image figcaption {
  padding-top: 1.0666666667vw;
  font-size: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: right;
  position: absolute;
  right: 1.3333333333vw;
  bottom: 1.3333333333vw;
}
@media (min-width: 768px) {
  .c-facility-header .c-image figcaption {
    padding-top: 0.3125vw;
    right: 0.390625vw;
    bottom: 0.390625vw;
  }
}
@media (min-width: 1280px) {
  .c-facility-header .c-image figcaption {
    padding-top: 4px;
    right: 5px;
    bottom: 5px;
  }
}
.c-facility-header .c-image figcaption.white {
  color: var(--white);
}

/* ========================================================================================= ^^
  Ranking banner
============================================================================================ ^^ */
.c-ranking-banner img {
  width: 44.2666666667vw;
}
@media (min-width: 768px) {
  .c-ranking-banner img {
    width: 25.9375vw;
  }
}
@media (min-width: 1280px) {
  .c-ranking-banner img {
    width: 332px;
  }
}
.c-ranking-banner__caption {
  padding-top: 1.0666666667vw;
  font-size: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .c-ranking-banner__caption {
    padding-top: 0.703125vw;
  }
}
@media (min-width: 1280px) {
  .c-ranking-banner__caption {
    padding-top: 9px;
  }
}

/* ========================================================================================= ^^
  Facility box
============================================================================================ ^^ */
.c-facility-box__title {
  padding-left: 4.5333333333vw;
  margin-bottom: 3.7333333333vw;
  border-left: 7px solid var(--green);
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.063rem, 0.907rem + 0.66vw, 1.438rem);
  line-height: 1.3529411765;
  letter-spacing: 0.1em;
  text-box-trim: trim-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.6vw;
}
@media (min-width: 768px) {
  .c-facility-box__title {
    padding-left: 1.328125vw;
    margin-bottom: 2.1875vw;
    line-height: 1;
    row-gap: 0.9375vw;
  }
}
@media (min-width: 1280px) {
  .c-facility-box__title {
    padding-left: 17px;
    margin-bottom: 28px;
    row-gap: 12px;
  }
}
.c-facility-box__distance {
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(0.688rem, 0.584rem + 0.44vw, 0.938rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.c-facility-box__text {
  margin-bottom: 8vw;
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 2.1111111111;
  font-weight: 400;
}
@media (min-width: 768px) {
  .c-facility-box__text {
    margin-bottom: 0;
  }
}
.c-facility-box__text p:last-of-type {
  margin-bottom: 0;
}
.c-facility-box__image {
  margin-bottom: 3.4666666667vw;
  position: relative;
}
@media (min-width: 768px) {
  .c-facility-box__image {
    margin-bottom: 2.03125vw;
  }
}
@media (min-width: 1280px) {
  .c-facility-box__image {
    margin-bottom: 26px;
  }
}
.c-facility-box__icon {
  position: absolute;
}
.c-facility-box__info {
  padding: 6.4vw;
  border: 2px solid var(--facility-info-color);
}
@media (min-width: 768px) {
  .c-facility-box__info {
    padding: 1.875vw;
  }
}
@media (min-width: 1280px) {
  .c-facility-box__info {
    padding: 24px;
  }
}
.c-facility-box__info dl {
  display: grid;
  grid-template-columns: 21.3333333333vw 1fr;
  -webkit-column-gap: 4.2666666667vw;
     -moz-column-gap: 4.2666666667vw;
          column-gap: 4.2666666667vw;
  row-gap: 2.1333333333vw;
}
@media (min-width: 768px) {
  .c-facility-box__info dl {
    grid-template-columns: 8.59375vw 1fr;
    -webkit-column-gap: 1.25vw;
       -moz-column-gap: 1.25vw;
            column-gap: 1.25vw;
    row-gap: 1.171875vw;
  }
}
@media (min-width: 1280px) {
  .c-facility-box__info dl {
    grid-template-columns: 80px 1fr;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 15px;
  }
}
.c-facility-box__info dl dt {
  width: 100%;
  height: 8vw;
  border-radius: calc(infinity * 1px);
  background-color: var(--facility-info-color);
  font-size: clamp(0.688rem, 0.598rem + 0.38vw, 0.903rem);
  color: var(--white);
  line-height: 1.3148788927;
  font-weight: 400;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .c-facility-box__info dl dt {
    height: 2.8125vw;
  }
}
@media (min-width: 1280px) {
  .c-facility-box__info dl dt {
    height: 22px;
  }
}
.c-facility-box__info dl dd {
  font-size: clamp(0.688rem, 0.584rem + 0.44vw, 0.938rem);
  line-height: 1.6;
  font-weight: 400;
}

/* ========================================================================================= ^^
  PLan block
============================================================================================ ^^ */
.c-plan-block {
  width: 100%;
  margin: 0;
  display: grid;
  grid-auto-columns: 33.6% 66.1%;
}
@media (min-width: 768px) {
  .c-plan-block {
    width: calc(100% + 40px);
    margin: 0 -20px;
    grid-template-columns: 24.8611111111% 26.4583333333% 48.6805555556%;
  }
}
@media (min-width: 1440px) {
  .c-plan-block {
    width: 1440px;
    margin: 0 -120px;
  }
}
.c-plan-block__image {
  position: relative;
}
.c-plan-block__image-cap {
  margin: 0;
  font-size: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem);
  color: var(--white);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.1em;
  position: absolute;
  right: 2.6666666667vw;
  bottom: 1.3333333333vw;
}
@media (min-width: 768px) {
  .c-plan-block__image-cap {
    right: 0.78125vw;
    bottom: 0.390625vw;
  }
}
@media (min-width: 1280px) {
  .c-plan-block__image-cap {
    right: 10px;
    bottom: 5px;
  }
}
@media (min-width: 768px) {
  .c-plan-block__image.image1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .c-plan-block__image.image2 {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
.c-plan-block__caption {
  height: 100%;
  padding: 5.3333333333vw;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 2.6666666667vw;
  grid-column: 1/3;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  .c-plan-block__caption {
    padding: 1.3888888889vw 1.3888888889vw 1.3888888889vw 2.0833333333vw;
    grid-column: 2/3;
    grid-row: 1/2;
    row-gap: 0.6944444444vw;
  }
}
@media (min-width: 1440px) {
  .c-plan-block__caption {
    padding: 20px 10px 20px 60px;
    row-gap: 10px;
  }
}
.c-plan-block__title {
  width: 100%;
  padding-top: 12.8vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.125rem, 0.861rem + 1.13vw, 1.875rem);
  color: var(--green);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  position: relative;
}
@media (min-width: 768px) {
  .c-plan-block__title {
    padding-top: 3.6805555556vw;
    font-size: clamp(1rem, 2.08vw, 1.875rem);
  }
}
@media (min-width: 1440px) {
  .c-plan-block__title {
    padding-top: 53px;
  }
}
.c-plan-block__title::after {
  width: 100%;
  height: 2px;
  background-color: var(--green2);
  content: " ";
  display: block;
  position: absolute;
  top: 10.1333333333vw;
  left: 0;
}
@media (min-width: 768px) {
  .c-plan-block__title::after {
    width: 13.6111111111vw;
    top: 2.6388888889vw;
  }
}
@media (min-width: 1440px) {
  .c-plan-block__title::after {
    width: 196px;
    top: 38px;
  }
}
.c-plan-block__text {
  width: 100%;
  margin: 0 auto;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(0.875rem, 0.743rem + 0.56vw, 1.25rem);
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .c-plan-block__text {
    font-size: clamp(0.75rem, 0.179rem + 1.19vw, 1.25rem);
  }
}
.c-plan-block__text p:last-of-type {
  margin-bottom: 0;
}
.c-plan-block.cont01 .c-plan-block__title {
  width: 100%;
  background: url(../img/plan/num01.svg) no-repeat 0 0/9.6vw auto;
}
@media (min-width: 768px) {
  .c-plan-block.cont01 .c-plan-block__title {
    background-size: 2.8125vw auto;
  }
}
@media (min-width: 1280px) {
  .c-plan-block.cont01 .c-plan-block__title {
    background-size: 36px auto;
  }
}
.c-plan-block.cont02 {
  grid-auto-columns: 70% 30%;
}
@media (min-width: 768px) {
  .c-plan-block.cont02 {
    grid-template-columns: 51.3194444444% 27.2916666667% 21.3888888889%;
  }
}
@media not all and (min-width: 768px) {
  .c-plan-block.cont02 .c-plan-block__image {
    height: 30.6666666667vw;
  }
}
.c-plan-block.cont02 .c-plan-block__title {
  background: url(../img/plan/num02.svg) no-repeat 0 0/11.4666666667vw auto;
}
@media (min-width: 768px) {
  .c-plan-block.cont02 .c-plan-block__title {
    background-size: 3.359375vw auto;
  }
}
@media (min-width: 1280px) {
  .c-plan-block.cont02 .c-plan-block__title {
    background-size: 43px auto;
  }
}
.c-plan-block.cont03 .c-plan-block__title {
  background: url(../img/plan/num03.svg) no-repeat 0 0/11.4666666667vw auto;
}
@media (min-width: 768px) {
  .c-plan-block.cont03 .c-plan-block__title {
    background-size: 3.359375vw auto;
  }
}
@media (min-width: 1280px) {
  .c-plan-block.cont03 .c-plan-block__title {
    background-size: 43px auto;
  }
}

.c-plan-block2 {
  max-width: 1440px;
  width: 100%;
  padding-top: 16%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  .c-plan-block2 {
    padding-top: 9.375%;
    grid-template-columns: repeat(4, 25%);
  }
}
@media (min-width: 1280px) {
  .c-plan-block2 {
    padding-top: 120px;
  }
}
@media (min-width: 1440px) {
  .c-plan-block2 {
    width: 1440px;
  }
}
.c-plan-block2 .c-image {
  position: relative;
}
.c-plan-block2 .c-image__caption {
  font-size: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem);
  line-height: 1.5;
  position: absolute;
  right: 2.6666666667%;
  bottom: 1.3333333333%;
}
@media (min-width: 768px) {
  .c-plan-block2 .c-image__caption {
    right: 0.6944444444%;
    bottom: 0.3472222222%;
  }
}
@media (min-width: 1440px) {
  .c-plan-block2 .c-image__caption {
    right: 10px;
    bottom: 5px;
  }
}
.c-plan-block2 .c-image:nth-of-type(1) {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .c-plan-block2 .c-image:nth-of-type(1) {
    grid-column: 1/5;
  }
}
.c-plan-block2 .c-image:nth-of-type(1) .c-image__caption {
  color: var(--white);
}

/* ========================================================================================= ^^
  Flooring
============================================================================================ ^^ */
.c-flooring {
  width: 100%;
  padding-top: 10.6666666667vw;
  aspect-ratio: 392/545;
  position: relative;
}
@media (min-width: 768px) {
  .c-flooring {
    padding-top: 3.125vw;
  }
}
@media (min-width: 1280px) {
  .c-flooring {
    padding-top: 40px;
  }
}
.c-flooring__title {
  width: 90.5612244898%;
  margin: 0 auto 4.8%;
}
@media (min-width: 768px) {
  .c-flooring__title {
    margin-bottom: 1.40625%;
  }
}
@media (min-width: 1280px) {
  .c-flooring__title {
    margin-bottom: 18px;
  }
}
.c-flooring__sub {
  width: 90.5612244898%;
  margin: 0 auto 1.6%;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.875rem, 0.78rem + 0.41vw, 1.105rem);
  color: var(--white);
  line-height: 1.2154977376;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 768px) {
  .c-flooring__sub {
    margin-bottom: 0.46875%;
  }
}
@media (min-width: 1280px) {
  .c-flooring__sub {
    margin-bottom: 6px;
  }
}
.c-flooring__text {
  width: 90.5612244898%;
  margin: 0 auto;
  font-size: 12.24px;
  color: var(--white);
  line-height: 2.5326797386;
  font-weight: 400;
}
.c-flooring__text p:last-of-type {
  margin-bottom: 0;
}
.c-flooring__cap {
  margin: 0;
  font-size: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem);
  color: var(--white);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: right;
  position: absolute;
  right: 1.3333333333%;
  bottom: 1.3333333333%;
}
@media (min-width: 768px) {
  .c-flooring__cap {
    right: 0.390625%;
    bottom: 0.390625%;
  }
}
@media (min-width: 1280px) {
  .c-flooring__cap {
    right: 5px;
    bottom: 5px;
  }
}
.c-flooring--01 {
  background: url(../img/plan/bg-flooring01.jpg) no-repeat 0 0/cover;
}
.c-flooring--02 {
  background: url(../img/plan/bg-flooring02.jpg) no-repeat 0 0/cover;
}
.c-flooring--03 {
  background: url(../img/plan/bg-flooring03.jpg) no-repeat 0 0/cover;
}

/* ========================================================================================= ^^
  Quality links
============================================================================================ ^^ */
.c-quality-links {
  padding-top: 5.0666666667vw;
  padding-bottom: 9.8666666667vw;
  display: grid;
  grid-template-columns: repeat(3, 32.8358208955%);
  grid-template-rows: repeat(4, 21.3333333333vw);
  -webkit-column-gap: 0.7462686567%;
     -moz-column-gap: 0.7462686567%;
          column-gap: 0.7462686567%;
  row-gap: 1.3333333333vw;
}
@media (min-width: 768px) {
  .c-quality-links {
    padding-top: 2.96875vw;
    padding-bottom: 5.78125vw;
    grid-template-columns: repeat(7, 13.75%);
    grid-template-rows: repeat(2, 7.03125vw);
    -webkit-column-gap: 0.625%;
       -moz-column-gap: 0.625%;
            column-gap: 0.625%;
    row-gap: 2.3333333333vw;
  }
}
@media (min-width: 1280px) {
  .c-quality-links {
    padding-top: 38px;
    padding-bottom: 74px;
    grid-template-rows: repeat(2, 90px);
    row-gap: 28px;
  }
}
.c-quality-links__item {
  border-radius: 10px;
  border: 2px solid var(--green);
  background-color: var(--green);
  -webkit-box-shadow: 0 0 5px rgba(151, 153, 119, 0.4);
          box-shadow: 0 0 5px rgba(151, 153, 119, 0.4);
}
.c-quality-links__link {
  width: 100%;
  height: 100%;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.063rem, 0.985rem + 0.33vw, 1.25rem);
  color: var(--white);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .c-quality-links__link {
    font-size: clamp(0.875rem, 0.313rem + 1.17vw, 1.25rem);
  }
}
.c-quality-links__link:link {
  color: var(--white);
}
.c-quality-links__link:visited {
  color: var(--white);
}
.c-quality-links__link:hover {
  color: var(--white);
}
.c-quality-links__link:focus {
  color: var(--white);
}
.c-quality-links__link span {
  width: 7.4666666667vw;
  margin-bottom: 1.3333333333vw;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--white);
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(0.938rem, 0.86rem + 0.33vw, 1.125rem);
  color: var(--white);
  line-height: 1;
  font-weight: 300;
  text-align: center;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .c-quality-links__link span {
    width: 2.1875vw;
    margin-bottom: 0.390625vw;
    font-size: clamp(0.75rem, 0.188rem + 1.17vw, 1.125rem);
  }
}
@media (min-width: 1280px) {
  .c-quality-links__link span {
    width: 28px;
    margin-bottom: 5px;
  }
}
.c-quality-links__link::after {
  width: 4vw;
  height: 2.1333333333vw;
  margin-top: 1.6vw;
  background: url(../img/common/icon-arrow-down-white.svg) no-repeat 50% 50%/cover;
  content: " ";
  display: block;
}
@media (min-width: 768px) {
  .c-quality-links__link::after {
    width: 1.171875vw;
    height: 0.625vw;
    margin-top: 0.46875vw;
  }
}
@media (min-width: 1280px) {
  .c-quality-links__link::after {
    width: 15px;
    height: 8px;
    margin-top: 6px;
  }
}

/* ========================================================================================= ^^
  Page notice
============================================================================================ ^^ */
.c-page-notice {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.c-page-notice-wrap {
  width: 100vw;
  padding: 16vw 5.3333333333vw 22.9333333333vw;
  margin: 20vw calc(50% - 50vw) 0;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .c-page-notice-wrap {
    padding: 4.6875vw 1.5625vw 6.71875vw;
    margin-top: 5.859375vw;
  }
}
@media (min-width: 1280px) {
  .c-page-notice-wrap {
    padding: 60px 20px 86px;
    margin-top: 75px;
  }
}
.c-page-notice-wrap.no-margin {
  margin-top: 0;
}

/* ========================================================================================= ^^
  Footer banners
============================================================================================ ^^ */
.c-footer-banners {
  max-width: 950px;
  width: 100%;
  padding: 0 2.6666666667vw;
  margin: 0 auto 9.0666666667vw;
  display: grid;
  grid-template-columns: 100%;
  row-gap: 4.2666666667vw;
}
@media (min-width: 768px) {
  .c-footer-banners {
    margin-bottom: 2.1875vw;
    grid-template-columns: 35.2631578947% 54%;
    -webkit-column-gap: 10.7368421053%;
       -moz-column-gap: 10.7368421053%;
            column-gap: 10.7368421053%;
    row-gap: unset;
  }
}
@media (min-width: 1280px) {
  .c-footer-banners {
    margin-bottom: 28px;
  }
}
@media not all and (min-width: 768px) {
  .c-footer-banners .c-footer-banner:first-of-type {
    width: 60vw;
    margin: 0 auto;
  }
}

/* ========================================================================================= ^^
  Important block;
============================================================================================ ^^ */
.c-important-block {
  width: 100%;
  padding: 5.3333333333vw;
  border: 2px solid var(--important-color);
}
@media (min-width: 768px) {
  .c-important-block {
    padding: 1.5625vw;
    border-width: 5px;
  }
}
@media (min-width: 1280px) {
  .c-important-block {
    padding: 20px;
  }
}
.c-important-block__header {
  color: var(--important-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5.3333333333vw;
     -moz-column-gap: 5.3333333333vw;
          column-gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .c-important-block__header {
    -webkit-column-gap: 1.5625vw;
       -moz-column-gap: 1.5625vw;
            column-gap: 1.5625vw;
  }
}
@media (min-width: 1280px) {
  .c-important-block__header {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.c-important-block__date {
  font-size: clamp(0.875rem, 0.823rem + 0.22vw, 1rem);
}
.c-important-block__title {
  font-size: clamp(1.125rem, 1.073rem + 0.22vw, 1.25rem);
}
.c-important-block__text {
  font-size: clamp(0.875rem, 0.823rem + 0.22vw, 1rem);
  color: var(--important-color);
}

/* ========================================================================================= ^^
  Distance list
============================================================================================ ^^ */
.p-distance-list {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-distance-list {
    grid-template-columns: repeat(3, 32.1100917431%);
    -webkit-column-gap: 1.8348623853%;
       -moz-column-gap: 1.8348623853%;
            column-gap: 1.8348623853%;
    row-gap: 12px;
  }
}

/* ========================================================================================= ^^
  Important
============================================================================================ ^^ */
.p-important {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 8vw;
}
@media (min-width: 768px) {
  .p-important {
    row-gap: 2.34375vw;
  }
}
@media (min-width: 1280px) {
  .p-important {
    row-gap: 30px;
  }
}

/* ========================================================================================= ^^
  Top page
============================================================================================ ^^ */
.top .c-main-visual-slider {
  margin-bottom: 10px;
  margin: 1.3333333333vw auto;
}
@media (min-width: 768px) {
  .top .c-main-visual-slider {
    margin: 15px auto 10px;
  }
}
.top .c-main-visual-slider .cap {
  padding-top: 5px;
  margin-bottom: 0;
  font-size: clamp(0.688rem, 0.662rem + 0.11vw, 0.75rem);
  color: var(--white);
  text-align: right;
}
.top .p-lead {
  padding: 0 5.3333333333vw 26.6666666667vw;
}
@media (min-width: 768px) {
  .top .p-lead {
    padding: 0 1.5625vw 7.8125vw;
  }
}
@media (min-width: 1280px) {
  .top .p-lead {
    padding: 0 0 100px;
  }
}
.top .p-lead .c-text--01, .top .p-lead .c-text--03, .top .p-lead .c-text--05 {
  max-width: 1100px;
  width: 100%;
  height: 16vw;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(25%, rgb(255, 255, 255)), color-stop(50%, rgb(255, 255, 255)), color-stop(74.27%, rgb(255, 255, 255)), color-stop(75%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 25%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 74.27%, rgb(255, 255, 255) 75%, rgba(255, 255, 255, 0) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .top .p-lead .c-text--01, .top .p-lead .c-text--03, .top .p-lead .c-text--05 {
    height: 88px;
  }
}
.top .p-lead .c-text--01 img {
  width: 62.1333333333vw;
}
@media (min-width: 768px) {
  .top .p-lead .c-text--01 img {
    width: 611px;
  }
}
.top .p-lead .c-text--02, .top .p-lead .c-text--04 {
  padding: 18px 0 38px;
  font-size: clamp(1.188rem, 1.058rem + 0.55vw, 1.5rem);
  color: #fff;
  line-height: 1.695;
  letter-spacing: 0.1em;
  text-align: center;
}
.top .p-lead .c-text--02 p, .top .p-lead .c-text--04 p {
  margin-bottom: 5px;
}
.top .p-lead .c-text--02 p + p, .top .p-lead .c-text--04 p + p {
  margin-bottom: 0;
  font-size: clamp(0.563rem, 0.485rem + 0.33vw, 0.75rem);
  line-height: 1.5;
}
.top .p-lead .c-text--03 img {
  width: 75.7333333333vw;
}
@media (min-width: 768px) {
  .top .p-lead .c-text--03 img {
    width: 752px;
  }
}
.top .p-lead .c-text--05 img {
  width: 50.4vw;
}
@media (min-width: 768px) {
  .top .p-lead .c-text--05 img {
    width: 480px;
  }
}
.top .p-lead .c-text--06 {
  padding: 18px 0 38px;
  font-size: clamp(1.188rem, 1.058rem + 0.55vw, 1.5rem);
  color: #fff;
  line-height: 1.695;
  letter-spacing: 0.1em;
  text-align: center;
}
.top .p-lead .c-text--06 p {
  margin-bottom: 5px;
}
.top .p-lead .c-text--06 p + p {
  margin-bottom: 0;
  font-size: clamp(0.875rem, 0.797rem + 0.33vw, 1.063rem);
  line-height: 1.5;
}
.top .p-lead .c-text--06 p em {
  text-decoration: underline;
  font-weight: 700;
}
.top .p-lead .c-grid {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto 20vw;
  display: grid;
  grid-template-columns: 100%;
  row-gap: 8vw;
}
@media (min-width: 768px) {
  .top .p-lead .c-grid {
    margin-bottom: 75px;
    grid-template-columns: repeat(3, 32.1367521368%);
    -webkit-column-gap: 1.7948717949%;
       -moz-column-gap: 1.7948717949%;
            column-gap: 1.7948717949%;
  }
}
.top .p-lead .c-box {
  padding-top: 5.3333333333vw;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .top .p-lead .c-box {
    padding-top: 20px;
  }
}
.top .p-lead .c-box h3 {
  margin: 0 auto 5.3333333333vw;
}
@media (min-width: 768px) {
  .top .p-lead .c-box h3 {
    margin-bottom: 20px;
  }
}
.top .p-lead .c-box .c-image {
  width: 84.2666666667vw;
  margin: 0 auto 8.8vw;
}
@media (min-width: 768px) {
  .top .p-lead .c-box .c-image {
    width: 84.0425531915%;
    margin-bottom: 2.578125vw;
  }
}
@media (min-width: 1280px) {
  .top .p-lead .c-box .c-image {
    margin-bottom: 33px;
  }
}
.top .p-lead .c-box .c-text {
  padding: 0 5.3333333333vw;
  margin-bottom: 6.9333333333vw;
  font-size: clamp(0.875rem, 0.823rem + 0.22vw, 1rem);
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .top .p-lead .c-box .c-text {
    padding: 0 30px;
    margin-bottom: 26px;
  }
}
.top .p-lead .c-box .c-text p:last-of-type {
  margin-bottom: 0;
}
.top .p-lead .c-box .c-text em {
  color: #00533c;
  font-weight: 700;
}
.top .p-lead .c-box--01 h3 {
  width: 47.7333333333vw;
}
@media (min-width: 768px) {
  .top .p-lead .c-box--01 h3 {
    width: 179px;
  }
}
.top .p-lead .c-box--02 h3 {
  width: 60vw;
}
@media (min-width: 768px) {
  .top .p-lead .c-box--02 h3 {
    width: 225px;
  }
}
.top .p-lead .c-box--03 h3 {
  width: 44.8vw;
}
@media (min-width: 768px) {
  .top .p-lead .c-box--03 h3 {
    width: 168px;
  }
}
.top .p-lead .c-btn-pdf {
  max-width: 1170px;
  width: 100%;
  height: 40.5333333333vw;
  margin: 0 auto;
  border: 1px solid var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 5.3333333333vw;
  position: relative;
}
@media (min-width: 768px) {
  .top .p-lead .c-btn-pdf {
    height: 152px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 7.264957265%;
       -moz-column-gap: 7.264957265%;
            column-gap: 7.264957265%;
    row-gap: unset;
  }
}
.top .p-lead .c-btn-pdf::after {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.36);
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top .p-lead .c-btn-pdf__text {
  width: 80vw;
  margin: 0;
}
@media (min-width: 768px) {
  .top .p-lead .c-btn-pdf__text {
    width: 52.4786324786%;
  }
}
.top .p-lead .c-btn-pdf__button {
  width: 80vw;
  margin: 0;
}
@media (min-width: 768px) {
  .top .p-lead .c-btn-pdf__button {
    width: 27.264957265%;
  }
}
.top .p-charm {
  padding-top: 10.6666666667vw;
  padding-bottom: 16vw;
  position: relative;
}
@media (min-width: 768px) {
  .top .p-charm {
    padding-top: 80px;
    padding-bottom: 125px;
    overflow-x: hidden;
  }
}
.top .p-charm::before {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(20.6%, rgba(196, 196, 196, 0.32)), color-stop(31.56%, rgba(170, 170, 170, 0.49)), color-stop(36.84%, rgba(164, 164, 164, 0.53)), color-stop(59.96%, rgba(140, 140, 140, 0.7)), color-stop(81.57%, rgba(126, 126, 126, 0.86)), to(rgb(121, 121, 121)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(196, 196, 196, 0.32) 20.6%, rgba(170, 170, 170, 0.49) 31.56%, rgba(164, 164, 164, 0.53) 36.84%, rgba(140, 140, 140, 0.7) 59.96%, rgba(126, 126, 126, 0.86) 81.57%, rgb(121, 121, 121) 100%);
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}
.top .p-charm .c-text {
  margin: 0 auto;
}
.top .p-charm h2.c-section-title {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 4.2666666667vw;
  display: grid;
  grid-template-columns: 1fr 48vw 1fr;
  -webkit-column-gap: 2.6666666667vw;
     -moz-column-gap: 2.6666666667vw;
          column-gap: 2.6666666667vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .top .p-charm h2.c-section-title {
    margin-bottom: 32px;
    grid-template-columns: 1fr 403px 1fr;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.top .p-charm h2.c-section-title::before, .top .p-charm h2.c-section-title::after {
  width: 100%;
  height: 1px;
  background-color: #c3a04c;
  content: " ";
  display: block;
}
.top .p-charm h2.c-section-title img {
  width: 100%;
}
.top .p-charm h2.c-section-title + .c-text {
  max-width: 1110px;
  width: 100%;
  margin-bottom: 6.1333333333vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.875rem, 0.305rem + 2.43vw, 2.25rem);
  color: var(--white);
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5.3333333333vw;
     -moz-column-gap: 5.3333333333vw;
          column-gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .top .p-charm h2.c-section-title + .c-text {
    margin-bottom: 46px;
    line-height: 1;
    -webkit-column-gap: 1.171875vw;
       -moz-column-gap: 1.171875vw;
            column-gap: 1.171875vw;
  }
}
@media (min-width: 1280px) {
  .top .p-charm h2.c-section-title + .c-text {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.top .p-charm h2.c-section-title + .c-text em {
  font-size: clamp(1.313rem, 0.769rem + 2.32vw, 2.625rem);
  letter-spacing: -0.08em;
}
.top .p-charm h2.c-section-title + .c-text::before, .top .p-charm h2.c-section-title + .c-text::after {
  width: 18px;
  height: 55px;
  content: " ";
  display: block;
}
.top .p-charm h2.c-section-title + .c-text::before {
  background: url(../img/common/line01.svg) no-repeat 50% 50%/100% auto;
}
.top .p-charm h2.c-section-title + .c-text::after {
  background: url(../img/common/line02.svg) no-repeat 50% 50%/100% auto;
}
.top .p-charm h2.c-section-title + .c-text p {
  margin-bottom: 0;
}
.top .p-charm .c-image {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto 9.3333333333vw;
}
@media (min-width: 768px) {
  .top .p-charm .c-image {
    margin-bottom: 72px;
  }
}
.top .p-charm h3.c-section-title {
  width: 53.3333333333vw;
  margin: 0 auto 4vw;
}
@media (min-width: 768px) {
  .top .p-charm h3.c-section-title {
    width: 248px;
    margin-bottom: 30px;
  }
}
.top .p-charm .c-ranking {
  margin-bottom: 16vw;
}
@media (min-width: 768px) {
  .top .p-charm .c-ranking {
    margin-bottom: 118px;
  }
}
.top .p-charm .c-ranking + .c-text {
  width: 90.6666666667vw;
  margin-bottom: 9.3333333333vw;
}
@media (min-width: 768px) {
  .top .p-charm .c-ranking + .c-text {
    width: 647px;
    margin-bottom: 67px;
  }
}
.top .p-charm .c-button {
  width: 90.6666666667vw;
  margin: 0 auto 20vw;
  display: block;
}
@media (min-width: 768px) {
  .top .p-charm .c-button {
    width: 552px;
    margin-bottom: 150px;
  }
}
.top .c-information {
  max-width: 1000px;
  width: 100%;
  height: 73.8666666667vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .top .c-information {
    height: 277px;
  }
}
.top .p-top-contents {
  padding: 17.0666666667vw 2.6666666667vw 16vw;
  background: url(../img/common/bg02.jpg) repeat-y 50% 0/100% auto;
}
@media (min-width: 768px) {
  .top .p-top-contents {
    padding: 128px 20px 48px;
  }
}
.top .c-image-block {
  margin-bottom: 12vw;
}
@media (min-width: 768px) {
  .top .c-image-block {
    margin-bottom: 95px;
  }
}
.top .c-image-block--location .c-image-block__title {
  width: 56.2666666667vw;
}
@media (min-width: 768px) {
  .top .c-image-block--location .c-image-block__title {
    width: 211px;
  }
}
.top .c-image-block--land-design .c-image-block__title {
  width: 62.1333333333vw;
}
@media (min-width: 768px) {
  .top .c-image-block--land-design .c-image-block__title {
    width: 233px;
  }
}
.top .c-image-block--house-plan .c-image-block__title {
  width: 56.2666666667vw;
}
@media (min-width: 768px) {
  .top .c-image-block--house-plan .c-image-block__title {
    width: 211px;
  }
}
.top .c-image-block--access .c-image-block__title {
  width: 90.6666666667vw;
}
@media (min-width: 768px) {
  .top .c-image-block--access .c-image-block__title {
    width: 340px;
  }
}
.top .c-image-block--quality {
  margin-bottom: 25px;
}
.top .c-image-block--quality .c-image-block__title {
  width: 37.8666666667vw;
}
@media (min-width: 768px) {
  .top .c-image-block--quality .c-image-block__title {
    width: 142px;
  }
}

/* ========================================================================================= ^^
  Access
============================================================================================ ^^ */
.page-access .p-lead {
  padding-bottom: 10.6666666667vw;
}
@media (min-width: 768px) {
  .page-access .p-lead {
    padding-bottom: 82px;
  }
}
.page-access .p-lead .c-section-title {
  margin-bottom: 4.5333333333vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.25rem, 0.758rem + 2.1vw, 2.438rem);
  color: var(--section-title-color);
  line-height: 1.4871794872;
  letter-spacing: 0.14em;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-access .p-lead .c-section-title {
    margin-bottom: 17px;
  }
}
.page-access .p-lead .c-text {
  margin-bottom: 11.4666666667vw;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(1rem, 0.845rem + 0.66vw, 1.375rem);
  line-height: 1.8181818182;
  letter-spacing: 0.06em;
  text-align: center;
  font-weight: 300;
}
@media (min-width: 768px) {
  .page-access .p-lead .c-text {
    margin-bottom: 86px;
  }
}
.page-access .p-lead .c-text p:last-of-type {
  margin-bottom: 0;
}
.page-access .p-lead .c-image {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.page-access .l-page-contents {
  padding-top: 13.3333333333vw;
}
@media (min-width: 768px) {
  .page-access .l-page-contents {
    padding-top: 100px;
  }
}
.page-access .l-access-contents {
  max-width: 1240px;
  width: 100%;
  padding: 0 2.6666666667vw 10.6666666667vw;
  margin: 0 auto;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .page-access .l-access-contents {
    padding: 0 3.90625vw 80px;
  }
}
@media (min-width: 1280px) {
  .page-access .l-access-contents {
    padding: 0 75px 80px;
  }
}
.page-access .p-train-access {
  padding-top: 10.6666666667vw;
  padding-bottom: 5.8666666667vw;
}
@media (min-width: 768px) {
  .page-access .p-train-access {
    padding-top: 80px;
    padding-bottom: 22px;
  }
}
.page-access .p-train-access .c-section-title {
  max-width: 938px;
  width: 100%;
  margin: 0 auto 8vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.125rem, 0.814rem + 1.33vw, 1.875rem);
  color: var(--section-title-color);
  line-height: 1.38;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}
@media (min-width: 768px) {
  .page-access .p-train-access .c-section-title {
    margin-bottom: 55px;
  }
}
.page-access .p-train-access .c-image {
  max-width: 1007px;
  width: 100%;
  margin: 0 auto 10.6666666667vw;
}
@media (min-width: 768px) {
  .page-access .p-train-access .c-image {
    margin-bottom: 80px;
  }
}
.page-access .p-train-access .p-distance-list {
  margin-bottom: 8vw;
}
@media (min-width: 768px) {
  .page-access .p-train-access .p-distance-list {
    margin-bottom: 56px;
  }
}
.page-access .p-train-access .c-sub-title {
  margin-bottom: 6.9333333333vw;
  text-align: center;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.125rem, 0.814rem + 1.33vw, 1.875rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-access .p-train-access .c-sub-title {
    margin-bottom: 26px;
    line-height: 1.3846153846;
  }
}
.page-access .p-train-access .c-sub-title .num {
  font-size: clamp(1.313rem, 1.028rem + 1.22vw, 2rem);
  color: var(--num-color);
  letter-spacing: -0.05em;
}
.page-access .p-train-access .c-sub-title .distance {
  font-size: clamp(0.875rem, 0.642rem + 0.99vw, 1.438rem);
}
.page-access .p-train-access .c-sub-title .large {
  margin-top: 2.6666666667vw;
  font-size: clamp(1.188rem, 0.644rem + 2.32vw, 2.5rem);
  color: var(--section-title-color);
  display: inline-block;
}
@media (min-width: 768px) {
  .page-access .p-train-access .c-sub-title .large {
    margin-top: 0;
  }
}
.page-access .p-train-access .c-sub-title .large span {
  font-size: clamp(1.375rem, 0.909rem + 1.99vw, 2.5rem);
}
.page-access .p-train-access .c-sub-title--2 {
  margin-bottom: 4.8vw;
  color: var(--section-title-color);
}
@media (min-width: 768px) {
  .page-access .p-train-access .c-sub-title--2 {
    margin-bottom: 36px;
  }
}
.page-access .p-train-access .c-sub-title--2 + .c-image {
  max-width: 666px;
  width: 100%;
  margin: 0 auto 8vw;
}
@media (min-width: 768px) {
  .page-access .p-train-access .c-sub-title--2 + .c-image {
    margin-bottom: 30px;
  }
}
.page-access .p-train-access .c-sub-title--2 + .c-image + .c-image {
  max-width: 666px;
  width: 100%;
  margin-bottom: 0;
}
.page-access .p-car-access {
  padding-top: 5.8666666667vw;
  padding-bottom: 4.8vw;
}
@media (min-width: 768px) {
  .page-access .p-car-access {
    padding-top: 22px;
    padding-bottom: 18px;
  }
}
.page-access .p-car-access .c-section-title {
  max-width: 928px;
  width: 100%;
  margin: 0 auto 8vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.25rem, 0.991rem + 1.1vw, 1.875rem);
  color: var(--section-title-color);
  line-height: 1.38;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}
@media (min-width: 768px) {
  .page-access .p-car-access .c-section-title {
    margin-bottom: 54px;
  }
}
.page-access .p-car-access .c-image {
  max-width: 1081px;
  width: 100%;
  margin: 0 auto 8vw;
}
@media (min-width: 768px) {
  .page-access .p-car-access .c-image {
    margin-bottom: 60px;
  }
}
.page-access .p-car-access .p-distance-list {
  margin-bottom: 8vw;
}
@media (min-width: 768px) {
  .page-access .p-car-access .p-distance-list {
    margin-bottom: 56px;
  }
}
.page-access .p-bus .l-section__inner {
  max-width: 1064px;
  width: 100%;
  padding: 6.6666666667vw 5.3333333333vw 14.1333333333vw;
  margin: 0 auto;
  border-radius: 5.3333333333vw;
  background-color: #fff8e6;
  display: grid;
  grid-template-columns: 100%;
}
@media (min-width: 768px) {
  .page-access .p-bus .l-section__inner {
    padding: 0 2.34375vw 53px;
    border-radius: 20px;
    grid-template-columns: 46.3800904977% 47.2850678733%;
    -webkit-column-gap: 5.8823529412%;
       -moz-column-gap: 5.8823529412%;
            column-gap: 5.8823529412%;
  }
}
@media (min-width: 1280px) {
  .page-access .p-bus .l-section__inner {
    padding: 0 90px 53px;
  }
}
.page-access .p-bus .c-section-title {
  padding-bottom: 4vw;
  margin-bottom: 2.6666666667vw;
  border-bottom: 1px solid #000;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.125rem, 0.788rem + 1.44vw, 1.938rem);
  line-height: 1.4516129032;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-access .p-bus .c-section-title {
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .page-access .p-bus .c-content {
    padding-top: 77px;
  }
}
.page-access .p-bus .c-text {
  margin-bottom: 6.6666666667vw;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 1.6666666667;
  letter-spacing: 0.026em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-access .p-bus .c-text {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .page-access .p-bus .c-text p {
    margin-bottom: 26px;
  }
}
.page-access .p-bus .c-text p:last-of-type {
  padding-left: 1em;
  margin-bottom: 0;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 1.4705882353;
  letter-spacing: 0.06em;
  font-weight: 200;
  text-indent: -1em;
}
.page-access .p-bus .c-text table {
  margin-bottom: 6.9333333333vw;
  border: none;
  border-top: 1px solid #000;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(0.75rem, 0.698rem + 0.22vw, 0.875rem);
  line-height: 1.6666666667;
  letter-spacing: 0.026em;
}
@media (min-width: 768px) {
  .page-access .p-bus .c-text table {
    margin-bottom: 2.03125vw;
  }
}
@media (min-width: 1280px) {
  .page-access .p-bus .c-text table {
    margin-bottom: 26px;
  }
}
.page-access .p-bus .c-text table th {
  padding: 2.6666666667vw 1.3333333333vw;
  border: none;
  border-bottom: 1px solid #000;
  font-weight: 400;
  text-align: left;
}
@media (min-width: 768px) {
  .page-access .p-bus .c-text table th {
    padding: 0.78125vw;
  }
}
@media (min-width: 1280px) {
  .page-access .p-bus .c-text table th {
    padding: 10px;
  }
}
.page-access .p-bus .c-text table td {
  padding: 2.6666666667vw 1.3333333333vw;
  border: none;
  border-bottom: 1px solid #000;
  padding: 2.6666666667vw 1.3333333333vw;
}
@media (min-width: 768px) {
  .page-access .p-bus .c-text table td {
    padding: 0.78125vw;
  }
}
@media (min-width: 1280px) {
  .page-access .p-bus .c-text table td {
    padding: 10px;
  }
}
.page-access .p-bus .c-text table tbody th {
  width: 40%;
}
.page-access .p-bus .c-text table tbody td {
  width: 60%;
}
@media (min-width: 768px) {
  .page-access .p-bus .c-image {
    margin-top: 33px;
  }
}
@media (min-width: 768px) {
  .page-access .p-bus .c-image img {
    width: calc(100% + 4.0625vw);
    margin-left: -4.0625vw;
  }
}
@media (min-width: 1280px) {
  .page-access .p-bus .c-image img {
    width: calc(100% + 52px);
    margin-left: -52px;
  }
}
.page-access .p-bus .c-image__caption {
  padding-top: 5.8666666667vw;
}
@media (min-width: 768px) {
  .page-access .p-bus .c-image__caption {
    padding-top: 44px;
  }
}
.page-access .p-bus .c-image__caption p:first-of-type {
  width: 100%;
  height: 10.6666666667vw;
  margin-bottom: 5.8666666667vw;
  background-color: #958b75;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  color: var(--white);
  line-height: 2.2222222222;
  letter-spacing: 0.06em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-access .p-bus .c-image__caption p:first-of-type {
    height: 40px;
    margin-bottom: 22px;
  }
}
.page-access .p-bus .c-image__caption p:last-of-type {
  margin-bottom: 0;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.875rem, 0.746rem + 0.55vw, 1.188rem);
  line-height: 1.1578947368;
  font-weight: 700;
}
.page-access .p-bus .c-image__caption p:last-of-type .num {
  font-size: clamp(1.25rem, 0.732rem + 2.21vw, 2.5rem);
}

/* ========================================================================================= ^^
  Location
============================================================================================ ^^ */
.page-location .l-page-contents {
  padding: 0;
}
.page-location .l-page-contents--02 {
  padding: 20.5333333333vw 0 0;
}
@media (min-width: 768px) {
  .page-location .l-page-contents--02 {
    padding-top: 12.03125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .l-page-contents--02 {
    padding-top: 154px;
  }
}
.page-location .p-lead {
  padding: 7.4666666667vw 5.3333333333vw;
  position: relative;
}
@media (min-width: 768px) {
  .page-location .p-lead {
    padding: 4.453125vw 1.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-lead {
    padding: 57px 0;
  }
}
.page-location .p-lead .c-section-title {
  margin: 0 auto 8.2666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-lead .c-section-title {
    width: 53.125vw;
    margin-bottom: 2.421875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-lead .c-section-title {
    width: 680px;
    margin-bottom: 31px;
  }
}
.page-location .p-lead .c-text {
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 2.1111111111;
  text-align: center;
}
.page-location .p-lead .c-text p:last-of-type {
  margin-bottom: 0;
}
.page-location .p-charm {
  padding-top: 10.6666666667vw;
  padding-bottom: 16vw;
  position: relative;
}
@media (min-width: 768px) {
  .page-location .p-charm {
    padding-top: 80px;
    padding-bottom: 125px;
    overflow-x: hidden;
  }
}
.page-location .p-charm::before {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(20.6%, rgba(196, 196, 196, 0.32)), color-stop(31.56%, rgba(170, 170, 170, 0.49)), color-stop(36.84%, rgba(164, 164, 164, 0.53)), color-stop(59.96%, rgba(140, 140, 140, 0.7)), color-stop(81.57%, rgba(126, 126, 126, 0.86)), to(rgb(121, 121, 121)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(196, 196, 196, 0.32) 20.6%, rgba(170, 170, 170, 0.49) 31.56%, rgba(164, 164, 164, 0.53) 36.84%, rgba(140, 140, 140, 0.7) 59.96%, rgba(126, 126, 126, 0.86) 81.57%, rgb(121, 121, 121) 100%);
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}
.page-location .p-charm .c-text {
  margin: 0 auto;
}
.page-location .p-charm h2.c-section-title {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 4.2666666667vw;
  display: grid;
  grid-template-columns: 1fr 48vw 1fr;
  -webkit-column-gap: 2.6666666667vw;
     -moz-column-gap: 2.6666666667vw;
          column-gap: 2.6666666667vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-location .p-charm h2.c-section-title {
    margin-bottom: 32px;
    grid-template-columns: 1fr 403px 1fr;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.page-location .p-charm h2.c-section-title::before, .page-location .p-charm h2.c-section-title::after {
  width: 100%;
  height: 1px;
  background-color: #c3a04c;
  content: " ";
  display: block;
}
.page-location .p-charm h2.c-section-title img {
  width: 100%;
}
.page-location .p-charm h2.c-section-title + .c-text {
  max-width: 1110px;
  width: 100%;
  margin-bottom: 6.1333333333vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.875rem, 0.305rem + 2.43vw, 2.25rem);
  color: var(--white);
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5.3333333333vw;
     -moz-column-gap: 5.3333333333vw;
          column-gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .page-location .p-charm h2.c-section-title + .c-text {
    margin-bottom: 46px;
    line-height: 1;
    -webkit-column-gap: 1.171875vw;
       -moz-column-gap: 1.171875vw;
            column-gap: 1.171875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-charm h2.c-section-title + .c-text {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.page-location .p-charm h2.c-section-title + .c-text em {
  font-size: clamp(1.313rem, 0.769rem + 2.32vw, 2.625rem);
  letter-spacing: -0.08em;
}
.page-location .p-charm h2.c-section-title + .c-text::before, .page-location .p-charm h2.c-section-title + .c-text::after {
  width: 18px;
  height: 55px;
  content: " ";
  display: block;
}
.page-location .p-charm h2.c-section-title + .c-text::before {
  background: url(../img/common/line01-white.svg) no-repeat 50% 50%/100% auto;
}
.page-location .p-charm h2.c-section-title + .c-text::after {
  background: url(../img/common/line02-white.svg) no-repeat 50% 50%/100% auto;
}
.page-location .p-charm h2.c-section-title + .c-text p {
  margin-bottom: 0;
}
.page-location .p-charm .c-image {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto 9.3333333333vw;
}
@media (min-width: 768px) {
  .page-location .p-charm .c-image {
    margin-bottom: 72px;
  }
}
.page-location .p-charm .c-ranking {
  max-width: 1044px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100%;
  row-gap: 13.3333333333vw;
}
@media (min-width: 768px) {
  .page-location .p-charm .c-ranking {
    grid-template-columns: repeat(2, 43.6781609195%);
    -webkit-column-gap: 12.6436781609%;
       -moz-column-gap: 12.6436781609%;
            column-gap: 12.6436781609%;
    row-gap: 7.8125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-charm .c-ranking {
    row-gap: 100px;
  }
}
.page-location .l-location-section {
  max-width: 1200px;
  width: 100%;
  padding: 0 5.3333333333vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-location .l-location-section {
    padding: 0 1.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .l-location-section {
    padding: 0;
  }
}
.page-location .l-location-section .c-section-title {
  padding-bottom: 2.4vw;
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(to right, var(--green2) 100px, var(--gray) 100px) 1;
     border-image: linear-gradient(to right, var(--green2) 100px, var(--gray) 100px) 1;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.25rem, 0.991rem + 1.1vw, 1.875rem);
  color: var(--green2);
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.6666666667vw;
     -moz-column-gap: 2.6666666667vw;
          column-gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .l-location-section .c-section-title {
    padding-bottom: 0.703125vw;
    -o-border-image: linear-gradient(to right, var(--green2) 200px, var(--gray) 200px) 1;
       border-image: linear-gradient(to right, var(--green2) 200px, var(--gray) 200px) 1;
    -webkit-column-gap: 1.5625vw;
       -moz-column-gap: 1.5625vw;
            column-gap: 1.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .l-location-section .c-section-title {
    padding-bottom: 9px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.page-location .l-location-section .c-section-title:has(span) {
  padding-bottom: 2.4vw;
}
@media (min-width: 768px) {
  .page-location .l-location-section .c-section-title:has(span) {
    padding-bottom: 1.40625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .l-location-section .c-section-title:has(span) {
    padding-bottom: 18px;
  }
}
.page-location .l-location-section .c-section-title span {
  min-width: 18.6666666667vw;
  min-height: 9.0666666667vw;
  padding: 0 2.6666666667vw;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid var(--green);
}
@media (min-width: 768px) {
  .page-location .l-location-section .c-section-title span {
    min-width: 7.8125vw;
    min-height: 3.75vw;
    padding: 0 1.171875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .l-location-section .c-section-title span {
    min-width: 100px;
    min-height: 48px;
    padding: 0 15px;
  }
}
@-moz-document url-prefix() {
  .win .page-location .l-location-section span {
    padding-top: 0.5333333333vw;
  }
  @media (min-width: 768px) {
    .win .page-location .l-location-section span {
      padding-top: 0.3125vw;
    }
  }
  @media (min-width: 1280px) {
    .win .page-location .l-location-section span {
      padding-top: 4px;
    }
  }
}
.page-location .c-bg-white {
  padding-top: 9.8666666667vw;
  padding-bottom: 17.6vw;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .page-location .c-bg-white {
    padding-top: 5.78125vw;
    padding-bottom: 10.3125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .c-bg-white {
    padding-top: 74px;
    padding-bottom: 132px;
  }
}
.page-location .c-location-image-block {
  display: grid;
  grid-template-columns: 100%;
}
@media (min-width: 768px) {
  .page-location .c-location-image-block {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-location .c-location-image-block__title {
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.125rem, 0.814rem + 1.33vw, 1.875rem);
  color: var(--green2);
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.page-location .c-location-image-block__text {
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 2.1111111111;
  font-weight: 400;
}
.page-location .c-location-image-block__text p:last-of-type {
  margin-bottom: 0;
}
.page-location .c-location-image-block__image {
  margin-bottom: 5.3333333333vw;
  position: relative;
}
@media (min-width: 768px) {
  .page-location .c-location-image-block__image {
    margin-bottom: 0;
  }
}
.page-location .c-location-image-block__image img {
  width: 100%;
}
.page-location .c-location-image-block__icon {
  position: absolute;
}
.page-location .c-location-image-block__icon--shadow {
  -webkit-filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, 0.2));
}
.page-location .c-location-image-block__caption {
  padding-top: 3px;
  font-size: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: right;
}
.page-location .c-location-image-block__box {
  min-height: 10.6666666667vw;
  margin-bottom: 0;
  border: 2px solid var(--green2);
  background-color: var(--white);
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.875rem, 0.512rem + 1.55vw, 1.75rem);
  color: var(--green2);
  line-height: 1.4285714286;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-location .c-location-image-block__box {
    min-height: 6.25vw;
  }
}
@media (min-width: 1280px) {
  .page-location .c-location-image-block__box {
    min-width: none;
    height: 80px;
  }
}
.page-location .c-location-image-block__note {
  margin-bottom: 0;
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 2.1111111111;
  text-align: center;
}
.page-location .c-location-image-block__note span {
  font-size: clamp(0.75rem, 0.698rem + 0.22vw, 0.875rem);
}
.page-location .c-location-image-block__note em {
  margin-top: 6px;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.938rem, 0.42rem + 2.21vw, 2.188rem);
  color: #b43444;
  line-height: 1.2857142857;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
}
.page-location .p-location01 {
  margin-bottom: 15.4666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location01 {
    margin-bottom: 8.984375vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location01 {
    margin-bottom: 115px;
  }
}
.page-location .p-location01 .c-section-title {
  margin-bottom: 11.2vw;
}
@media (min-width: 768px) {
  .page-location .p-location01 .c-section-title {
    margin-bottom: 6.484375vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location01 .c-section-title {
    margin-bottom: 83px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location01 .c-location-image-block {
    grid-template-columns: 42.6666666667% 52.1666666667%;
    -webkit-column-gap: 5.1666666667%;
       -moz-column-gap: 5.1666666667%;
            column-gap: 5.1666666667%;
  }
}
.page-location .p-location01 .c-location-image-block__title {
  margin-bottom: 4vw;
}
@media (min-width: 768px) {
  .page-location .p-location01 .c-location-image-block__title {
    margin-bottom: 2.34375vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location01 .c-location-image-block__title {
    margin-bottom: 30px;
  }
}
.page-location .p-location01 .c-location-image-block__icon {
  width: 24vw;
  top: -6.6666666667vw;
  right: -2.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location01 .c-location-image-block__icon {
    width: 18.28125vw;
    top: -1.953125vw;
    right: -1.71875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location01 .c-location-image-block__icon {
    width: 234px;
    top: -25px;
    right: -22px;
  }
}
.page-location .p-location02 {
  margin-bottom: 17.6vw;
}
@media (min-width: 768px) {
  .page-location .p-location02 {
    margin-bottom: 10.3125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location02 {
    margin-bottom: 132px;
  }
}
.page-location .p-location02 .c-section-title {
  margin-bottom: 8.8vw;
}
@media (min-width: 768px) {
  .page-location .p-location02 .c-section-title {
    margin-bottom: 5.15625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location02 .c-section-title {
    margin-bottom: 66px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location02 .c-location-image-block {
    grid-template-columns: 0 50% 3.8333333333% 42% 4.1666666667%;
    -webkit-column-gap: unset;
       -moz-column-gap: unset;
            column-gap: unset;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location02 .c-location-image-block {
    grid-template-columns: 1.5% 48.5% 3.8333333333% 42% 4.1666666667%;
  }
}
.page-location .p-location02 .c-location-image-block__title {
  margin-bottom: 9.3333333333vw;
}
@media (min-width: 768px) {
  .page-location .p-location02 .c-location-image-block__title {
    margin-bottom: 5.390625vw;
    grid-column: 2/6;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location02 .c-location-image-block__title {
    margin-bottom: 69px;
  }
}
.page-location .p-location02 .c-location-image-block__contents {
  display: contents;
}
@media (min-width: 768px) {
  .page-location .p-location02 .c-location-image-block__text {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .page-location .p-location02 .c-location-image-block__image {
    padding-top: 2vw;
    grid-column: 4/5;
    grid-row: 2/3;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location02 .c-location-image-block__image {
    padding-top: 24px;
  }
}
.page-location .p-location02 .c-location-image-block__icon {
  width: 24vw;
  top: -8vw;
  right: -2.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location02 .c-location-image-block__icon {
    width: 14.84375vw;
    top: -4.53125vw;
    right: -3.4375vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location02 .c-location-image-block__icon {
    width: 190px;
    top: -58px;
    right: -44px;
  }
}
.page-location .p-location02 .c-location-image-block__box {
  margin-bottom: 3.4666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location02 .c-location-image-block__box {
    margin-bottom: 2.03125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location02 .c-location-image-block__box {
    margin-bottom: 26px;
  }
}
.page-location .p-location02 .c-location-image-block__note {
  margin-bottom: 2.1333333333vw;
}
@media (min-width: 768px) {
  .page-location .p-location02 .c-location-image-block__note {
    margin-bottom: 1.25vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location02 .c-location-image-block__note {
    margin-bottom: 16px;
  }
}
.page-location .p-location03 {
  margin-bottom: 18.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location03 {
    margin-bottom: 10.9375vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location03 {
    margin-bottom: 140px;
  }
}
.page-location .p-location03 .c-section-title {
  margin-bottom: 8.8vw;
}
@media (min-width: 768px) {
  .page-location .p-location03 .c-section-title {
    margin-bottom: 5.15625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location03 .c-section-title {
    margin-bottom: 66px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location03 .c-location-image-block {
    grid-template-columns: 42.6666666667% 52.1666666667% 0;
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
  }
}
@media (min-width: 768px) {
  .page-location .p-location03 .c-location-image-block {
    grid-template-columns: 42.6666666667% 48.75% 3.5833333333%;
  }
}
.page-location .p-location03 .c-location-image-block__title {
  margin-bottom: 4.2666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location03 .c-location-image-block__title {
    margin-bottom: 2.5vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location03 .c-location-image-block__title {
    margin-bottom: 32px;
  }
}
.page-location .p-location03 .c-location-image-block__box:last-of-type {
  margin-bottom: 3.2vw;
}
@media (min-width: 768px) {
  .page-location .p-location03 .c-location-image-block__box:last-of-type {
    margin-bottom: 1.875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location03 .c-location-image-block__box:last-of-type {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location03 .c-location-image-block__image {
    padding-top: 4.0833333333vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location03 .c-location-image-block__image {
    padding-top: 49px;
  }
}
.page-location .p-location03 .c-location-image-block ul {
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1rem, 0.689rem + 1.33vw, 1.75rem);
  line-height: 1.4642857143;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.page-location .p-location03 .c-location-image-block ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.page-location .p-location04 {
  margin-bottom: 16vw;
}
@media (min-width: 768px) {
  .page-location .p-location04 {
    margin-bottom: 9.375vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location04 {
    margin-bottom: 120px;
  }
}
.page-location .p-location04 .c-section-title {
  margin-bottom: 8.8vw;
}
@media (min-width: 768px) {
  .page-location .p-location04 .c-section-title {
    margin-bottom: 5.15625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location04 .c-section-title {
    margin-bottom: 66px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location04 .c-location-image-block {
    grid-template-columns: 48.3333333333% 4.8333333333% 42.6666666667% 4.1666666667%;
    -webkit-column-gap: unset;
       -moz-column-gap: unset;
            column-gap: unset;
  }
}
@media (min-width: 768px) {
  .page-location .p-location04 .c-location-image-block__contents {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.page-location .p-location04 .c-location-image-block__title {
  margin-bottom: 3.7333333333vw;
}
@media (min-width: 768px) {
  .page-location .p-location04 .c-location-image-block__title {
    margin-bottom: 2.109375vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location04 .c-location-image-block__title {
    margin-bottom: 27px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location04 .c-location-image-block__image {
    grid-column: 3/44;
    grid-row: 1/2;
  }
}
.page-location .p-location04 .c-location-image-block .c-table__table th, .page-location .p-location04 .c-location-image-block .c-table__table td {
  width: 25%;
}
.page-location .p-location05 {
  margin-bottom: 19.7333333333vw;
}
@media (min-width: 768px) {
  .page-location .p-location05 {
    margin-bottom: 11.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location05 {
    margin-bottom: 148px;
  }
}
.page-location .p-location05 .c-section-title {
  margin-bottom: 10.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location05 .c-section-title {
    margin-bottom: 6.25vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location05 .c-section-title {
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location05 .c-location-image-block {
    grid-template-columns: 42.6666666667% 54.8333333333%;
    -webkit-column-gap: 2.5%;
       -moz-column-gap: 2.5%;
            column-gap: 2.5%;
  }
}
.page-location .p-location05 .c-location-image-block__title {
  margin-bottom: 7.4666666667vw;
  color: var(--red2);
}
@media (min-width: 768px) {
  .page-location .p-location05 .c-location-image-block__title {
    margin-bottom: 4.375vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location05 .c-location-image-block__title {
    margin-bottom: 56px;
  }
}
.page-location .p-location05 .c-location-image-block__image {
  position: static;
}
@media (min-width: 768px) {
  .page-location .p-location05 .c-location-image-block__image {
    padding-top: 2.6666666667vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location05 .c-location-image-block__image {
    padding-top: 32px;
  }
}
.page-location .p-location05 .c-location-image-block__icon {
  width: 24vw;
  top: -5.3333333333vw;
  right: -2.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location05 .c-location-image-block__icon {
    width: 14.84375vw;
    top: -12.03125vw;
    right: -0.390625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location05 .c-location-image-block__icon {
    width: 190px;
    top: -154px;
    right: -5px;
  }
}
.page-location .p-location05 .c-location-image-block .c-table__table tbody td.cell01 {
  width: 16.1094224924%;
}
.page-location .p-location05 .c-location-image-block .c-table__table tbody td.cell02 {
  width: 12.462006079%;
}
.page-location .p-location05 .c-location-image-block .c-table__table tbody td.cell03 {
  width: 35.7142857143%;
}
.page-location .p-location05 .c-location-image-block .c-table__table tbody td.cell04 {
  width: 35.7142857143%;
}
.page-location .p-location06 {
  margin-bottom: 9.8666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location06 {
    margin-bottom: 5.78125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location06 {
    margin-bottom: 74px;
  }
}
.page-location .p-location06 .c-section-title {
  margin-bottom: 8vw;
}
@media (min-width: 768px) {
  .page-location .p-location06 .c-section-title {
    margin-bottom: 4.6875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location06 .c-section-title {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location06 .c-location-image-block {
    grid-template-columns: 5.5% 41.75% 6.6666666667% 46.0833333333%;
    -webkit-column-gap: unset;
       -moz-column-gap: unset;
            column-gap: unset;
  }
}
.page-location .p-location06 .c-location-image-block__title {
  margin-bottom: 2.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location06 .c-location-image-block__title {
    margin-bottom: 1.640625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location06 .c-location-image-block__title {
    margin-bottom: 21px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location06 .c-location-image-block__image {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.page-location .p-location06 .c-location-image-block__icon {
  width: 24vw;
  top: -6.6666666667vw;
  left: -2.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location06 .c-location-image-block__icon {
    width: 14.84375vw;
    top: -1.953125vw;
    left: -5.234375vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location06 .c-location-image-block__icon {
    width: 190px;
    top: -25px;
    left: -67px;
  }
}
.page-location .p-location06 .c-location-image-block__caption {
  padding-top: 9px;
}
@media (min-width: 768px) {
  .page-location .p-location06 .c-location-image-block__contents {
    grid-column: 4/5;
    grid-row: 1/2;
  }
}
.page-location .p-location07 {
  margin-bottom: 8.8vw;
}
@media (min-width: 768px) {
  .page-location .p-location07 {
    margin-bottom: 5.078125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location07 {
    margin-bottom: 65px;
  }
}
.page-location .p-location07 .c-section-title {
  margin-bottom: 8vw;
}
@media (min-width: 768px) {
  .page-location .p-location07 .c-section-title {
    margin-bottom: 4.6875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location07 .c-section-title {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location07 .c-location-image-block {
    grid-template-columns: 42.4166666667% 11.6666666667% 41.75% 4.1666666667%;
    -webkit-column-gap: unset;
       -moz-column-gap: unset;
            column-gap: unset;
  }
}
@media (min-width: 768px) {
  .page-location .p-location07 .c-location-image-block__contents {
    display: contents;
  }
}
.page-location .p-location07 .c-location-image-block__title {
  margin-bottom: 2.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location07 .c-location-image-block__title {
    margin-bottom: 1.640625vw;
    grid-column: 1/4;
    grid-row: 1/2;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location07 .c-location-image-block__title {
    margin-bottom: 21px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location07 .c-location-image-block__text {
    padding-top: 3.28125vw;
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location07 .c-location-image-block__text {
    padding-top: 42px;
  }
}
.page-location .p-location07 .c-location-image-block__image {
  padding-top: 0;
}
@media (min-width: 768px) {
  .page-location .p-location07 .c-location-image-block__image {
    padding-top: 0;
    grid-column: 3/4;
    grid-row: 2/3;
  }
}
.page-location .p-location07 .c-location-image-block__icon {
  width: 24vw;
  top: -7.2vw;
  right: -2.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location07 .c-location-image-block__icon {
    width: 13.75vw;
    top: -10.15625vw;
    right: -0.78125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location07 .c-location-image-block__icon {
    width: 176px;
    top: -130px;
    right: -50px;
  }
}
.page-location .p-location08 {
  margin-bottom: 14.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location08 {
    margin-bottom: 8.59375vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location08 {
    margin-bottom: 110px;
  }
}
.page-location .p-location08 .c-section-title {
  margin-bottom: 9.3333333333vw;
}
@media (min-width: 768px) {
  .page-location .p-location08 .c-section-title {
    margin-bottom: 5.46875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location08 .c-section-title {
    margin-bottom: 70px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location08 .c-location-image-block {
    grid-template-columns: 42.6666666667% 53.5833333333%;
    -webkit-column-gap: 3.75%;
       -moz-column-gap: 3.75%;
            column-gap: 3.75%;
  }
}
.page-location .p-location08 .c-location-image-block__title {
  margin-bottom: 7.2vw;
}
@media (min-width: 768px) {
  .page-location .p-location08 .c-location-image-block__title {
    margin-bottom: 4.21875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location08 .c-location-image-block__title {
    margin-bottom: 54px;
  }
}
.page-location .p-location09 .c-section-title {
  margin-bottom: 9.3333333333vw;
}
@media not all and (min-width: 768px) {
  .page-location .p-location09 .c-section-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 2.6666666667vw;
  }
}
@media (min-width: 768px) {
  .page-location .p-location09 .c-section-title {
    margin-bottom: 5.46875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location09 .c-section-title {
    margin-bottom: 70px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location09 .c-location-image-block {
    grid-template-columns: 42.5833333333% 10.8333333333% 42.8333333333% 3.75%;
    -webkit-column-gap: unset;
       -moz-column-gap: unset;
            column-gap: unset;
  }
}
@media (min-width: 768px) {
  .page-location .p-location09 .c-location-image-block__contents {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.page-location .p-location09 .c-location-image-block__title {
  margin-bottom: 7.2vw;
}
@media (min-width: 768px) {
  .page-location .p-location09 .c-location-image-block__title {
    margin-bottom: 4.21875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location09 .c-location-image-block__title {
    margin-bottom: 54px;
  }
}
@media (min-width: 768px) {
  .page-location .p-location09 .c-location-image-block__image {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
.page-location .p-location09 .c-location-image-block .c-table {
  max-width: 1140px;
  width: 100%;
  margin: 10.4vw auto 0;
}
@media (min-width: 768px) {
  .page-location .p-location09 .c-location-image-block .c-table {
    margin-top: 6.09375vw;
    grid-column: 1/4;
    grid-row: 2/3;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location09 .c-location-image-block .c-table {
    margin-top: 78px;
  }
}
.page-location .p-location09 .c-location-image-block .c-table tbody td.cell01 {
  width: 25.9649122807%;
}
.page-location .p-location09 .c-location-image-block .c-table tbody td.cell02 {
  width: 16.5789473684%;
}
.page-location .p-location09 .c-location-image-block .c-table tbody td.cell03 {
  width: 20%;
}
.page-location .p-location09 .c-location-image-block .c-table tbody td.cell04 {
  width: 28.6842105263%;
}
.page-location .p-location09 .c-location-image-block .c-table tbody td.cell05 {
  width: 8.7719298246%;
}
.page-location .p-location09 .c-note {
  padding-top: 5.3333333333vw;
  font-size: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem);
  line-height: 1.2;
  font-style: normal;
  display: block;
}
@media (min-width: 768px) {
  .page-location .p-location09 .c-note {
    padding-top: 3.125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location09 .c-note {
    padding-top: 40px;
  }
}
.page-location .p-experience-type {
  padding: 14.9333333333vw 5.3333333333vw 12vw;
}
@media (min-width: 768px) {
  .page-location .p-experience-type {
    padding: 8.75vw 1.5625vw 7.03125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-experience-type {
    padding: 112px 0 90px;
  }
}
.page-location .p-experience-type .c-section-title {
  max-width: 1246px;
  width: 100%;
  margin: 0 auto 7.4666666667vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.25rem, 0.784rem + 1.99vw, 2.375rem);
  color: var(--green);
  line-height: 1.4871794872;
  letter-spacing: 0.05em;
  text-align: center;
  display: grid;
  grid-template-columns: 12vw 62.6666666667vw 12vw;
  -webkit-column-gap: 1.3333333333vw;
     -moz-column-gap: 1.3333333333vw;
          column-gap: 1.3333333333vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-location .p-experience-type .c-section-title {
    margin-bottom: 4.453125vw;
    grid-template-columns: 15.7303370787% 66.25% 15.3125%;
    -webkit-column-gap: 0.78125%;
       -moz-column-gap: 0.78125%;
            column-gap: 0.78125%;
  }
}
@media (min-width: 1280px) {
  .page-location .p-experience-type .c-section-title {
    margin-bottom: 57px;
    grid-template-columns: 196px 848px 196px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.page-location .p-experience-type .c-section-title::before, .page-location .p-experience-type .c-section-title::after {
  width: 100%;
  background: url(../img/location/deco-leaf.png) no-repeat 0 0/cover;
  content: " ";
  display: block;
  aspect-ratio: 391/114;
}
.page-location .p-experience-type .c-grid {
  max-width: 1134px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100%;
  row-gap: 8vw;
}
@media (min-width: 768px) {
  .page-location .p-experience-type .c-grid {
    grid-template-columns: repeat(2, 45.0617283951%);
    -webkit-column-gap: 9.8765432099%;
       -moz-column-gap: 9.8765432099%;
            column-gap: 9.8765432099%;
    row-gap: unset;
  }
}
.page-location .c-experience-type-box__title {
  margin-bottom: 2.6666666667vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.125rem, 0.814rem + 1.33vw, 1.875rem);
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .page-location .c-experience-type-box__title {
    margin-bottom: 1.640625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .c-experience-type-box__title {
    margin-bottom: 21px;
  }
}
.page-location .c-experience-type-box__text {
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 2.1111111111;
  font-weight: 400;
}
.page-location .c-experience-type-box__text p:last-of-type {
  margin-bottom: 0;
}
.page-location .c-experience-type-box__image {
  margin-bottom: 5.0666666667vw;
}
@media (min-width: 768px) {
  .page-location .c-experience-type-box__image {
    margin-bottom: 2.96875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .c-experience-type-box__image {
    margin-bottom: 38px;
  }
}
.page-location .c-experience-type-box__distance {
  padding-top: 3px;
  margin-bottom: 0;
  font-size: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: right;
}
@media (min-width: 768px) {
  .page-location .education01 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .page-location .education02 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .page-location .education03 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .page-location .education04 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .page-location .education05 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
@media (min-width: 768px) {
  .page-location .education06 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media (min-width: 768px) {
  .page-location .education07 {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
@media (min-width: 768px) {
  .page-location .education08 {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}
@media (min-width: 768px) {
  .page-location .education09 {
    grid-column: 2/3;
    grid-row: 5/6;
  }
}
@media (min-width: 768px) {
  .page-location .education10 {
    grid-column: 1/2;
    grid-row: 6/7;
  }
}
@media (min-width: 768px) {
  .page-location .education11 {
    grid-column: 2/3;
    grid-row: 6/7;
  }
}
@media (min-width: 768px) {
  .page-location .medical01,
  .page-location .medical02,
  .page-location .medical03 {
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  .page-location .medical01 .c-facility-box__caption {
    display: grid;
    grid-template-columns: 52.6315789474% 44.7368421053%;
    -webkit-column-gap: 1.7543859649%;
       -moz-column-gap: 1.7543859649%;
            column-gap: 1.7543859649%;
  }
}
@media (min-width: 768px) {
  .page-location .medical01 .c-facility-box__title {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .page-location .medical01 .c-facility-box__text {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.page-location .medical01 .c-facility-box__text em {
  color: var(--red);
  font-weight: 400;
}
.page-location .medical01 .c-facility-box__text em .num {
  font-size: clamp(1.5rem, 1.293rem + 0.88vw, 2rem);
  line-height: 1;
}
@media (min-width: 768px) {
  .page-location .medical01 .c-facility-box__info {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .page-location .medical01 .c-facility-box__info dt:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .page-location .medical01 .c-facility-box__info dt:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
@media (min-width: 768px) {
  .page-location .medical01 .c-facility-box__info dt:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
@media (min-width: 768px) {
  .page-location .medical01 .c-facility-box__info dd:nth-of-type(1) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .page-location .medical01 .c-facility-box__info dd:nth-of-type(2) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media (min-width: 768px) {
  .page-location .medical01 .c-facility-box__info dd:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 4/5;
  }
}
.page-location .medical01 .c-facility-box__icon {
  width: 24vw;
  top: -13.3333333333vw;
  right: -2.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .medical01 .c-facility-box__icon {
    width: 23.046875vw;
    top: -10.15625vw;
    right: -0.78125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .medical01 .c-facility-box__icon {
    width: 295px;
    top: -130px;
    right: -50px;
  }
}
@media (min-width: 768px) {
  .page-location .medical02,
  .page-location .medical03 {
    display: grid;
    grid-template-columns: 44.9122807018% 52.1052631579%;
    -webkit-column-gap: 2.9824561404%;
       -moz-column-gap: 2.9824561404%;
            column-gap: 2.9824561404%;
  }
}
@media (min-width: 768px) {
  .page-location .public01 {
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  .page-location .public01 .c-facility-box__caption {
    display: grid;
    grid-template-columns: 52.6315789474% 44.7368421053%;
    -webkit-column-gap: 1.7543859649%;
       -moz-column-gap: 1.7543859649%;
            column-gap: 1.7543859649%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (min-width: 768px) {
  .page-location .public01 .c-facility-box__title {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .page-location .public01 .c-facility-box__text {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.page-location .public01 .c-facility-box__text ul {
  padding-top: 2.6666666667vw;
  font-size: clamp(0.75rem, 0.672rem + 0.33vw, 0.938rem);
  line-height: 1.6;
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-location .public01 .c-facility-box__text ul {
    padding-top: 1.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .public01 .c-facility-box__text ul {
    padding-top: 20px;
  }
}
@media (min-width: 768px) {
  .page-location .public01 .c-facility-box__info {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.page-location .public01 .c-facility-box__icon {
  width: 24vw;
  top: -13.3333333333vw;
  right: -2.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .public01 .c-facility-box__icon {
    width: 22.265625vw;
    top: -4.6875vw;
    right: -0.78125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .public01 .c-facility-box__icon {
    width: 285px;
    top: -60px;
    right: -55px;
  }
}
.page-location .public02 .c-facility-box__icon {
  width: 24vw;
  top: -5.3333333333vw;
  right: -2.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .public02 .c-facility-box__icon {
    width: 22.265625vw;
    top: -4.6875vw;
    right: -3.359375vw;
  }
}
@media (min-width: 1280px) {
  .page-location .public02 .c-facility-box__icon {
    width: 190px;
    top: -60px;
    right: -43px;
  }
}
.page-location .public03 .c-facility-box__icon {
  width: 24vw;
  top: -5.3333333333vw;
  right: -2.6666666667vw;
}
@media (min-width: 768px) {
  .page-location .public03 .c-facility-box__icon {
    width: 22.265625vw;
    top: -4.6875vw;
    right: -0.78125vw;
  }
}
@media (min-width: 1280px) {
  .page-location .public03 .c-facility-box__icon {
    width: 190px;
    top: -60px;
    right: -43px;
  }
}
.page-location .p-location-map {
  padding-top: 13.3333333333vw;
  padding-bottom: 15.4666666667vw;
}
@media (min-width: 768px) {
  .page-location .p-location-map {
    padding-top: 7.8125vw;
    padding-bottom: 8.984375vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location-map {
    padding-top: 100px;
    padding-bottom: 115px;
  }
}
.page-location .p-location-map .c-section-title {
  margin-bottom: 3.7333333333vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.125rem, 0.814rem + 1.33vw, 1.875rem);
  color: var(--green);
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-align: center;
}
@media (min-width: 768px) {
  .page-location .p-location-map .c-section-title {
    margin-bottom: 2.1875vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location-map .c-section-title {
    margin-bottom: 28px;
  }
}
.page-location .p-location-map .l-section__inner {
  max-width: 1240px;
  width: 100%;
  padding: 8vw 5.8666666667vw 11.2vw;
  margin: 0 auto;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .page-location .p-location-map .l-section__inner {
    padding: 4.6875vw 3.515625vw 6.640625vw;
  }
}
@media (min-width: 1280px) {
  .page-location .p-location-map .l-section__inner {
    padding: 60px 45px 85px;
  }
}
.page-location .p-location-map .l-section__inner figure {
  max-width: 1046px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

/* ========================================================================================= ^^
  Design
============================================================================================ ^^ */
.page-design .p-lead {
  padding-top: 14.6666666667vw;
  padding-bottom: 3.2vw;
}
@media (min-width: 768px) {
  .page-design .p-lead {
    padding-top: 8.515625vw;
    padding-bottom: 1.875vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-lead {
    padding-top: 109px;
    padding-bottom: 24px;
  }
}
.page-design .p-lead .c-section-title {
  margin-bottom: 5.3333333333vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.5rem, 1.112rem + 1.66vw, 2.438rem);
  color: var(--green);
  line-height: 1.4871794872;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
}
@media (min-width: 768px) {
  .page-design .p-lead .c-section-title {
    margin-bottom: 3.125vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-lead .c-section-title {
    margin-bottom: 40px;
  }
}
.page-design .p-lead .c-text {
  margin-bottom: 9.3333333333vw;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(1rem, 0.845rem + 0.66vw, 1.375rem);
  line-height: 1.8181818182;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (min-width: 768px) {
  .page-design .p-lead .c-text {
    margin-bottom: 5.46875vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-lead .c-text {
    margin-bottom: 70px;
  }
}
.page-design .p-lead .c-text p:last-of-type {
  margin-bottom: 0;
}
.page-design .p-lead .c-image {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .page-design .p-lead .c-image {
    width: 1300px;
    margin: 0 -10px;
  }
}
.page-design .p-area {
  padding-top: 8vw;
}
@media (min-width: 768px) {
  .page-design .p-area {
    padding-top: 4.6875vw;
    padding-bottom: 7.8125vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
.page-design .p-area .c-section-title {
  margin-bottom: 8.8vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.5rem, 1.112rem + 1.66vw, 2.438rem);
  color: var(--green);
  line-height: 1.4871794872;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
}
@media (min-width: 768px) {
  .page-design .p-area .c-section-title {
    margin-bottom: 5.15625vw;
    background-size: 7.8125vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-section-title {
    margin-bottom: 66px;
    background-size: 100px;
  }
}
.page-design .p-area .c-text {
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(1rem, 0.845rem + 0.66vw, 1.375rem);
  line-height: 1.8181818182;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-align: center;
}
.page-design .p-area .c-text p:last-of-type {
  margin-bottom: 0;
}
.page-design .p-area .c-grid {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 8vw;
  display: grid;
  grid-template-columns: 100%;
  row-gap: 8vw;
}
@media (min-width: 768px) {
  .page-design .p-area .c-grid {
    margin-bottom: 2.34375vw;
    grid-template-columns: 32% 65.5%;
    -webkit-column-gap: 2.5%;
       -moz-column-gap: 2.5%;
            column-gap: 2.5%;
    row-gap: 1.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-grid {
    row-gap: 20px;
    margin-bottom: 30px;
  }
}
.page-design .p-area .c-box {
  background-color: var(--white);
}
@media (min-width: 768px) {
  .page-design .p-area .c-box.item01 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.page-design .p-area .c-box.item01 .c-box__contents {
  padding-top: 5.3333333333vw;
}
@media not all and (min-width: 768px) {
  .page-design .p-area .c-box.item01 .c-box__contents {
    padding-bottom: 5.3333333333vw;
  }
}
@media (min-width: 768px) {
  .page-design .p-area .c-box.item01 .c-box__contents {
    padding-top: 3.125vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-box.item01 .c-box__contents {
    padding-top: 40px;
  }
}
.page-design .p-area .c-box.item01 .c-box__text {
  margin-bottom: 5.8666666667vw;
}
@media (min-width: 768px) {
  .page-design .p-area .c-box.item01 .c-box__text {
    margin-bottom: 1.71875vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-box.item01 .c-box__text {
    margin-bottom: 22px;
  }
}
@media (min-width: 768px) {
  .page-design .p-area .c-box.item02 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.page-design .p-area .c-box.item02 .c-box__contents {
  padding-top: 5.0666666667vw;
}
@media not all and (min-width: 768px) {
  .page-design .p-area .c-box.item02 .c-box__contents {
    padding-bottom: 5.3333333333vw;
  }
}
@media (min-width: 768px) {
  .page-design .p-area .c-box.item02 .c-box__contents {
    padding-top: 2.96875vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-box.item02 .c-box__contents {
    padding-top: 38px;
  }
}
.page-design .p-area .c-box.item02 .c-box__text {
  margin-bottom: 5.8666666667vw;
}
@media (min-width: 768px) {
  .page-design .p-area .c-box.item02 .c-box__text {
    margin-bottom: 1.71875vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-box.item02 .c-box__text {
    margin-bottom: 22px;
  }
}
.page-design .p-area .c-box.item03 {
  padding-bottom: 3.4666666667vw;
}
@media (min-width: 768px) {
  .page-design .p-area .c-box.item03 {
    padding-bottom: 2.03125vw;
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-box.item03 {
    padding-bottom: 26px;
  }
}
.page-design .p-area .c-box__title {
  height: 10.6666666667vw;
  margin-bottom: 0;
  background-color: var(--green2);
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.25rem, 1.017rem + 0.99vw, 1.813rem);
  color: var(--white);
  line-height: 1.9655172414;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-design .p-area .c-box__title {
    height: 4.6875vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-box__title {
    height: 60px;
  }
}
.page-design .p-area .c-box__text {
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.688rem, 1.48rem + 0.88vw, 2.188rem);
  color: var(--green2);
  line-height: 1.3428571429;
  letter-spacing: 0.1em;
  text-align: center;
}
.page-design .p-area .c-box__text--2 {
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.438rem, 1.256rem + 0.77vw, 1.875rem);
  color: var(--green2);
  line-height: 1.1666666667;
  letter-spacing: 0.1em;
  text-align: center;
}
.page-design .p-area .c-box__note {
  padding: 0 9.3333333333vw;
  margin-bottom: 0;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem);
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .page-design .p-area .c-box__note {
    padding: 0 2.734375vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-box__note {
    padding: 0 35px;
  }
}
.page-design .p-area .c-box__row {
  width: 90%;
  margin: 0 auto;
  border-bottom: 2px solid var(--green);
  display: grid;
  row-gap: 8vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-design .p-area .c-box__row {
    width: 57.421875vw;
    padding-top: 2.34375vw;
    padding-bottom: 2.8125vw;
    grid-template-columns: 57.1428571429% 42.8571428571%;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-box__row {
    width: 700px;
    padding-top: 30px;
    padding-bottom: 36px;
    grid-template-columns: 60% 40%;
  }
}
.page-design .p-area .c-box__row.row01 {
  padding-top: 6.6666666667vw;
  padding-bottom: 6.4vw;
}
@media (min-width: 768px) {
  .page-design .p-area .c-box__row.row01 {
    padding-top: 1.953125vw;
    padding-bottom: 1.875vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-box__row.row01 {
    padding-top: 25px;
    padding-bottom: 24px;
  }
}
.page-design .p-area .c-box__row.row02 {
  padding-top: 8.8vw;
  padding-bottom: 9.3333333333vw;
}
@media (min-width: 768px) {
  .page-design .p-area .c-box__row.row02 {
    padding-top: 2.578125vw;
    padding-bottom: 2.734375vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-box__row.row02 {
    padding-top: 33px;
    padding-bottom: 35px;
  }
}
.page-design .p-area .c-box__row.row03 {
  padding-top: 13.3333333333vw;
  padding-bottom: 7.4666666667vw;
}
@media (min-width: 768px) {
  .page-design .p-area .c-box__row.row03 {
    padding-top: 3.90625vw;
    padding-bottom: 2.1875vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-box__row.row03 {
    padding-top: 50px;
    padding-bottom: 28px;
  }
}
.page-design .p-area .c-box__row.row03 + p {
  padding: 0 5.3333333333vw;
  margin-bottom: 0;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: right;
}
@media (min-width: 768px) {
  .page-design .p-area .c-box__row.row03 + p {
    padding: 0 8.75vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-box__row.row03 + p {
    padding: 0 112px;
  }
}
.page-design .p-area .c-box__row--no-border {
  border-bottom: none;
}
.page-design .p-area .c-box__list {
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(0.938rem, 0.782rem + 0.66vw, 1.313rem);
  line-height: 1.3333333333;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.page-design .p-area .c-map {
  max-width: 1200px;
  width: 100%;
  padding: 7.7333333333vw 5.3333333333vw 10.6666666667vw;
  margin: 0 auto;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .page-design .p-area .c-map {
    padding: 4.453125vw 2.96875vw 6.25vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-map {
    padding: 57px 38px 80px;
  }
}
.page-design .p-area .c-map h3 {
  margin-bottom: 7.2vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.5rem, 1.112rem + 1.66vw, 2.438rem);
  color: var(--green2);
  line-height: 1.4871794872;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 768px) {
  .page-design .p-area .c-map h3 {
    margin-bottom: 4.21875vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-map h3 {
    margin-bottom: 54px;
  }
}
.page-design .p-area .c-map .c-image__caption {
  padding-top: 2.6666666667vw;
  text-align: right;
}
@media (min-width: 768px) {
  .page-design .p-area .c-map .c-image__caption {
    padding-top: 0.78125vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-area .c-map .c-image__caption {
    padding-top: 10px;
  }
}
.page-design .l-design-section {
  width: 100vw;
  padding: 10.6666666667vw 0 0;
  margin: 0 -20px;
  position: relative;
}
@media (min-width: 768px) {
  .page-design .l-design-section {
    padding: 6.25vw 20px 0;
    margin: 0 calc(50% - 50vw);
  }
}
@media (min-width: 1280px) {
  .page-design .l-design-section {
    padding-top: 80px;
  }
}
.page-design .l-design-section::before {
  background: url(../img/design/bg-leaf.png) no-repeat 0 0/100% auto;
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  aspect-ratio: 1821/1194;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .page-design .l-design-section::before {
    width: 71.09375vw;
  }
}
@media (min-width: 1280px) {
  .page-design .l-design-section::before {
    width: 910px;
  }
}
.page-design .l-design-section .l-section {
  padding-right: 5.3333333333vw;
  padding-left: 5.3333333333vw;
}
@media (min-width: 768px) {
  .page-design .l-design-section .l-section {
    width: 100vw;
    padding-right: 1.5625vw;
    padding-left: 1.5625vw;
    margin: 0 calc(50% - 50vw);
  }
}
@media (min-width: 1280px) {
  .page-design .l-design-section .l-section {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .page-design .l-design-section .l-section.p-structure, .page-design .l-design-section .l-section.p-planting {
    margin: 0 auto;
  }
}
.page-design .c-contents-visual {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  .page-design .c-contents-visual {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.page-design .p-exterior {
  padding-top: 10.6666666667vw;
  padding-bottom: 8vw;
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .page-design .p-exterior {
    padding-top: 6.09375vw;
    padding-bottom: 4.6875vw;
    margin: 0 auto;
  }
}
@media (min-width: 1280px) {
  .page-design .p-exterior {
    padding-top: 78px;
    padding-bottom: 60px;
  }
}
.page-design .p-exterior .l-section__inner {
  max-width: 960px;
}
.page-design .p-exterior .c-section-title {
  margin-bottom: 7.2vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.5rem, 1.112rem + 1.66vw, 2.438rem);
  color: var(--green);
  line-height: 1.4871794872;
  font-weight: 700;
  letter-spacing: 0.14em;
}
@media (min-width: 768px) {
  .page-design .p-exterior .c-section-title {
    margin-bottom: 2.109375vw;
    background-size: 7.8125vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-exterior .c-section-title {
    margin-bottom: 27px;
    background-size: 100px;
  }
}
.page-design .p-exterior .c-text {
  margin-bottom: 11.2vw;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(1rem, 0.845rem + 0.66vw, 1.375rem);
  line-height: 1.8181818182;
  font-weight: 300;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .page-design .p-exterior .c-text {
    margin-bottom: 3.28125vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-exterior .c-text {
    max-width: 790px;
    margin-bottom: 84px;
  }
}
.page-design .p-exterior .c-text p:last-of-type {
  margin-bottom: 0;
}
.page-design .p-exterior::before {
  width: 100%;
  background: url(../img/design/bg-leaf02.png) no-repeat 0 0/100% auto;
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  aspect-ratio: 2881/940;
  mix-blend-mode: multiply;
}
.page-design .p-exterior .c-image {
  position: relative;
}
@media (min-width: 1280px) {
  .page-design .p-exterior .c-image {
    width: 1280px;
    margin: 0 -160px;
  }
}
.page-design .p-exterior .c-image__caption {
  padding: 0;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: 12px;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: right;
  position: absolute;
  right: 15px;
  bottom: 10px;
}
.page-design .p-structure {
  max-width: 1440px;
  width: 100%;
  padding-top: 6.6666666667vw;
  padding-bottom: 16vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-design .p-structure {
    width: 100vw;
    padding-top: 3.671875vw;
    padding-bottom: 8.828125vw;
    margin: 0 -20px;
  }
}
@media (min-width: 1280px) {
  .page-design .p-structure {
    width: 100%;
    padding-top: 47px;
    padding-bottom: 113px;
    margin: 0 auto;
    background-position: 0 430px;
    background-size: 1331px auto;
  }
}
.page-design .p-structure .l-section__inner {
  max-width: 960px;
}
.page-design .p-structure .c-section-title {
  margin-bottom: 7.2vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.5rem, 1.112rem + 1.66vw, 2.438rem);
  color: var(--green);
  line-height: 1.4871794872;
  font-weight: 700;
  letter-spacing: 0.14em;
}
@media (min-width: 768px) {
  .page-design .p-structure .c-section-title {
    margin-bottom: 2.109375vw;
    background-size: 7.8125vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-structure .c-section-title {
    margin-bottom: 27px;
    background-size: 100px;
  }
}
.page-design .p-structure .c-text {
  margin-bottom: 11.2vw;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(1rem, 0.845rem + 0.66vw, 1.375rem);
  line-height: 1.8181818182;
  font-weight: 300;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .page-design .p-structure .c-text {
    margin-bottom: 6.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-structure .c-text {
    max-width: 850px;
    margin-bottom: 84px;
  }
}
.page-design .p-structure .c-text p:last-of-type {
  margin-bottom: 0;
}
.page-design .p-structure .c-image__caption {
  padding-top: 1.3333333333vw;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(0.625rem, 0.521rem + 0.44vw, 0.875rem);
  line-height: 1.1428571429;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: right;
}
@media (min-width: 768px) {
  .page-design .p-structure .c-image__caption {
    padding-top: 0.390625vw;
    line-height: 2.8571428571;
  }
}
@media (min-width: 1280px) {
  .page-design .p-structure .c-image__caption {
    padding-top: 5px;
  }
}
.page-design .p-structure .c-grid {
  max-width: 956px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 49%);
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
  row-gap: 8vw;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (min-width: 768px) {
  .page-design .p-structure .c-grid {
    grid-template-columns: 37.8661087866% 8.5774058577% 24.0585774059% 5.4393305439% 24.0585774059%;
    grid-template-rows: auto auto;
    -webkit-column-gap: unset;
       -moz-column-gap: unset;
            column-gap: unset;
    row-gap: unset;
  }
}
@media (min-width: 1280px) {
  .page-design .p-structure .c-grid {
    width: 1115px;
    margin: 0;
  }
}
.page-design .p-structure .structure01 {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media (min-width: 768px) {
  .page-design .p-structure .structure01 {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.page-design .p-structure .structure02 {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .page-design .p-structure .structure02 {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.page-design .p-structure .structure03 {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  .page-design .p-structure .structure03 {
    grid-column: 3/6;
    grid-row: 1/2;
  }
}
.page-design .p-structure .structure04 {
  grid-column: 1/2;
  grid-row: 3/4;
}
@media (min-width: 768px) {
  .page-design .p-structure .structure04 {
    margin-top: auto;
    grid-column: 3/4;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .page-design .p-structure .structure04 .c-image__caption {
    padding-top: 0;
  }
}
.page-design .p-structure .structure05 {
  grid-column: 2/3;
  grid-row: 3/4;
}
@media (min-width: 768px) {
  .page-design .p-structure .structure05 {
    margin-top: auto;
    grid-column: 5/6;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .page-design .p-structure .structure05 .c-image__caption {
    padding-top: 0;
  }
}
.page-design .p-planting {
  max-width: 1440px;
  width: 100%;
  padding-top: 13.3333333333vw;
  padding-bottom: 26.6666666667vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-design .p-planting {
    width: 100vw;
    padding-top: 8.203125vw;
    padding-bottom: 8.125vw;
    margin: 0 auto;
  }
}
@media (min-width: 1280px) {
  .page-design .p-planting {
    width: 100%;
    padding-top: 105px;
    padding-bottom: 104px;
    background-position: 100% 384px;
    background-size: 1441px auto;
  }
}
.page-design .p-planting .l-section__inner {
  max-width: 960px;
}
.page-design .p-planting .c-section-title {
  margin-bottom: 8.5333333333vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.5rem, 1.112rem + 1.66vw, 2.438rem);
  color: var(--green);
  line-height: 1.4871794872;
  font-weight: 700;
  letter-spacing: 0.14em;
}
@media (min-width: 768px) {
  .page-design .p-planting .c-section-title {
    margin-bottom: 2.5vw;
    background-size: 7.8125vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-planting .c-section-title {
    margin-bottom: 32px;
    background-size: 100px;
  }
}
.page-design .p-planting .c-text {
  margin-bottom: 10.6666666667vw;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(1rem, 0.845rem + 0.66vw, 1.375rem);
  line-height: 1.8181818182;
  font-weight: 300;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .page-design .p-planting .c-text {
    margin-bottom: 6.640625vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-planting .c-text {
    max-width: 850px;
    margin-bottom: 85px;
  }
}
.page-design .p-planting .c-text p:last-of-type {
  margin-bottom: 0;
}
.page-design .p-planting h3 {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 1.8666666667vw;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--green2);
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .page-design .p-planting h3 {
    margin-bottom: 0.546875vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-planting h3 {
    margin-bottom: 7px;
  }
}
.page-design .p-planting .c-grid {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 32%);
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
}
@media (min-width: 768px) {
  .page-design .p-planting .c-grid {
    grid-template-columns: repeat(4, 22.6666666667%);
    -webkit-column-gap: 3.1111111111%;
       -moz-column-gap: 3.1111111111%;
            column-gap: 3.1111111111%;
    row-gap: 1.953125vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-planting .c-grid {
    row-gap: 25px;
  }
}
.page-design .p-planting .c-grid .c-image__caption {
  padding-top: 2.6666666667vw;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(0.563rem, 0.485rem + 0.33vw, 0.75rem);
  line-height: 2.2;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-align: center;
}
@media (min-width: 768px) {
  .page-design .p-planting .c-grid .c-image__caption {
    padding-top: 0.78125vw;
  }
}
@media (min-width: 1280px) {
  .page-design .p-planting .c-grid .c-image__caption {
    padding-top: 10px;
  }
}
.page-design .p-planting .c-grid p {
  margin: auto 0 -7.7333333333vw -9.8666666667vw;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(0.688rem, 0.61rem + 0.33vw, 0.875rem);
  line-height: 1.8857142857;
  font-weight: 300;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .page-design .p-planting .c-grid p {
    margin: auto -3.515625vw 0 0;
  }
}
@media (min-width: 1280px) {
  .page-design .p-planting .c-grid p {
    margin-right: -50px;
  }
}

/* ========================================================================================= ^^
  House plan
============================================================================================ ^^ */
.page-plan .l-section__inner {
  max-width: 1200px;
}
.page-plan .p-lead {
  width: 100vw;
  height: 32vw;
  padding: 0 5.3333333333vw;
  margin: 0 -5.3333333333vw;
  position: relative;
}
@media (min-width: 768px) {
  .page-plan .p-lead {
    width: calc(100% + 40px);
    height: 25.234375vw;
    padding: 0 1.5625vw;
    margin: 0 -20px;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-lead {
    height: 323px;
    padding: 0;
  }
}
.page-plan .p-lead .l-section__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-plan .p-lead .c-section-title {
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.25rem, 0.758rem + 2.1vw, 2.438rem);
  color: var(--section-title-color);
  line-height: 1.4871794872;
  letter-spacing: 0.14em;
  text-align: center;
  font-weight: 700;
}
.page-plan .p-plan-contents {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.page-plan .l-page-contents {
  overflow: hidden;
}
.page-plan .p-space {
  max-width: 1200px;
  width: 100%;
  padding-top: 4.8vw;
  margin: 0 auto 4vw;
  position: relative;
}
@media (min-width: 768px) {
  .page-plan .p-space {
    padding: 4.6875vw 0 0;
    margin-bottom: 4.6875vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-space {
    padding-top: 60px;
    margin-bottom: 60px;
  }
}
.page-plan .p-space .l-section__inner {
  position: static;
}
.page-plan .p-space .c-section-title {
  margin-bottom: 12.8vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.25rem, 0.758rem + 2.1vw, 2.438rem);
  color: var(--green2);
  line-height: 1.4871794872;
  letter-spacing: 0.14em;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-plan .p-space .c-section-title {
    margin-bottom: 7.5vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-space .c-section-title {
    margin-bottom: 96px;
  }
}
.page-plan .p-space .wrap {
  padding-bottom: 11.2vw;
}
@media (min-width: 768px) {
  .page-plan .p-space .wrap {
    padding-bottom: 3.28125vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-space .wrap {
    padding-bottom: 42px;
  }
}
.page-plan .p-space .wrap::before {
  width: 100vw;
  height: 68vw;
  padding: 10.6666666667vw 0;
  margin: 0 calc(50% - 50vw);
  background: url(../img/plan/bg-space.png) no-repeat 0 0/cover;
  content: " ";
  mix-blend-mode: multiply;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .page-plan .p-space .wrap::before {
    height: 57.03125vw;
    padding: 3.28125vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-space .wrap::before {
    width: calc(100% + 12.5vw);
    height: 730px;
    margin-right: -3.90625vw;
    margin-left: -9.375vw;
  }
}
@media (min-width: 1440px) {
  .page-plan .p-space .wrap::before {
    width: calc(100% + 170px);
    margin-right: -50px;
    margin-left: -120px;
  }
}
.page-plan .p-space .wrap .c-image {
  position: relative;
  z-index: 5;
}
.page-plan .p-space .wrap .c-image__caption {
  width: 100%;
  padding-top: 1.6vw;
  font-size: clamp(0.625rem, 0.573rem + 0.22vw, 0.75rem);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: right;
  position: absolute;
  top: 100%;
  left: 0;
}
@media (min-width: 768px) {
  .page-plan .p-space .wrap .c-image__caption {
    padding-top: 0.9375vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-space .wrap .c-image__caption {
    padding-top: 12px;
  }
}
.page-plan .p-flooring {
  padding-top: 5.6vw;
  padding-bottom: 7.7333333333vw;
}
@media (min-width: 768px) {
  .page-plan .p-flooring {
    padding-top: 6.71875vw;
    padding-bottom: 4.53125vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-flooring {
    padding-top: 86px;
    padding-bottom: 58px;
  }
}
.page-plan .p-flooring .c-section-title {
  padding-bottom: 2.4vw;
  margin-bottom: 9.0666666667vw;
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(to right, var(--green2) 100px, var(--gray) 100px) 1;
     border-image: linear-gradient(to right, var(--green2) 100px, var(--gray) 100px) 1;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.25rem, 0.991rem + 1.1vw, 1.875rem);
  color: var(--green2);
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 2.6666666667vw;
     -moz-column-gap: 2.6666666667vw;
          column-gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .page-plan .p-flooring .c-section-title {
    padding-bottom: 0.703125vw;
    margin-bottom: 5.3125vw;
    -o-border-image: linear-gradient(to right, var(--green2) 200px, var(--gray) 200px) 1;
       border-image: linear-gradient(to right, var(--green2) 200px, var(--gray) 200px) 1;
    -webkit-column-gap: 1.5625vw;
       -moz-column-gap: 1.5625vw;
            column-gap: 1.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-flooring .c-section-title {
    padding-bottom: 9px;
    margin-bottom: 68px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.page-plan .p-flooring .c-section-title span {
  font-size: clamp(0.625rem, 0.496rem + 0.55vw, 0.938rem);
  color: var(--font-base-color);
  font-weight: 400;
}
.page-plan .p-flooring .c-grid {
  display: grid;
  row-gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .page-plan .p-flooring .c-grid {
    grid-template-columns: repeat(3, 32.6666666667%);
    -webkit-column-gap: 1%;
       -moz-column-gap: 1%;
            column-gap: 1%;
    row-gap: unset;
  }
}
.page-plan .p-beam {
  padding-top: 6.1333333333vw;
  padding-bottom: 8vw;
}
@media (min-width: 768px) {
  .page-plan .p-beam {
    padding-top: 3.59375vw;
    padding-bottom: 9.375vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-beam {
    padding-top: 46px;
    padding-bottom: 120px;
  }
}
.page-plan .p-beam .c-section-title {
  padding-bottom: 2.4vw;
  margin-bottom: 2.4vw;
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(to right, var(--green2) 100px, var(--gray) 100px) 1;
     border-image: linear-gradient(to right, var(--green2) 100px, var(--gray) 100px) 1;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.25rem, 0.991rem + 1.1vw, 1.875rem);
  color: var(--green2);
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.6666666667vw;
     -moz-column-gap: 2.6666666667vw;
          column-gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .page-plan .p-beam .c-section-title {
    padding-bottom: 0.703125vw;
    margin-bottom: 1.40625vw;
    -o-border-image: linear-gradient(to right, var(--green2) 200px, var(--gray) 200px) 1;
       border-image: linear-gradient(to right, var(--green2) 200px, var(--gray) 200px) 1;
    -webkit-column-gap: 1.5625vw;
       -moz-column-gap: 1.5625vw;
            column-gap: 1.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-beam .c-section-title {
    padding-bottom: 9px;
    margin-bottom: 18px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.page-plan .p-beam .c-section-title + .c-text {
  margin-bottom: 9.0666666667vw;
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .page-plan .p-beam .c-section-title + .c-text {
    margin-bottom: 5.3125vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-beam .c-section-title + .c-text {
    margin-bottom: 68px;
  }
}
.page-plan .p-beam .c-grid {
  width: 100%;
  display: grid;
  row-gap: 8vw;
}
@media (min-width: 768px) {
  .page-plan .p-beam .c-grid {
    grid-template-columns: repeat(2, 48.3333333333%);
    -webkit-column-gap: 3.3333333333%;
       -moz-column-gap: 3.3333333333%;
            column-gap: 3.3333333333%;
    row-gap: unset;
  }
}
.page-plan .p-beam .c-image {
  position: relative;
}
.page-plan .p-beam .c-image__caption {
  font-size: 12px;
  color: var(--white);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: right;
  position: absolute;
  right: 2.6666666667%;
  bottom: 1.3333333333%;
}
@media (min-width: 768px) {
  .page-plan .p-beam .c-image__caption {
    right: 0.6944444444%;
    bottom: 0.3472222222%;
  }
}
@media (min-width: 1440px) {
  .page-plan .p-beam .c-image__caption {
    right: 10px;
    bottom: 5px;
  }
}
.page-plan .c-bg {
  position: relative;
}
.page-plan .c-bg::after {
  width: 100vw;
  height: 100%;
  margin: 0 -5.3333333333vw;
  background: url(../img/plan/bg.png) no-repeat 0 0/100% auto;
  content: " ";
  display: block;
  mix-blend-mode: multiply;
  position: absolute;
  top: 170.6666666667vw;
  left: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .page-plan .c-bg::after {
    width: calc(100% + 40px);
    margin: 0 -20px;
    clip-path: polygon(0 466px, 100% 0, 100% 100%, 0 100%);
    top: 86.796875vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .c-bg::after {
    top: 1111px;
  }
}
.page-plan .c-bg2 {
  position: relative;
}
@media (min-width: 768px) {
  .page-plan .c-bg2 {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}
.page-plan .c-bg2::before {
  width: 100vw;
  margin: 0 -5.3333333333vw;
  background: url(../img/design/bg-leaf02.png) no-repeat 0 0/100% auto;
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  aspect-ratio: 2881/940;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .page-plan .c-bg2::before {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}
.page-plan .p-plan {
  padding-top: 16.5333333333vw;
  padding-bottom: 6.4vw;
  position: relative;
}
@media (min-width: 768px) {
  .page-plan .p-plan {
    padding-top: 9.53125vw;
    padding-bottom: 3.75vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan {
    padding-top: 122px;
    padding-bottom: 48px;
  }
}
.page-plan .p-plan .p-plan-header {
  margin-bottom: 4.5333333333vw;
}
@media (min-width: 768px) {
  .page-plan .p-plan .p-plan-header {
    margin-bottom: 5.3125vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan .p-plan-header {
    margin-bottom: 68px;
  }
}
.page-plan .p-plan .p-plan-header__inner {
  padding-bottom: 3.7333333333vw;
  border-bottom: 4px solid var(--plan-header-border-color);
  display: grid;
  row-gap: 4vw;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  .page-plan .p-plan .p-plan-header__inner {
    padding-bottom: 2.1875vw;
    grid-template-columns: 53.75% 44.1666666667%;
    -webkit-column-gap: 2.0833333333%;
       -moz-column-gap: 2.0833333333%;
            column-gap: 2.0833333333%;
    row-gap: unset;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan .p-plan-header__inner {
    padding-bottom: 28px;
  }
}
.page-plan .p-plan .p-plan-header::after {
  width: 53.3333333333vw;
  border-radius: calc(infinity * 1px);
  background-color: var(--white);
  aspect-ratio: 1/1;
  content: " ";
  display: block;
  position: absolute;
  top: -10.1333333333vw;
  left: -16vw;
  z-index: 1;
}
@media (min-width: 768px) {
  .page-plan .p-plan .p-plan-header::after {
    width: 37.5vw;
    top: -9.140625vw;
    left: -4.6875vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan .p-plan-header::after {
    width: 480px;
    top: -117px;
    left: -60px;
  }
}
.page-plan .p-plan .c-plan-num {
  width: 100%;
  padding: 0 1.3333333333vw;
  border: 2px solid var(--plan-header-border-color);
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.938rem, 0.42rem + 2.21vw, 2.188rem);
  line-height: 1.04;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: center;
  aspect-ratio: 133/133;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 1.8666666667vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column: 1/2;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-num {
    padding: 0 0.390625vw;
    row-gap: 0.9375vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan .c-plan-num {
    padding: 0 0.625rem;
    row-gap: 12px;
  }
}
.page-plan .p-plan .c-plan-num span {
  font-size: clamp(1.375rem, 0.587rem + 3.36vw, 3.277rem);
  line-height: 1;
}
.page-plan .p-plan .c-plan-num .sub {
  font-size: 4vw;
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-num .sub {
    font-size: 1.71875vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan .c-plan-num .sub {
    font-size: 1.375rem;
  }
}
.page-plan .p-plan .c-plan-num .num {
  margin-right: 0.1em;
  font-size: 7.7333333333vw;
  letter-spacing: -0.1em;
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-num .num {
    font-size: 4.375vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan .c-plan-num .num {
    font-size: 3.5rem;
  }
}
.page-plan .p-plan .c-plan-num .unit {
  font-size: 4vw;
  letter-spacing: -0.1em;
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-num .unit {
    font-size: 1.71875vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan .c-plan-num .unit {
    font-size: 1.375rem;
  }
}
.page-plan .p-plan .c-plan-name1 {
  padding-top: 0.8vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(2rem, 0.86rem + 4.86vw, 4.75rem);
  line-height: 1;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 0.8vw;
  grid-column: 3/4;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-name1 {
    padding-top: 0.46875vw;
    font-size: clamp(1.125rem, -4.313rem + 11.33vw, 4.75rem);
    row-gap: 0.46875vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan .c-plan-name1 {
    padding-top: 6px;
    row-gap: 6px;
  }
}
.page-plan .p-plan .c-plan-name1 span {
  font-size: clamp(0.563rem, 0.278rem + 1.22vw, 1.25rem);
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-name1 span {
    font-size: clamp(0.5rem, -0.625rem + 2.34vw, 1.25rem);
  }
}
.page-plan .p-plan .c-plan-name2 {
  padding-top: 0.5333333333vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.875rem, 0.616rem + 1.1vw, 1.5rem);
  line-height: 1;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-column: 5/6;
  grid-row: 1/2;
  row-gap: 1.0666666667vw;
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-name2 {
    padding-top: 1.328125vw;
    font-size: clamp(0.5rem, -1rem + 3.13vw, 1.5rem);
    row-gap: 0.3125vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan .c-plan-name2 {
    padding-top: 17px;
    row-gap: 4px;
  }
}
.page-plan .p-plan .c-text {
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.063rem, 0.467rem + 2.54vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.page-plan .p-plan .c-text p:last-of-type {
  margin-bottom: 0;
}
.page-plan .p-plan .c-section-title {
  display: grid;
  grid-template-columns: 23.8805970149% 2.9850746269% 29.7619047619% 2.9850746269% 1fr;
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-section-title {
    grid-template-columns: 22.735042735% 5.1282051282% 35.8974358974% 0.6837606838% 1fr;
  }
}
.page-plan .p-plan .p-plan-info {
  margin-bottom: 6.6666666667vw;
  display: grid;
  grid-template-columns: 100%;
  row-gap: 4vw;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  .page-plan .p-plan .p-plan-info {
    margin-bottom: 8.28125vw;
    grid-template-columns: 41.25% 55.4166666667%;
    -webkit-column-gap: 2.5%;
       -moz-column-gap: 2.5%;
            column-gap: 2.5%;
    row-gap: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan .p-plan-info {
    margin-bottom: 106px;
  }
}
@-moz-document url-prefix() {
  @media (min-width: 768px) {
    .page-plan .p-plan .p-plan-info {
      grid-template-columns: 42.9166666667% 56.25%;
      -moz-column-gap: 0.8333333333%;
           column-gap: 0.8333333333%;
    }
  }
}
.page-plan .p-plan .c-plan-flooring {
  width: 100%;
  min-height: 18.6666666667vw;
  padding: 1.3333333333vw 4vw 0 4vw;
  border: 1px solid var(--black);
  display: grid;
  grid-template-columns: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-flooring {
    min-height: 0;
    height: 5.46875vw;
    padding: 0 0.390625vw;
    grid-template-columns: 50% 50%;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan .c-plan-flooring {
    height: 70px;
    padding: 0 5px;
    grid-template-columns: 47% 53%;
  }
}
@-moz-document url-prefix() {
  @media (min-width: 1280px) {
    .page-plan .p-plan .c-plan-flooring {
      grid-template-columns: 50% 50%;
    }
  }
}
@media (min-width: 1280px) {
  .mac .page-plan .p-plan .c-plan-flooring {
    grid-template-columns: 46% 54%;
  }
}
.page-plan .p-plan .c-plan-flooring .flooring {
  margin-bottom: 0;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.875rem, 0.849rem + 0.11vw, 0.938rem);
  line-height: 1.3333333333;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-flooring .flooring {
    font-size: clamp(0.625rem, 0.156rem + 0.98vw, 0.938rem);
    text-align: left;
  }
}
.page-plan .p-plan .c-plan-flooring .material {
  margin-bottom: 0;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.5rem, 1.396rem + 0.44vw, 1.75rem);
  line-height: 1.6785714286;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-flooring .material {
    font-size: clamp(0.5rem, -1.375rem + 3.91vw, 1.75rem);
    text-align: left;
  }
}
.page-plan .p-plan .c-plan-area {
  width: 100%;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 0.75;
  font-weight: 300;
  display: grid;
  row-gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-area {
    margin-left: auto;
    font-size: clamp(0.375rem, -0.75rem + 2.34vw, 1.125rem);
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 0.8333333333%;
       -moz-column-gap: 0.8333333333%;
            column-gap: 0.8333333333%;
    row-gap: 0.9375vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-plan .c-plan-area {
    row-gap: 12px;
  }
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-area__item--01 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-area__item--02 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-area__item--03 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .page-plan .p-plan .c-plan-area__item--04 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.page-plan .p-plan .c-image img {
  max-width: 1045px;
  width: 100%;
}
.page-plan .p-after-service {
  padding-top: 5.8666666667vw;
  padding-bottom: 8.8vw;
  position: relative;
}
@media (min-width: 768px) {
  .page-plan .p-after-service {
    padding-top: 3.4375vw;
    padding-bottom: 5.078125vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-after-service {
    padding-top: 44px;
    padding-bottom: 65px;
  }
}
.page-plan .p-after-service::after {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  content: " ";
  display: block;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .page-plan .p-after-service::after {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}
.page-plan .p-after-service .c-section-title {
  width: 100%;
  margin-bottom: 6.6666666667vw;
  display: grid;
  grid-template-columns: 17.9104477612% 46.2686567164% 17.9104477612%;
  -webkit-column-gap: 8.9552238806%;
     -moz-column-gap: 8.9552238806%;
          column-gap: 8.9552238806%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-plan .p-after-service .c-section-title {
    margin-bottom: 8.671875vw;
    grid-template-columns: 24.5% 27.25% 24.5%;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-after-service .c-section-title {
    margin-bottom: 111px;
  }
}
.page-plan .p-after-service .c-section-title::before, .page-plan .p-after-service .c-section-title::after {
  width: 100%;
  height: 2px;
  background-color: var(--green);
  content: " ";
  display: block;
}
.page-plan .p-after-service .c-sub-title {
  width: 100%;
  margin: 0 auto 8.5333333333vw;
}
@media (min-width: 768px) {
  .page-plan .p-after-service .c-sub-title {
    width: 79.53125vw;
    margin-bottom: 5vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-after-service .c-sub-title {
    width: 1018px;
    margin-bottom: 64px;
  }
}
.page-plan .p-after-service .c-sub-title + .c-text {
  margin-bottom: 12vw;
}
@media (min-width: 768px) {
  .page-plan .p-after-service .c-sub-title + .c-text {
    margin-bottom: 7.03125vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-after-service .c-sub-title + .c-text {
    margin-bottom: 90px;
  }
}
.page-plan .p-after-service .c-text {
  margin-bottom: 10.6666666667vw;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 0.555rem + 2.43vw, 2.5rem);
  line-height: 1.75;
  letter-spacing: 0.16em;
  text-align: center;
}
@media (min-width: 768px) {
  .page-plan .p-after-service .c-text {
    margin-bottom: 6.25vw;
    font-size: clamp(0.813rem, -1.719rem + 5.27vw, 2.5rem);
  }
}
@media (min-width: 1280px) {
  .page-plan .p-after-service .c-text {
    margin-bottom: 80px;
  }
}
.page-plan .p-after-service .c-text sup {
  font-size: clamp(0.563rem, 0.278rem + 1.22vw, 1.25rem);
}
.page-plan .p-after-service .c-text p {
  margin-bottom: 9.0666666667vw;
}
@media (min-width: 768px) {
  .page-plan .p-after-service .c-text p {
    margin-bottom: 5.3125vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-after-service .c-text p {
    margin-bottom: 68px;
  }
}
.page-plan .p-after-service .c-text p:last-of-type {
  margin-bottom: 0;
}
.page-plan .p-after-service .c-text .c-text--small {
  font-size: clamp(0.938rem, 0.86rem + 0.33vw, 1.125rem);
}
.page-plan .p-after-service .c-text .c-text--small sup {
  font-size: 0.75em;
}
.page-plan .p-after-service .c-image__caption {
  padding-top: 3.7333333333vw;
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: clamp(0.563rem, 0.485rem + 0.33vw, 0.75rem);
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .page-plan .p-after-service .c-image__caption {
    padding-top: 2.109375vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-after-service .c-image__caption {
    padding-top: 27px;
  }
}
.page-plan .p-evaluation {
  padding-top: 8vw;
  padding-bottom: 12.8vw;
  position: relative;
}
@media (min-width: 768px) {
  .page-plan .p-evaluation {
    padding-top: 4.6875vw;
    padding-bottom: 7.421875vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-evaluation {
    padding-top: 60px;
    padding-bottom: 95px;
  }
}
.page-plan .p-evaluation::after {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  content: " ";
  display: block;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .page-plan .p-evaluation::after {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}
.page-plan .p-evaluation .c-section-title {
  padding-bottom: 2.4vw;
  margin-bottom: 3.2vw;
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(to right, var(--green2) 100px, var(--gray) 100px) 1;
     border-image: linear-gradient(to right, var(--green2) 100px, var(--gray) 100px) 1;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.25rem, 0.991rem + 1.1vw, 1.875rem);
  color: var(--green2);
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.6666666667vw;
     -moz-column-gap: 2.6666666667vw;
          column-gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .page-plan .p-evaluation .c-section-title {
    padding-bottom: 0.703125vw;
    margin-bottom: 1.796875vw;
    -o-border-image: linear-gradient(to right, var(--green2) 200px, var(--gray) 200px) 1;
       border-image: linear-gradient(to right, var(--green2) 200px, var(--gray) 200px) 1;
    -webkit-column-gap: 1.5625vw;
       -moz-column-gap: 1.5625vw;
            column-gap: 1.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-evaluation .c-section-title {
    padding-bottom: 9px;
    margin-bottom: 23px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.page-plan .p-evaluation .c-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
}
.page-plan .p-evaluation .c-grid.upper {
  margin-bottom: 8vw;
  row-gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .page-plan .p-evaluation .c-grid.upper {
    margin-bottom: 4.6875vw;
    grid-template-columns: 68.3333333333% 29%;
    -webkit-column-gap: 2.6666666667%;
       -moz-column-gap: 2.6666666667%;
            column-gap: 2.6666666667%;
    row-gap: unset;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-evaluation .c-grid.upper {
    margin-bottom: 60px;
  }
}
.page-plan .p-evaluation .c-grid.upper .c-text {
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .page-plan .p-evaluation .c-grid.upper .c-text {
    line-height: 2;
  }
}
.page-plan .p-evaluation .c-grid.upper .c-text p:last-of-type {
  margin-bottom: 0;
}
.page-plan .p-evaluation .c-grid.lower {
  row-gap: 4vw;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (min-width: 768px) {
  .page-plan .p-evaluation .c-grid.lower {
    grid-template-columns: 25.625% 23.125% 2.5% 23.125% 25.625%;
    rwo-gap: 2.34375vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-evaluation .c-grid.lower {
    row-gap: 30px;
  }
}
.page-plan .p-evaluation .c-grid.lower .c-evaluation-box {
  width: 100%;
  padding: 4.8vw 6.6666666667vw;
  border: 1px solid var(--green);
  border-radius: 4px;
  background-color: var(--white);
  aspect-ratio: 585/287;
}
@media (min-width: 768px) {
  .page-plan .p-evaluation .c-grid.lower .c-evaluation-box {
    padding: 2.1875vw 1.953125vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-evaluation .c-grid.lower .c-evaluation-box {
    padding: 28px 25px;
  }
}
.page-plan .p-evaluation .c-grid.lower .c-evaluation-box__title {
  margin-bottom: 4.5333333333vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1rem, 0.915rem + 0.36vw, 1.204rem);
  color: var(--green);
  line-height: 1.3803840166;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .page-plan .p-evaluation .c-grid.lower .c-evaluation-box__title {
    margin-bottom: 1.328125vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-evaluation .c-grid.lower .c-evaluation-box__title {
    margin-bottom: 17px;
  }
}
.page-plan .p-evaluation .c-grid.lower .c-evaluation-box__caption {
  padding-top: 6.4vw;
  font-size: clamp(0.875rem, 0.823rem + 0.22vw, 1rem);
  line-height: 1.875;
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-plan .p-evaluation .c-grid.lower .c-evaluation-box__caption {
    padding-top: 1.875vw;
  }
}
@media (min-width: 1280px) {
  .page-plan .p-evaluation .c-grid.lower .c-evaluation-box__caption {
    padding-top: 24px;
  }
}
@media (min-width: 768px) {
  .page-plan .p-evaluation .c-grid.lower .evaluation01 {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .page-plan .p-evaluation .c-grid.lower .evaluation02 {
    grid-column: 4/6;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .page-plan .p-evaluation .c-grid.lower .evaluation03 {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .page-plan .p-evaluation .c-grid.lower .evaluation04 {
    grid-column: 4/6;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) {
  .page-plan .p-evaluation .c-grid.lower .evaluation05 {
    grid-column: 2/5;
    grid-row: 3/4;
  }
}

/* ========================================================================================= ^^
  Quality
============================================================================================ ^^ */
.page-quality .l-section__inner {
  max-width: 1200px;
}
.page-quality section:not(.p-lead) .c-section-title {
  padding-bottom: 2.4vw;
  margin-bottom: 2.6666666667vw;
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(to right, var(--green2) 100px, var(--gray) 100px) 1;
     border-image: linear-gradient(to right, var(--green2) 100px, var(--gray) 100px) 1;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(1.75rem, 1.413rem + 1.44vw, 2.563rem);
  color: var(--green2);
  line-height: 1.38;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 2.6666666667vw;
     -moz-column-gap: 2.6666666667vw;
          column-gap: 2.6666666667vw;
  row-gap: 1.6vw;
}
@media (min-width: 768px) {
  .page-quality section:not(.p-lead) .c-section-title {
    padding-bottom: 0.703125vw;
    margin-bottom: 1.484375vw;
    -o-border-image: linear-gradient(to right, var(--green2) 200px, var(--gray) 200px) 1;
       border-image: linear-gradient(to right, var(--green2) 200px, var(--gray) 200px) 1;
    -webkit-column-gap: 1.5625vw;
       -moz-column-gap: 1.5625vw;
            column-gap: 1.5625vw;
    row-gap: 0.46875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality section:not(.p-lead) .c-section-title {
    padding-bottom: 9px;
    margin-bottom: 19px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 6px;
  }
}
.page-quality section:not(.p-lead) .c-section-title span.small {
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  color: var(--section-title-color2);
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.page-quality section:not(.p-lead) .c-text {
  margin-bottom: 5.8666666667vw;
  font-size: clamp(0.875rem, 0.783rem + 0.39vw, 1.096rem);
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .page-quality section:not(.p-lead) .c-text {
    margin-bottom: 3.4375vw;
  }
}
@media (min-width: 1280px) {
  .page-quality section:not(.p-lead) .c-text {
    margin-bottom: 44px;
  }
}
.page-quality section:not(.p-lead) .c-text p:last-of-type {
  margin-bottom: 0;
}
.page-quality .l-quality-section {
  width: 100vw;
  padding: 0 5.3333333333vw;
  margin: 0 calc(50% - 50vw);
  background: var(--white) url(../img/location/bg-section.png) no-repeat 0 0/100% auto;
}
@media (min-width: 768px) {
  .page-quality .l-quality-section {
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
  }
}
.page-quality .p-lead {
  padding-top: 10.1333333333vw;
  padding-bottom: 12.8vw;
}
@media (min-width: 768px) {
  .page-quality .p-lead {
    padding-top: 5.9375vw;
    padding-bottom: 7.5vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-lead {
    padding-top: 76px;
    padding-bottom: 96px;
  }
}
.page-quality .p-lead .c-section-title {
  margin-bottom: 6.1333333333vw;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 0.482rem + 2.21vw, 2.25rem);
  color: var(--font-base-color);
  line-height: 1.9444444444;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 768px) {
  .page-quality .p-lead .c-section-title {
    margin-bottom: 3.59375vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-lead .c-section-title {
    margin-bottom: 36px;
  }
}
.page-quality .p-lead .c-section-title span {
  height: 9.3333333333vw;
  padding: 0 2.1333333333vw;
  margin: 0 0.2em 0 0;
  background-color: var(--green2);
  color: var(--white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-quality .p-lead .c-section-title span {
    height: 4.375vw;
    padding: 0 0.78125vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-lead .c-section-title span {
    height: 56px;
    padding: 0 10px;
  }
}
.page-quality .p-lead .c-text {
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 2.1111111111;
  font-weight: 400;
  text-align: center;
}
.page-quality .p-lead .c-text p:last-of-type {
  margin-bottom: 0;
}
.page-quality .p-flooring {
  padding-top: 14.9333333333vw;
  padding-bottom: 7.2vw;
}
@media (min-width: 768px) {
  .page-quality .p-flooring {
    padding-top: 8.75vw;
    padding-bottom: 4.140625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-flooring {
    padding-top: 112px;
    padding-bottom: 53px;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-flooring .c-section-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-flooring .c-section-title span {
    white-space: nowrap;
  }
}
.page-quality .p-flooring .c-grid {
  display: grid;
  row-gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-flooring .c-grid {
    grid-template-columns: repeat(3, 32.6666666667%);
    -webkit-column-gap: 1%;
       -moz-column-gap: 1%;
            column-gap: 1%;
    row-gap: unset;
  }
}
.page-quality .p-beam {
  padding-top: 5.8666666667vw;
  padding-bottom: 4.8vw;
}
@media (min-width: 768px) {
  .page-quality .p-beam {
    padding-top: 3.4375vw;
    padding-bottom: 2.890625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-beam {
    padding-top: 44px;
    padding-bottom: 37px;
  }
}
.page-quality .p-beam .c-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 48.3333333333%);
  -webkit-column-gap: 3.3333333333%;
     -moz-column-gap: 3.3333333333%;
          column-gap: 3.3333333333%;
  row-gap: 8vw;
}
@media (min-width: 768px) {
  .page-quality .p-beam .c-grid {
    grid-template-columns: repeat(2, 48.3333333333%);
    -webkit-column-gap: 3.3333333333%;
       -moz-column-gap: 3.3333333333%;
            column-gap: 3.3333333333%;
    row-gap: unset;
  }
}
.page-quality .p-beam .c-image {
  position: relative;
}
.page-quality .p-beam .c-image__caption {
  font-size: 12px;
  color: var(--white);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: right;
  position: absolute;
  right: 2.6666666667%;
  bottom: 1.3333333333%;
}
@media (min-width: 768px) {
  .page-quality .p-beam .c-image__caption {
    right: 0.6944444444%;
    bottom: 0.3472222222%;
  }
}
@media (min-width: 1440px) {
  .page-quality .p-beam .c-image__caption {
    right: 10px;
    bottom: 5px;
  }
}
.page-quality .c-quality-content__title {
  margin-bottom: 2.1333333333vw;
  background-color: var(--green2);
  font-family: var(--font-serif);
  font-size: clamp(1.313rem, 1.054rem + 1.1vw, 1.938rem);
  color: var(--white);
  line-height: 1.2903225806;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-quality .c-quality-content__title {
    margin-bottom: 1.25vw;
    font-size: clamp(1.313rem, 0.375rem + 1.95vw, 1.938rem);
  }
}
@media (min-width: 1280px) {
  .page-quality .c-quality-content__title {
    margin-bottom: 16px;
  }
}
.page-quality .c-quality-content__text {
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 2.1111111111;
  font-weight: 400;
}
.page-quality .c-quality-content__text p:last-of-type {
  margin-bottom: 0;
}
.page-quality .c-quality-box__image {
  margin-bottom: 4vw;
  position: relative;
}
@media (min-width: 768px) {
  .page-quality .c-quality-box__image {
    margin-bottom: 0;
  }
}
.page-quality .c-quality-box__image-cap {
  margin-bottom: 0;
  font-size: 11px;
  line-height: 1;
  position: absolute;
  right: 1.3333333333vw;
  bottom: 1.3333333333vw;
}
@media (min-width: 768px) {
  .page-quality .c-quality-box__image-cap {
    font-size: 12px;
    right: 0.6944444444vw;
    bottom: 0.6944444444vw;
  }
}
@media (min-width: 1440px) {
  .page-quality .c-quality-box__image-cap {
    right: 10px;
    bottom: 10px;
  }
}
.page-quality .c-quality-box__image-cap--white {
  color: var(--white);
}
.page-quality .c-quality-box__caption {
  padding-top: 2.1333333333vw;
}
@media (min-width: 768px) {
  .page-quality .c-quality-box__caption {
    padding-top: 1.25vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .c-quality-box__caption {
    padding-top: 16px;
  }
}
.page-quality .c-quality-box__name {
  margin-bottom: 0.5333333333vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.875rem, 0.739rem + 0.58vw, 1.204rem);
  color: var(--green3);
  line-height: 1.3803840166;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-quality .c-quality-box__name {
    margin-bottom: 0.15625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .c-quality-box__name {
    margin-bottom: 2px;
  }
}
.page-quality .c-quality-box__name--2l {
  height: 53.2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-quality .c-quality-box__text {
  font-size: clamp(0.75rem, 0.646rem + 0.44vw, 1rem);
  line-height: 1.875;
  font-weight: 400;
}
.page-quality .c-quality-box__text p:last-of-type {
  margin-bottom: 0;
}
.page-quality .c-note-inline {
  font-size: 0.75em;
}
.page-quality .p-kitchen.l-section {
  padding-top: 16vw;
  padding-bottom: 20.5333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-kitchen.l-section {
    padding-top: 9.375vw;
    padding-bottom: 12.03125vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-kitchen.l-section {
    padding-top: 120px;
    padding-bottom: 154px;
  }
}
.page-quality .p-kitchen.l-section .c-section-title {
  margin-bottom: 9.0666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-kitchen.l-section .c-section-title {
    margin-bottom: 5.3125vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-kitchen.l-section .c-section-title {
    margin-bottom: 68px;
  }
}
.page-quality .p-kitchen.l-section .c-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 49%);
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
  row-gap: 4.2553191489vw;
}
@media (min-width: 768px) {
  .page-quality .p-kitchen.l-section .c-grid {
    grid-template-columns: repeat(4, 23%);
    -webkit-column-gap: 2.3333333333%;
       -moz-column-gap: 2.3333333333%;
            column-gap: 2.3333333333%;
    row-gap: 2.8125vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-kitchen.l-section .c-grid {
    row-gap: 36px;
  }
}
.page-quality .p-kitchen.l-section .kitchen01 {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .page-quality .p-kitchen.l-section .kitchen01 {
    grid-column: 3/5;
  }
}
.page-quality .p-kitchen.l-section .kitchen01 .c-quality-content__title {
  height: 24vw;
}
@media (min-width: 768px) {
  .page-quality .p-kitchen.l-section .kitchen01 .c-quality-content__title {
    height: 11.71875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-kitchen.l-section .kitchen01 .c-quality-content__title {
    height: 150px;
  }
}
.page-quality .p-kitchen.l-section .kitchen02 {
  grid-column: 1/3;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  .page-quality .p-kitchen.l-section .kitchen02 {
    grid-column: 1/3;
    grid-row: 1/3;
  }
}
.page-quality .p-kitchen.l-section .kitchen03 {
  grid-column: 1/2;
  grid-row: 3/4;
}
@media (min-width: 768px) {
  .page-quality .p-kitchen.l-section .kitchen03 {
    grid-column: 3/4;
    grid-row: 2/3;
  }
}
.page-quality .p-kitchen.l-section .kitchen04 {
  grid-column: 2/3;
  grid-row: 3/4;
}
@media (min-width: 768px) {
  .page-quality .p-kitchen.l-section .kitchen04 {
    grid-column: 4/5;
    grid-row: 2/3;
  }
}
.page-quality .p-kitchen.l-section .kitchen04 .c-quality-box__image-cap {
  color: var(--white);
}
.page-quality .p-kitchen.l-section .kitchen05 {
  grid-column: 1/2;
  grid-row: 4/5;
}
@media (min-width: 768px) {
  .page-quality .p-kitchen.l-section .kitchen05 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.page-quality .p-kitchen.l-section .kitchen06 {
  grid-column: 2/3;
  grid-row: 4/5;
}
@media (min-width: 768px) {
  .page-quality .p-kitchen.l-section .kitchen06 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
.page-quality .p-kitchen.l-section .kitchen07 {
  grid-column: 1/2;
  grid-row: 5/6;
}
@media (min-width: 768px) {
  .page-quality .p-kitchen.l-section .kitchen07 {
    grid-column: 3/4;
    grid-row: 3/4;
  }
}
.page-quality .p-kitchen.l-section .kitchen08 {
  grid-column: 2/3;
  grid-row: 5/6;
}
@media (min-width: 768px) {
  .page-quality .p-kitchen.l-section .kitchen08 {
    grid-column: 4/5;
    grid-row: 3/4;
  }
}
.page-quality .p-water-facilities.l-section {
  padding-top: 16.5333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section {
    padding-top: 9.6875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-water-facilities.l-section {
    padding-top: 124px;
  }
}
.page-quality .p-water-facilities.l-section .c-section-title {
  margin-bottom: 6.1333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .c-section-title {
    margin-bottom: 3.59375vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-water-facilities.l-section .c-section-title {
    margin-bottom: 46px;
  }
}
.page-quality .p-water-facilities.l-section .c-grid {
  width: 100%;
  margin-bottom: 6.9333333333vw;
  display: grid;
  grid-template-columns: repeat(2, 49%);
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
  row-gap: 4.2553191489vw;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .c-grid {
    margin-bottom: 4.0625vw;
    grid-template-columns: repeat(4, 23%);
    -webkit-column-gap: 2.6666666667%;
       -moz-column-gap: 2.6666666667%;
            column-gap: 2.6666666667%;
    row-gap: 2.8125vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-water-facilities.l-section .c-grid {
    margin-bottom: 52px;
    row-gap: 36px;
  }
}
.page-quality .p-water-facilities.l-section .c-grid.bathroom {
  padding-top: 8vw;
  padding-bottom: 11.2vw;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .c-grid.bathroom {
    padding-top: 4.6875vw;
    padding-bottom: 6.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-water-facilities.l-section .c-grid.bathroom {
    padding-top: 60px;
    padding-bottom: 84px;
  }
}
.page-quality .p-water-facilities.l-section .c-grid.toilet {
  padding-top: 12vw;
  padding-bottom: 11.7333333333vw;
  margin-bottom: 0;
  grid-template-columns: 100%;
  -webkit-column-gap: unset;
     -moz-column-gap: unset;
          column-gap: unset;
  row-gap: unset;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .c-grid.toilet {
    padding-top: 6.953125vw;
    padding-bottom: 6.875vw;
    grid-template-columns: 49.1666666667% 48.3333333333%;
    -webkit-column-gap: 2.5%;
       -moz-column-gap: 2.5%;
            column-gap: 2.5%;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-water-facilities.l-section .c-grid.toilet {
    padding-top: 89px;
    padding-bottom: 88px;
  }
}
.page-quality .p-water-facilities.l-section .water-facility01 {
  grid-column: 1/3;
  grid-row: 1/2;
}
.page-quality .p-water-facilities.l-section .water-facility01 .c-quality-content__title {
  height: 24vw;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .water-facility01 .c-quality-content__title {
    height: 11.71875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-water-facilities.l-section .water-facility01 .c-quality-content__title {
    height: 150px;
  }
}
.page-quality .p-water-facilities.l-section .water-facility02 {
  grid-column: 1/3;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .water-facility02 {
    grid-column: 3/5;
    grid-row: 1/3;
  }
}
.page-quality .p-water-facilities.l-section .water-facility03 {
  grid-column: 1/2;
  grid-row: 3/4;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .water-facility03 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.page-quality .p-water-facilities.l-section .water-facility04 {
  grid-column: 2/3;
  grid-row: 3/4;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .water-facility04 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.page-quality .p-water-facilities.l-section .water-facility05 {
  grid-column: 1/2;
  grid-row: 4/5;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .water-facility05 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.page-quality .p-water-facilities.l-section .water-facility6 {
  grid-column: 2/3;
  grid-row: 4/5;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .water-facility6 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
.page-quality .p-water-facilities.l-section .water-facility7 {
  grid-column: 1/2;
  grid-row: 5/6;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .water-facility7 {
    grid-column: 3/4;
    grid-row: 3/4;
  }
}
.page-quality .p-water-facilities.l-section .water-facility08 {
  grid-column: 2/3;
  grid-row: 5/6;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .water-facility08 {
    grid-column: 4/5;
    grid-row: 3/4;
  }
}
.page-quality .p-water-facilities.l-section .bathroom01 {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .bathroom01 {
    grid-column: 1/5;
    grid-row: 1/2;
  }
}
.page-quality .p-water-facilities.l-section .bathroom01 .c-quality-content__title {
  height: 26.1333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .bathroom01 .c-quality-content__title {
    height: 7.65625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-water-facilities.l-section .bathroom01 .c-quality-content__title {
    height: 98px;
  }
}
.page-quality .p-water-facilities.l-section .bathroom02 {
  grid-column: 1/3;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .bathroom02 {
    grid-column: 1/3;
    grid-row: 2/4;
  }
}
.page-quality .p-water-facilities.l-section .bathroom03 {
  grid-column: 1/2;
  grid-row: 3/4;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .bathroom03 {
    grid-column: 3/4;
    grid-row: 2/3;
  }
}
.page-quality .p-water-facilities.l-section .bathroom04 {
  grid-column: 2/3;
  grid-row: 3/4;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .bathroom04 {
    grid-column: 4/5;
    grid-row: 2/3;
  }
}
.page-quality .p-water-facilities.l-section .bathroom05 {
  grid-column: 1/2;
  grid-row: 4/5;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .bathroom05 {
    grid-column: 3/4;
    grid-row: 3/4;
  }
}
.page-quality .p-water-facilities.l-section .bathroom06 {
  grid-column: 2/3;
  grid-row: 4/5;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .bathroom06 {
    grid-column: 4/5;
    grid-row: 3/4;
  }
}
.page-quality .p-water-facilities.l-section .toilet .c-grid {
  margin-bottom: 4vw;
  display: grid;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .toilet .c-grid {
    margin-bottom: 2.265625vw;
    grid-template-columns: repeat(2, 48.813559322%);
    -webkit-column-gap: 2.3728813559%;
       -moz-column-gap: 2.3728813559%;
            column-gap: 2.3728813559%;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-water-facilities.l-section .toilet .c-grid {
    margin-bottom: 29px;
  }
}
.page-quality .p-water-facilities.l-section .toilet .c-list {
  margin-bottom: 8vw;
  display: grid;
  grid-template-columns: repeat(2, 49%);
  grid-template-rows: repeat(2, 32vw);
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
  row-gap: 1.3333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .toilet .c-list {
    margin-bottom: 0;
    grid-template-columns: repeat(2, 48.813559322%);
    grid-template-rows: repeat(2, 15.234375vw);
    -webkit-column-gap: 2.3728813559%;
       -moz-column-gap: 2.3728813559%;
            column-gap: 2.3728813559%;
    row-gap: 1.09375vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-water-facilities.l-section .toilet .c-list {
    grid-template-rows: repeat(2, 195px);
    row-gap: 14px;
  }
}
.page-quality .p-water-facilities.l-section .toilet .c-list__item {
  border: 2px solid var(--green2);
  border-radius: 10px;
  background-color: var(--gray2);
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.875rem, 0.512rem + 1.55vw, 1.75rem);
  color: var(--green2);
  line-height: 1.6666666667;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .toilet .c-list__item {
    font-size: clamp(0.875rem, -0.063rem + 1.95vw, 1.5rem);
  }
}
.page-quality .p-water-facilities.l-section .toilet01 {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .toilet01 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.page-quality .p-water-facilities.l-section .toilet01 .c-quality-content__title {
  height: 24.8vw;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .toilet01 .c-quality-content__title {
    height: 7.265625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-water-facilities.l-section .toilet01 .c-quality-content__title {
    height: 93px;
  }
}
.page-quality .p-water-facilities.l-section .toilet02 {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  .page-quality .p-water-facilities.l-section .toilet02 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.page-quality .p-underfloor-heating.l-section {
  padding-top: 16.5333333333vw;
  padding-bottom: 13.8666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-underfloor-heating.l-section {
    padding-top: 9.609375vw;
    padding-bottom: 8.125vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-underfloor-heating.l-section {
    padding-top: 123px;
    padding-bottom: 104px;
  }
}
.page-quality .p-underfloor-heating.l-section .c-section-title {
  margin-bottom: 10.4vw;
}
@media (min-width: 768px) {
  .page-quality .p-underfloor-heating.l-section .c-section-title {
    margin-bottom: 6.09375vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-underfloor-heating.l-section .c-section-title {
    margin-bottom: 78px;
  }
}
.page-quality .p-underfloor-heating.l-section .c-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
}
@media (min-width: 768px) {
  .page-quality .p-underfloor-heating.l-section .c-grid {
    grid-template-columns: 62.5% 36.3333333333%;
    -webkit-column-gap: 1.1666666667%;
       -moz-column-gap: 1.1666666667%;
            column-gap: 1.1666666667%;
  }
}
.page-quality .p-underfloor-heating.l-section .c-quality-note {
  min-height: 16vw;
  padding: 1.3333333333vw 2.6666666667vw;
  margin-top: 4vw;
  margin-bottom: 0;
  background-color: var(--green2);
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.875rem, 0.694rem + 0.77vw, 1.313rem);
  color: var(--white);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
}
@media (min-width: 768px) {
  .page-quality .p-underfloor-heating.l-section .c-quality-note {
    width: 46.875vw;
    min-height: 4.1666666667vw;
    padding: 0.3472222222vw 0.6944444444vw;
    margin: -2.7777777778vw 1.3888888889vw 0 auto;
    font-size: clamp(0.75rem, 0.543rem + 0.88vw, 1.25rem);
  }
}
@media (min-width: 1440px) {
  .page-quality .p-underfloor-heating.l-section .c-quality-note {
    width: 795px;
    min-height: 60px;
    padding: 5px 120px 5px 10px;
    margin: -40px -120px 0 auto;
    line-height: 1;
  }
}
.page-quality .p-underfloor-heating.l-section .underfloor-heating01 {
  margin-bottom: 7.2vw;
  grid-column: 1/2;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .page-quality .p-underfloor-heating.l-section .underfloor-heating01 {
    margin-bottom: 4.21875vw;
    grid-column: 1/3;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-underfloor-heating.l-section .underfloor-heating01 {
    margin-bottom: 54px;
  }
}
.page-quality .p-underfloor-heating.l-section .underfloor-heating01 .c-quality-content__title {
  height: 24.8vw;
}
@media (min-width: 768px) {
  .page-quality .p-underfloor-heating.l-section .underfloor-heating01 .c-quality-content__title {
    height: 7.265625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-underfloor-heating.l-section .underfloor-heating01 .c-quality-content__title {
    height: 93px;
  }
}
.page-quality .p-underfloor-heating.l-section .underfloor-heating02 {
  padding: 6.4vw 4vw;
  margin-bottom: 8vw;
  background-color: var(--gray2);
  grid-column: 1/2;
  grid-row: 2/3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-quality .p-underfloor-heating.l-section .underfloor-heating02 {
    padding: 3.6111111111vw 4.8611111111vw 6.6666666667vw 1.3888888889vw;
    margin-bottom: 0;
  }
}
@media (min-width: 1440px) {
  .page-quality .p-underfloor-heating.l-section .underfloor-heating02 {
    padding: 52px 70px 96px 120px;
    margin-left: -120px;
  }
}
.page-quality .p-underfloor-heating.l-section .underfloor-heating02 .c-quality-box__name {
  margin-bottom: 1.3333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-underfloor-heating.l-section .underfloor-heating02 .c-quality-box__name {
    margin-bottom: 0.78125vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-underfloor-heating.l-section .underfloor-heating02 .c-quality-box__name {
    margin-bottom: 10px;
  }
}
.page-quality .p-underfloor-heating.l-section .underfloor-heating02 .c-quality-box__caption {
  margin-bottom: 6.6666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-underfloor-heating.l-section .underfloor-heating02 .c-quality-box__caption {
    margin-bottom: 3.90625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-underfloor-heating.l-section .underfloor-heating02 .c-quality-box__caption {
    margin-bottom: 50px;
  }
}
.page-quality .p-underfloor-heating.l-section .underfloor-heating03 {
  grid-column: 1/2;
  grid-row: 3/4;
}
@media (min-width: 768px) {
  .page-quality .p-underfloor-heating.l-section .underfloor-heating03 {
    margin: auto 0;
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.page-quality .p-eco.l-section {
  padding-top: 16.5333333333vw;
  padding-bottom: 20.8vw;
}
@media (min-width: 768px) {
  .page-quality .p-eco.l-section {
    padding-top: 9.609375vw;
    padding-bottom: 12.1875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-eco.l-section {
    padding-top: 123px;
    padding-bottom: 156px;
  }
}
.page-quality .p-eco.l-section .c-section-title {
  margin-bottom: 6.6666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-eco.l-section .c-section-title {
    margin-bottom: 3.984375vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-eco.l-section .c-section-title {
    margin-bottom: 51px;
  }
}
.page-quality .p-eco.l-section .c-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 49%);
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
  row-gap: 3.2vw;
}
@media (min-width: 768px) {
  .page-quality .p-eco.l-section .c-grid {
    grid-template-columns: repeat(2, 48.6666666667%);
    -webkit-column-gap: 2.6666666667%;
       -moz-column-gap: 2.6666666667%;
            column-gap: 2.6666666667%;
    row-gap: 1.875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-eco.l-section .c-grid {
    row-gap: 24px;
  }
}
.page-quality .p-eco.l-section .eco01 {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .page-quality .p-eco.l-section .eco01 {
    grid-column: 1/3;
  }
}
.page-quality .p-eco.l-section .eco01 .c-quality-content__title {
  height: 24.8vw;
}
@media (min-width: 768px) {
  .page-quality .p-eco.l-section .eco01 .c-quality-content__title {
    height: 7.265625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-eco.l-section .eco01 .c-quality-content__title {
    height: 93px;
  }
}
.page-quality .p-eco.l-section .eco02 {
  padding: 4.5333333333vw;
  background-color: var(--gray2);
  grid-column: 1/2;
  grid-row: 2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .page-quality .p-eco.l-section .eco02 {
    padding: 2.65625vw;
    grid-column: 1/2;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-eco.l-section .eco02 {
    padding: 34px;
  }
}
.page-quality .p-eco.l-section .eco02 .c-quality-box__caption {
  padding-top: 4vw;
  padding-bottom: 2.1333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-eco.l-section .eco02 .c-quality-box__caption {
    padding-top: 0;
    padding-bottom: 1.25vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-eco.l-section .eco02 .c-quality-box__caption {
    padding-bottom: 16px;
  }
}
.page-quality .p-eco.l-section .eco03 {
  padding: 4.5333333333vw;
  background-color: var(--gray2);
  grid-column: 2/3;
  grid-row: 2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 768px) {
  .page-quality .p-eco.l-section .eco03 {
    padding: 2.65625vw;
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-eco.l-section .eco03 {
    padding: 34px;
  }
}
@media (min-width: 768px) {
  .page-quality .p-eco.l-section .eco03 .c-quality-box__image {
    margin-top: auto;
  }
}
.page-quality .p-eco.l-section .eco03 .c-quality-box__caption {
  padding-top: 0;
  padding-bottom: 2.1333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-eco.l-section .eco03 .c-quality-box__caption {
    padding-bottom: 1.25vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-eco.l-section .eco03 .c-quality-box__caption {
    padding-bottom: 16px;
  }
}
.page-quality .p-security.l-section {
  padding-top: 17.8666666667vw;
  padding-bottom: 20vw;
}
@media (min-width: 768px) {
  .page-quality .p-security.l-section {
    padding-top: 10.390625vw;
    padding-bottom: 11.71875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-security.l-section {
    padding-top: 133px;
    padding-bottom: 150px;
  }
}
.page-quality .p-security.l-section .c-section-title {
  margin-bottom: 6.6666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-security.l-section .c-section-title {
    margin-bottom: 3.90625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-security.l-section .c-section-title {
    margin-bottom: 50px;
  }
}
.page-quality .p-security.l-section .c-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 32%);
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
}
@media (min-width: 768px) {
  .page-quality .p-security.l-section .c-grid {
    grid-template-columns: repeat(3, 32%);
    -webkit-column-gap: 2%;
       -moz-column-gap: 2%;
            column-gap: 2%;
  }
}
.page-quality .p-security.l-section .security01 {
  margin-bottom: 3.2vw;
}
@media (min-width: 768px) {
  .page-quality .p-security.l-section .security01 {
    margin-bottom: 1.875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-security.l-section .security01 {
    margin-bottom: 24px;
  }
}
.page-quality .p-security.l-section .security01 .c-quality-content__title {
  height: 24.8vw;
}
@media (min-width: 768px) {
  .page-quality .p-security.l-section .security01 .c-quality-content__title {
    height: 7.265625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-security.l-section .security01 .c-quality-content__title {
    height: 93px;
  }
}
.page-quality .p-security.l-section .security02 {
  margin-bottom: 5.0666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-security.l-section .security02 {
    margin-bottom: 2.96875vw;
    display: grid;
    grid-template-columns: 48.1666666667% 47.3333333333%;
    -webkit-column-gap: 4.5%;
       -moz-column-gap: 4.5%;
            column-gap: 4.5%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-security.l-section .security02 {
    margin-bottom: 38px;
  }
}
.page-quality .p-security.l-section .security02 .c-quality-box__caption {
  padding-top: 0;
}
.page-quality .p-security.l-section .security02 .c-quality-box__name {
  margin-bottom: 1.3333333333vw;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 0.663rem + 1.44vw, 1.813rem);
  color: var(--green2);
  line-height: 1.6593103448;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4vw;
}
@media (min-width: 768px) {
  .page-quality .p-security.l-section .security02 .c-quality-box__name {
    margin-bottom: 0.390625vw;
    row-gap: 2.34375vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-security.l-section .security02 .c-quality-box__name {
    margin-bottom: 5px;
    row-gap: 30px;
  }
}
.page-quality .p-security.l-section .security02 .c-quality-box__name img {
  width: 45.8666666667%;
}
@media (min-width: 768px) {
  .page-quality .p-security.l-section .security02 .c-quality-box__name img {
    width: 26.875%;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-security.l-section .security02 .c-quality-box__name img {
    width: 344px;
  }
}
.page-quality .p-security.l-section .security02 .c-quality-box__text {
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 2.1111111111;
}
.page-quality .p-security.l-section .security02 + h3 {
  margin-bottom: 3.7333333333vw;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 0.84rem + 1.22vw, 1.813rem);
  color: var(--green2);
  line-height: 1.6593103448;
  letter-spacing: 0.03em;
  text-align: center;
}
@media (min-width: 768px) {
  .page-quality .p-security.l-section .security02 + h3 {
    margin-bottom: 2.1875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-security.l-section .security02 + h3 {
    margin-bottom: 28px;
  }
}
@media not all and (min-width: 768px) {
  .page-quality .p-security.l-section .security03 .c-quality-box__image-cap,
  .page-quality .p-security.l-section .security04 .c-quality-box__image-cap,
  .page-quality .p-security.l-section .security05 .c-quality-box__image-cap {
    right: 1.3333333333vw;
    bottom: 1.3333333333vw;
  }
}
.page-quality .c-item-box__image {
  position: relative;
}
.page-quality .c-item-box__image-cap {
  margin-bottom: 0;
  font-size: 11px;
  line-height: 1;
  position: absolute;
  right: 1.3333333333vw;
  bottom: 1.3333333333vw;
}
@media (min-width: 768px) {
  .page-quality .c-item-box__image-cap {
    font-size: 12px;
    right: 0.6944444444vw;
    bottom: 0.6944444444vw;
  }
}
@media (min-width: 1440px) {
  .page-quality .c-item-box__image-cap {
    right: 10px;
    bottom: 10px;
  }
}
.page-quality .c-item-box__image-cap--left {
  text-shadow: 0 1px 0 rgb(255, 255, 255), 1px 0 0 rgb(255, 255, 255), 0 -1px 0 rgb(255, 255, 255), -1px 0 0 rgb(255, 255, 255);
  right: auto;
  left: 1.3333333333vw;
}
@media (min-width: 768px) {
  .page-quality .c-item-box__image-cap--left {
    left: 0.3472222222vw;
  }
}
@media (min-width: 1440px) {
  .page-quality .c-item-box__image-cap--left {
    left: 5px;
  }
}
.page-quality .c-item-box__image-cap--white {
  color: var(--white);
}
.page-quality .c-item-box__name {
  height: 16vw;
  margin-bottom: 4vw;
  background-color: var(--gray2);
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.75rem, 0.543rem + 0.88vw, 1.25rem);
  color: var(--green2);
  line-height: cal(22/20);
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .page-quality .c-item-box__name {
    height: 4.6875vw;
    margin-bottom: 1.171875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .c-item-box__name {
    height: 60px;
    margin-bottom: 15px;
  }
}
.page-quality .c-item-box__caption {
  padding-top: 2.1333333333vw;
}
@media (min-width: 768px) {
  .page-quality .c-item-box__caption {
    padding-top: 1.25vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .c-item-box__caption {
    padding-top: 16px;
  }
}
.page-quality .c-item-box__text {
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  line-height: 1.9994444444;
  letter-spacing: 0.1em;
}
.page-quality .c-item-box__text span {
  font-size: 12px;
  line-height: 1.3;
  display: inline-block;
}
.page-quality .c-item-box__text p:last-of-type {
  margin-bottom: 0;
}
.page-quality .p-other.l-section {
  padding-top: 16.2666666667vw;
  padding-bottom: 15.2vw;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section {
    padding-top: 9.609375vw;
    padding-bottom: 8.90625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-other.l-section {
    padding-top: 123px;
    padding-bottom: 114px;
  }
}
.page-quality .p-other.l-section .c-section-title {
  margin-bottom: 6.6666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .c-section-title {
    margin-bottom: 3.90625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-other.l-section .c-section-title {
    margin-bottom: 50px;
  }
}
.page-quality .p-other.l-section .c-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 49%);
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
  row-gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .c-grid {
    grid-template-columns: repeat(4, 22.9166666667%);
    -webkit-column-gap: 2.777775%;
       -moz-column-gap: 2.777775%;
            column-gap: 2.777775%;
  }
}
.page-quality .p-other.l-section .c-item-box__name {
  height: 16vw;
  line-height: 1.1;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .c-item-box__name {
    height: 6.25vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-other.l-section .c-item-box__name {
    height: 60px;
  }
}
.page-quality .p-other.l-section .other01 {
  margin-bottom: 4vw;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .other01 {
    margin-bottom: 2.34375vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-other.l-section .other01 {
    margin-bottom: 30px;
  }
}
.page-quality .p-other.l-section .other01 .c-quality-content__title {
  height: 24.8vw;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .other01 .c-quality-content__title {
    height: 7.265625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-other.l-section .other01 .c-quality-content__title {
    height: 93px;
  }
}
.page-quality .p-other.l-section .other02,
.page-quality .p-other.l-section .other03 {
  display: grid;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .other02,
  .page-quality .p-other.l-section .other03 {
    grid-template-columns: 48.1666666667% 47.3333333333%;
    -webkit-column-gap: 4.5%;
       -moz-column-gap: 4.5%;
            column-gap: 4.5%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .other02 .c-quality-box__caption,
  .page-quality .p-other.l-section .other03 .c-quality-box__caption {
    padding-top: 0;
  }
}
.page-quality .p-other.l-section .other02 .c-quality-box__name,
.page-quality .p-other.l-section .other03 .c-quality-box__name {
  margin-bottom: 7.4666666667vw;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 0.663rem + 1.44vw, 1.813rem);
  line-height: 1.6593103448;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .other02 .c-quality-box__name,
  .page-quality .p-other.l-section .other03 .c-quality-box__name {
    margin-bottom: 2.1875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-other.l-section .other02 .c-quality-box__name,
  .page-quality .p-other.l-section .other03 .c-quality-box__name {
    margin-bottom: 28px;
  }
}
.page-quality .p-other.l-section .other02 .c-quality-box__text,
.page-quality .p-other.l-section .other03 .c-quality-box__text {
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  font-weight: 500;
  line-height: 1.9994444444;
  letter-spacing: 0.1em;
}
.page-quality .p-other.l-section .other02 {
  margin-bottom: 7.4666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .other02 {
    margin-bottom: 4.296875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-other.l-section .other02 {
    margin-bottom: 55px;
  }
}
.page-quality .p-other.l-section .other03 {
  margin-bottom: 6.1333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .other03 {
    margin-bottom: 3.59375vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-other.l-section .other03 {
    margin-bottom: 46px;
  }
}
.page-quality .p-other.l-section .other03 + h3 {
  margin-bottom: 3.7333333333vw;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 0.663rem + 1.44vw, 1.813rem);
  color: var(--green2);
  line-height: 1.6593103448;
  letter-spacing: 0.03em;
  text-align: center;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .other03 + h3 {
    margin-bottom: 2.1875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-other.l-section .other03 + h3 {
    margin-bottom: 28px;
  }
}
.page-quality .p-other.l-section .other04 {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .other04 {
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .other04 .c-grid {
    grid-template-columns: repeat(2, 47.1698113208%);
    -webkit-column-gap: 5.7175471698%;
       -moz-column-gap: 5.7175471698%;
            column-gap: 5.7175471698%;
  }
}
.page-quality .p-other.l-section .other05 {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .other05 {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
.page-quality .p-other.l-section .other06 {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .other06 {
    grid-column: 4/5;
    grid-row: 1/2;
  }
}
.page-quality .p-other.l-section .c-note {
  margin: 8vw 0 0;
  font-size: 12px;
  line-height: 1.3333333333;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .page-quality .p-other.l-section .c-note {
    margin: 4.6875vw 0 0;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-other.l-section .c-note {
    margin: 60px 0 0;
  }
}
.page-quality .p-structure {
  padding-top: 13.0666666667vw;
  padding-bottom: 6.1333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-structure {
    padding-top: 7.65625vw;
    padding-bottom: 3.59375vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-structure {
    padding-top: 98px;
    padding-bottom: 46px;
  }
}
.page-quality .p-structure .c-section-title {
  margin-bottom: 6.6666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-structure .c-section-title {
    margin-bottom: 3.90625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-structure .c-section-title {
    margin-bottom: 50px;
  }
}
.page-quality .p-structure .c-grid {
  width: 100%;
  margin-bottom: 3.4666666667vw;
  display: grid;
  grid-template-columns: 48.3333333333% 50.1666666667%;
  -webkit-column-gap: 1.5%;
     -moz-column-gap: 1.5%;
          column-gap: 1.5%;
}
@media (min-width: 768px) {
  .page-quality .p-structure .c-grid {
    margin-bottom: 2.03125vw;
    grid-template-columns: 48.3333333333% 50.1666666667%;
    -webkit-column-gap: 1.5%;
       -moz-column-gap: 1.5%;
            column-gap: 1.5%;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-structure .c-grid {
    margin-bottom: 26px;
  }
}
.page-quality .p-structure .c-grid + h3 {
  margin-bottom: 3.7333333333vw;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 0.663rem + 1.44vw, 1.813rem);
  color: var(--green2);
  line-height: 1.6593103448;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .page-quality .p-structure .c-grid + h3 {
    margin-bottom: 2.1875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-structure .c-grid + h3 {
    margin-bottom: 28px;
  }
}
.page-quality .p-structure .c-grid + h3 + .c-text {
  margin-bottom: 0;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  font-weight: 500;
  line-height: 1.9994444444;
  letter-spacing: 0.1em;
}
.page-quality .p-structure .structure01 .c-quality-content__title {
  height: 24.8vw;
  margin-bottom: 5.3333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-structure .structure01 .c-quality-content__title {
    height: 7.265625vw;
    margin-bottom: 3.125vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-structure .structure01 .c-quality-content__title {
    height: 93px;
    margin-bottom: 40px;
  }
}
.page-quality .p-structure .structure02 {
  margin-bottom: 4vw;
}
@media (min-width: 768px) {
  .page-quality .p-structure .structure02 {
    margin-bottom: 1.171875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-structure .structure02 {
    margin-bottom: 15px;
  }
}
.page-quality .p-structure .structure02 .c-quality-box__caption {
  padding-top: 0;
  padding-left: 4.5333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-structure .structure02 .c-quality-box__caption {
    padding-left: 2.890625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-structure .structure02 .c-quality-box__caption {
    padding-left: 37px;
  }
}
.page-quality .p-structure .structure02 .c-quality-box__name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 0.663rem + 1.44vw, 1.813rem);
  line-height: 1.6593103448;
}
.page-quality .p-structure .structure02 .c-quality-box__text {
  margin-bottom: 11.2vw;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(0.875rem, 0.771rem + 0.44vw, 1.125rem);
  font-weight: 500;
  line-height: 1.9994444444;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .page-quality .p-structure .structure02 .c-quality-box__text {
    margin-bottom: 3.28125vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-structure .structure02 .c-quality-box__text {
    margin-bottom: 42px;
  }
}
.page-quality .p-durability.l-section {
  padding-top: 2.9333333333vw;
  padding-bottom: 4vw;
}
@media (min-width: 768px) {
  .page-quality .p-durability.l-section {
    padding-top: 3.359375vw;
    padding-bottom: 4.609375vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-durability.l-section {
    padding-top: 43px;
    padding-bottom: 59px;
  }
}
.page-quality .p-durability.l-section .c-section-title {
  margin-bottom: 6.6666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-durability.l-section .c-section-title {
    margin-bottom: 3.90625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-durability.l-section .c-section-title {
    margin-bottom: 50px;
  }
}
.page-quality .p-durability.l-section .c-quality-content {
  margin-bottom: 5.3333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-durability.l-section .c-quality-content {
    margin-bottom: 1.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-durability.l-section .c-quality-content {
    margin-bottom: 20px;
  }
}
.page-quality .p-durability.l-section .c-quality-content__title {
  height: 52vw;
}
@media (min-width: 768px) {
  .page-quality .p-durability.l-section .c-quality-content__title {
    height: 17.96875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-durability.l-section .c-quality-content__title {
    height: 150px;
  }
}
@media not all and (min-width: 768px) {
  .page-quality .p-durability.l-section .c-quality-content__text {
    margin-bottom: 8vw;
  }
}
.page-quality .p-termite-protection.l-section {
  padding-top: 2.9333333333vw;
  padding-bottom: 5.3333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-termite-protection.l-section {
    padding-top: 3.359375vw;
    padding-bottom: 6.171875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-termite-protection.l-section {
    padding-top: 43px;
    padding-bottom: 79px;
  }
}
.page-quality .p-termite-protection.l-section .c-section-title {
  margin-bottom: 6.6666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-termite-protection.l-section .c-section-title {
    margin-bottom: 3.90625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-termite-protection.l-section .c-section-title {
    margin-bottom: 50px;
  }
}
.page-quality .p-termite-protection.l-section .c-quality-content {
  margin-bottom: 5.3333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-termite-protection.l-section .c-quality-content {
    margin-bottom: 2.96875vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-termite-protection.l-section .c-quality-content {
    margin-bottom: 38px;
  }
}
.page-quality .p-termite-protection.l-section .c-quality-content__title {
  height: 29.3333333333vw;
  margin-bottom: 5.3333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-termite-protection.l-section .c-quality-content__title {
    height: 8.59375vw;
    margin-bottom: 1.5625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-termite-protection.l-section .c-quality-content__title {
    height: 110px;
    margin-bottom: 20px;
  }
}
.page-quality .p-fire-resistance.l-section {
  padding-top: 4.2666666667vw;
  padding-bottom: 4.5333333333vw;
}
@media (min-width: 768px) {
  .page-quality .p-fire-resistance.l-section {
    padding-top: 5.15625vw;
    padding-bottom: 5.3125vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-fire-resistance.l-section {
    padding-top: 66px;
    padding-bottom: 68px;
  }
}
.page-quality .p-fire-resistance.l-section .c-section-title {
  margin-bottom: 6.6666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-fire-resistance.l-section .c-section-title {
    margin-bottom: 3.90625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-fire-resistance.l-section .c-section-title {
    margin-bottom: 50px;
  }
}
.page-quality .p-fire-resistance.l-section .c-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
}
@media (min-width: 768px) {
  .page-quality .p-fire-resistance.l-section .c-grid {
    grid-template-columns: 48.1666666667% 48%;
    -webkit-column-gap: 3.8333333333%;
       -moz-column-gap: 3.8333333333%;
            column-gap: 3.8333333333%;
  }
}
.page-quality .p-fire-resistance.l-section .fire-resistance01 .c-quality-content__title {
  height: 24.8vw;
}
@media (min-width: 768px) {
  .page-quality .p-fire-resistance.l-section .fire-resistance01 .c-quality-content__title {
    height: 7.265625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-fire-resistance.l-section .fire-resistance01 .c-quality-content__title {
    height: 93px;
  }
}
@media not all and (min-width: 768px) {
  .page-quality .p-fire-resistance.l-section .fire-resistance01 .c-quality-content__text {
    margin-bottom: 8vw;
  }
}
.page-quality .p-fire-resistance.l-section .fire-resistance01 .c-quality-content__text em {
  font-size: clamp(1.125rem, 0.97rem + 0.66vw, 1.5rem);
  color: var(--red2);
  font-weight: 700;
}
.page-quality .p-thermal-insulation.l-section {
  padding-top: 3.4666666667vw;
  padding-bottom: 13.0666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-thermal-insulation.l-section {
    padding-top: 4.21875vw;
    padding-bottom: 7.65625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-thermal-insulation.l-section {
    padding-top: 54px;
    padding-bottom: 98px;
  }
}
.page-quality .p-thermal-insulation.l-section .c-section-title {
  margin-bottom: 6.6666666667vw;
}
@media (min-width: 768px) {
  .page-quality .p-thermal-insulation.l-section .c-section-title {
    margin-bottom: 3.90625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-thermal-insulation.l-section .c-section-title {
    margin-bottom: 50px;
  }
}
.page-quality .p-thermal-insulation.l-section .c-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
}
@media (min-width: 768px) {
  .page-quality .p-thermal-insulation.l-section .c-grid {
    grid-template-columns: 48.1666666667% 48%;
    -webkit-column-gap: 3.8333333333%;
       -moz-column-gap: 3.8333333333%;
            column-gap: 3.8333333333%;
  }
}
.page-quality .p-thermal-insulation.l-section .thermal-insulation01 .c-quality-content__title {
  height: 24.8vw;
}
@media (min-width: 768px) {
  .page-quality .p-thermal-insulation.l-section .thermal-insulation01 .c-quality-content__title {
    height: 7.265625vw;
  }
}
@media (min-width: 1280px) {
  .page-quality .p-thermal-insulation.l-section .thermal-insulation01 .c-quality-content__title {
    height: 93px;
  }
}
@media not all and (min-width: 768px) {
  .page-quality .p-thermal-insulation.l-section .thermal-insulation01 .c-quality-content__text {
    margin-bottom: 8vw;
  }
}

/* ========================================================================================= ^^
  Outline
============================================================================================ ^^ */
.page-outline .l-page-contents {
  padding-top: 6.4vw;
  padding-bottom: 16vw;
  background: url(../img/common/bg.jpg) repeat-y 50% 0/100% auto;
}

@media (min-width: 768px) {
  .page-outline .l-page-contents {
    padding-top: 5.46875vw;
    padding-bottom: 8.59375vw;
  }
}
@media (min-width: 1280px) {
  .page-outline .l-page-contents {
    padding-top: 70px;
    padding-bottom: 110px;
  }
}
.page-outline .p-outline {
  padding: 0;
}

.page-outline .p-outline .l-section__inner {
  max-width: 1000px;
  padding: 6.4vw 5.3333333333vw 8vw;
  border: 1px solid #ddd8cb;
  background: rgba(255, 255, 255, 0.94);
}

@media (min-width: 768px) {
  .page-outline .p-outline .l-section__inner {
    padding: 4.6875vw 4.296875vw 5.46875vw;
  }
}
@media (min-width: 1280px) {
  .page-outline .p-outline .l-section__inner {
    padding: 60px 55px 70px;
  }
}
.p-outline__title {
  margin-bottom: 5.3333333333vw;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(0.875rem, 0.772rem + 0.44vw, 1.125rem);
  color: #6e6a5f;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-align: center;
}

@media (min-width: 768px) {
  .p-outline__title {
    margin-bottom: 2.34375vw;
  }
}
@media (min-width: 1280px) {
  .p-outline__title {
    margin-bottom: 30px;
  }
}
.p-outline__notice-box {
  padding: 0;
  margin-bottom: 6.6666666667vw;
  border: 0;
  background: none;
}

@media (min-width: 768px) {
  .p-outline__notice-box {
    margin-bottom: 3.125vw;
  }
}
@media (min-width: 1280px) {
  .p-outline__notice-box {
    margin-bottom: 40px;
  }
}
.p-outline__notice-title {
  margin-bottom: 1.6vw;
  font-family: var(--font-shuei-kaku-gothic-b);
  font-size: clamp(0.813rem, 0.787rem + 0.11vw, 0.875rem);
  color: #4e4b45;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .p-outline__notice-title {
    margin-bottom: 0.625vw;
  }
}
@media (min-width: 1280px) {
  .p-outline__notice-title {
    margin-bottom: 8px;
  }
}
.p-outline__notice-text {
  font-size: clamp(0.688rem, 0.662rem + 0.11vw, 0.75rem);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.p-outline__block + .p-outline__block {
  margin-top: 8vw;
}

@media (min-width: 768px) {
  .p-outline__block + .p-outline__block {
    margin-top: 4.6875vw;
  }
}
@media (min-width: 1280px) {
  .p-outline__block + .p-outline__block {
    margin-top: 60px;
  }
}
.p-outline__block-title {
  padding-bottom: 1.8666666667vw;
  margin-bottom: 2.6666666667vw;
  border-bottom: 1px solid #cbc7bb;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(0.75rem, 0.724rem + 0.11vw, 0.813rem);
  color: #6e6a5f;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}

@media (min-width: 768px) {
  .p-outline__block-title {
    padding-bottom: 0.625vw;
    margin-bottom: 1.40625vw;
  }
}
@media (min-width: 1280px) {
  .p-outline__block-title {
    padding-bottom: 8px;
    margin-bottom: 18px;
  }
}
.p-outline__table {
  border-top: 1px solid #c8c3b6;
  border-left: 1px solid #c8c3b6;
  border-right: 1px solid #c8c3b6;
  background-color: #fff;
}

.p-outline__row {
  border-bottom: 1px solid #c8c3b6;
}

@media (min-width: 768px) {
  .p-outline__row {
    display: grid;
    grid-template-columns: minmax(145px, 22.5%) 1fr;
  }
}
.p-outline__row dt,
.p-outline__row dd {
  margin: 0;
  padding: 2.6666666667vw 2.9333333333vw;
  font-size: clamp(0.625rem, 0.599rem + 0.11vw, 0.688rem);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .p-outline__row dt,
  .p-outline__row dd {
    padding: 0.703125vw 0.9375vw;
  }
}
@media (min-width: 1280px) {
  .p-outline__row dt,
  .p-outline__row dd {
    padding: 9px 12px;
  }
}
.p-outline__row dt {
  border-bottom: 1px solid #d9d5ca;
  background: #ece9e1;
  font-family: var(--font-shuei-kaku-gothic-m);
  color: #4f4b44;
}

@media (min-width: 768px) {
  .p-outline__row dt {
    border-right: 1px solid #d9d5ca;
    border-bottom: none;
  }
}
/* ========================================================================================= ^^
  Important
============================================================================================ ^^ */
.page-important .l-page-section {
  background-color: var(--white);
  padding: 0 5.3333333333vw 8vw;
}
@media (min-width: 768px) {
  .page-important .l-page-section {
    padding: 0 1.5625vw 4.6875vw;
  }
}
@media (min-width: 1280px) {
  .page-important .l-page-section {
    padding: 0 0 60px;
  }
}
.page-important .p-important {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto 10.6666666667vw;
}
@media (min-width: 768px) {
  .page-important .p-important {
    margin-bottom: 6.25vw;
  }
}
@media (min-width: 1280px) {
  .page-important .p-important {
    margin-bottom: 80px;
  }
}
.page-important .c-important-close {
  width: 53.3333333333vw;
  height: 10.6666666667vw;
  margin: 0 auto;
  border: 1px solid var(--green);
  font-size: clamp(0.875rem, 0.823rem + 0.22vw, 1rem);
  color: var(--green);
  display: block;
}
@media (min-width: 768px) {
  .page-important .c-important-close {
    width: 15.625vw;
    height: 3.125vw;
  }
}
@media (min-width: 1280px) {
  .page-important .c-important-close {
    width: 200px;
    height: 40px;
  }
}

/* ========================================================================================= ^^
  Map
============================================================================================ ^^ */
.page-map .l-page-contents {
  padding-top: 6.4vw;
  padding-bottom: 16vw;
  background: url(../img/common/bg.jpg) repeat-y 50% 0/100% auto;
}

@media (min-width: 768px) {
  .page-map .l-page-contents {
    padding-top: 5.46875vw;
    padding-bottom: 8.59375vw;
  }
}
@media (min-width: 1280px) {
  .page-map .l-page-contents {
    padding-top: 70px;
    padding-bottom: 110px;
  }
}
.page-map .p-map {
  padding: 0;
}

.page-map .p-map .l-section__inner {
  max-width: 1000px;
}

.p-map__title {
  width: 100%;
  height: 16vw;
  margin-bottom: 0;
  border: 1px solid rgba(230, 231, 223, 0.35);
  background: #89a8a1;
  color: #f4f3eb;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 1.234rem + 2.2vw, 3rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .p-map__title {
    height: 6.71875vw;
  }
}
@media (min-width: 1280px) {
  .p-map__title {
    height: 86px;
  }
}
.p-map__wide-map,
.p-map__local-map {
  border: 1px solid #cfcaba;
  background: #fff;
}

.p-map__wide-map img,
.p-map__local-map img {
  width: 100%;
  display: block;
}

.p-map__sub-title {
  margin: 7.2vw 0 2.6666666667vw;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(0.688rem, 0.636rem + 0.22vw, 0.813rem);
  color: #e6e4db;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .p-map__sub-title {
    margin: 3.125vw 0 1.25vw;
  }
}
@media (min-width: 1280px) {
  .p-map__sub-title {
    margin: 40px 0 16px;
  }
}
.p-map__google {
  max-width: 100%;
  width: 100%;
  margin: 0;
  border: 1px solid #131313;
  background: #e6e6e6;
}

@media (min-width: 768px) {
  .p-map__google {
    margin-top: 0;
  }
}
.p-map__drive-notice {
  min-height: 17.3333333333vw;
  margin: 0;
  padding: 2.6666666667vw 3.2vw;
  background: #000;
  color: #fff;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(0.875rem, 0.72rem + 0.66vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.1333333333vw;
     -moz-column-gap: 2.1333333333vw;
          column-gap: 2.1333333333vw;
}

@media (min-width: 768px) {
  .p-map__drive-notice {
    min-height: 5.390625vw;
    padding: 0.9375vw 1.5625vw;
    -webkit-column-gap: 1.09375vw;
       -moz-column-gap: 1.09375vw;
            column-gap: 1.09375vw;
  }
}
@media (min-width: 1280px) {
  .p-map__drive-notice {
    min-height: 69px;
    padding: 12px 20px;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
  }
}
.p-map__drive-notice i {
  font-size: 2em;
  line-height: 1;
}

.p-map__address {
  padding: 5.3333333333vw 5.3333333333vw 0;
  margin: 0;
  border: none;
  background: transparent;
  color: #111;
  font-family: var(--font-shuei-kaku-gothic-m);
  font-size: clamp(1.25rem, 1.043rem + 0.88vw, 1.75rem);
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-align: center;
}

@media (min-width: 768px) {
  .p-map__address {
    padding: 2.8125vw 2.34375vw 0;
  }
}
@media (min-width: 1280px) {
  .p-map__address {
    padding: 36px 30px 0;
  }
}
.p-map__button {
  margin: 0;
  padding: 4.2666666667vw 5.3333333333vw 6.4vw;
}

@media (min-width: 768px) {
  .p-map__button {
    padding: 2.109375vw 2.34375vw 3.125vw;
  }
}
@media (min-width: 1280px) {
  .p-map__button {
    padding: 27px 30px 40px;
  }
}
.p-map__button-link {
  max-width: 620px;
  width: 100%;
  height: 14.9333333333vw;
  margin: 0 auto;
  border: none;
  background: #00664c;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 0.892rem + 0.99vw, 1.688rem);
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5.3333333333vw;
     -moz-column-gap: 5.3333333333vw;
          column-gap: 5.3333333333vw;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.p-map__button-link:link,
.p-map__button-link:visited,
.p-map__button-link:hover,
.p-map__button-link:active {
  color: #fff;
}

@media (min-width: 768px) {
  .p-map__button-link {
    height: 7.1875vw;
    -webkit-column-gap: 2.34375vw;
       -moz-column-gap: 2.34375vw;
            column-gap: 2.34375vw;
  }
}
@media (min-width: 1280px) {
  .p-map__button-link {
    height: 92px;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.p-map__button-link:hover {
  background: #01553f;
}

.p-map__button-link .arrow {
  font-family: var(--font-shuei-kaku-gothic-l);
  font-size: 1.2em;
  line-height: 1;
}/*# sourceMappingURL=style.css.map */