@charset "UTF-8";
.is-thin {
  font-weight: 100;
}

.is-light {
  font-weight: 300;
}

.is-regular {
  font-weight: 400;
}

.is-medium {
  font-weight: 500;
}

.is-bold {
  font-weight: 700;
}

.is-black {
  font-weight: 900;
}

.text-color-primary {
  color: #b8272d;
}

.text-color-info {
  color: #000000;
}

.text-color-success {
  color: #c19f46;
}

.text-color-warning {
  color: #e85a24;
}

.text-color-danger {
  color: #662d88;
}

.is-center {
  text-align: center;
}

.is-right {
  text-align: right;
}

.is-left {
  text-align: left;
}

*,
::before,
::after {
  margin: 0;
  background-repeat: no-repeat;
  box-sizing: border-box;
  font-size: 1em;
  font-family: inherit;
  font-weight: inherit;
}

::before,
::after {
  vertical-align: inherit;
  text-decoration: inherit;
}

html {
  font-family: sans-serif;
  word-break: break-word;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header,
footer,
main,
section,
article,
aside,
nav,
details,
menu,
figure,
figcaption {
  display: block;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

canvas,
audio,
video {
  display: inline-block;
}

img,
svg,
iframe,
canvas,
audio,
video {
  vertical-align: middle;
}

img {
  border-style: none;
}

svg:not([fill]) {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

input {
  border-radius: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

address {
  font-style: normal;
}

textarea {
  overflow: auto;
  resize: vertical;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

summary {
  display: list-item;
}

table {
  border-collapse: collapse;
}

hr {
  height: 0;
  overflow: visible;
}

template {
  display: none;
}

a,
area,
button,
input,
label,
select,
textarea,
[tabindex] {
  touch-action: manipulation;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

[hidden] {
  display: none;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

img {
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

iframe {
  max-width: 100%;
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  font-size: 16px;
}

html.hidden {
  overflow: hidden;
}

#wrapper {
  position: relative;
  width: 100%;
}

.section > .inner {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .section > .inner {
    width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .section > .inner {
    width: 720px;
  }
}
@media screen and (min-width: 1080px) {
  .section > .inner {
    width: 960px;
  }
}
@media screen and (min-width: 1280px) {
  .section > .inner {
    width: 1080px;
  }
}

.grid {
  display: flex;
  flex-wrap: wrap;
}
.grid.is-baseline {
  align-items: baseline;
}
.grid.is-middle {
  align-items: center;
}
.grid.is-bottom {
  align-items: flex-end;
}
.grid.is-center {
  justify-content: center;
}
.grid.is-right {
  justify-content: flex-end;
}
.grid.is-between {
  justify-content: space-between;
}
.grid.is-around {
  justify-content: space-around;
}
.grid.is-reverse {
  flex-direction: row-reverse;
}
.grid.is-stretch > .column {
  display: flex;
}

.grid.is-gap-xxl {
  margin-left: -60px;
  margin-bottom: -60px;
}
.grid.is-gap-xxl > .column {
  padding-left: 60px;
  padding-bottom: 60px;
}
.grid.is-gap-xl {
  margin-left: -24px;
  margin-bottom: -24px;
}
.grid.is-gap-xl > .column {
  padding-left: 24px;
  padding-bottom: 24px;
}
.grid.is-gap-lg {
  margin-left: -20px;
  margin-bottom: -20px;
}
.grid.is-gap-lg > .column {
  padding-left: 20px;
  padding-bottom: 20px;
}
.grid.is-gap, .grid.is-gap-md {
  margin-left: -16px;
  margin-bottom: -16px;
}
.grid.is-gap > .column, .grid.is-gap-md > .column {
  padding-left: 16px;
  padding-bottom: 16px;
}
.grid.is-gap-sm {
  margin-left: -12px;
  margin-bottom: -12px;
}
.grid.is-gap-sm > .column {
  padding-left: 12px;
  padding-bottom: 12px;
}
.grid.is-gap-xs {
  margin-left: -8px;
  margin-bottom: -8px;
}
.grid.is-gap-xs > .column {
  padding-left: 8px;
  padding-bottom: 8px;
}
.grid.is-gap-xxs {
  margin-left: -4px;
  margin-bottom: -4px;
}
.grid.is-gap-xxs > .column {
  padding-left: 4px;
  padding-bottom: 4px;
}

.grid.is-gap-vertical-xxl {
  margin-bottom: -60px;
}
.grid.is-gap-vertical-xxl > .column {
  padding-bottom: 60px;
}
.grid.is-gap-vertical-xl {
  margin-bottom: -24px;
}
.grid.is-gap-vertical-xl > .column {
  padding-bottom: 24px;
}
.grid.is-gap-vertical-lg {
  margin-bottom: -20px;
}
.grid.is-gap-vertical-lg > .column {
  padding-bottom: 20px;
}
.grid.is-gap-vertical, .grid.is-gap-vertical-md {
  margin-bottom: -16px;
}
.grid.is-gap-vertical > .column, .grid.is-gap-vertical-md > .column {
  padding-bottom: 16px;
}
.grid.is-gap-vertical-sm {
  margin-bottom: -12px;
}
.grid.is-gap-vertical-sm > .column {
  padding-bottom: 12px;
}
.grid.is-gap-vertical-xs {
  margin-bottom: -8px;
}
.grid.is-gap-vertical-xs > .column {
  padding-bottom: 8px;
}
.grid.is-gap-vertical-xxs {
  margin-bottom: -4px;
}
.grid.is-gap-vertical-xxs > .column {
  padding-bottom: 4px;
}

.grid.is-gap-horizontal-xxl {
  margin-left: -60px;
}
.grid.is-gap-horizontal-xxl > .column {
  padding-left: 60px;
}
.grid.is-gap-horizontal-xl {
  margin-left: -24px;
}
.grid.is-gap-horizontal-xl > .column {
  padding-left: 24px;
}
.grid.is-gap-horizontal-lg {
  margin-left: -20px;
}
.grid.is-gap-horizontal-lg > .column {
  padding-left: 20px;
}
.grid.is-gap-horizontal, .grid.is-gap-horizontal-md {
  margin-left: -16px;
}
.grid.is-gap-horizontal > .column, .grid.is-gap-horizontal-md > .column {
  padding-left: 16px;
}
.grid.is-gap-horizontal-sm {
  margin-left: -12px;
}
.grid.is-gap-horizontal-sm > .column {
  padding-left: 12px;
}
.grid.is-gap-horizontal-xs {
  margin-left: -8px;
}
.grid.is-gap-horizontal-xs > .column {
  padding-left: 8px;
}
.grid.is-gap-horizontal-xxs {
  margin-left: -4px;
}
.grid.is-gap-horizontal-xxs > .column {
  padding-left: 4px;
}

.box {
  position: relative;
  display: block;
}
.box.is-bg, .box.is-bg-light {
  background-color: #fff;
}
.box.is-disabled, .box[disabled] {
  cursor: not-allowed;
  pointer-events: none;
}

.box.is-flex {
  display: flex;
}
.box.is-inline-flex {
  display: inline-flex;
}
.box.is-flex:not(.is-nowrap), .box.is-inline-flex:not(.is-nowrap) {
  flex-wrap: wrap;
}
.box.is-flex.is-baseline, .box.is-inline-flex.is-baseline {
  align-items: baseline;
}
.box.is-flex.is-middle, .box.is-inline-flex.is-middle {
  align-items: center;
}
.box.is-flex.is-bottom, .box.is-inline-flex.is-bottom {
  align-items: flex-end;
}
.box.is-flex.is-center, .box.is-inline-flex.is-center {
  justify-content: center;
}
.box.is-flex.is-right, .box.is-inline-flex.is-right {
  justify-content: flex-end;
}
.box.is-flex.is-between, .box.is-inline-flex.is-between {
  justify-content: space-between;
}
.box.is-flex.is-around, .box.is-inline-flex.is-around {
  justify-content: space-around;
}
.box.is-flex.is-reverse, .box.is-inline-flex.is-reverse {
  flex-direction: row-reverse;
}

.box.is-outline {
  border: 1px solid #000;
}
.box.is-outline-top {
  border-top: 1px solid #000;
}
.box.is-outline-right {
  border-right: 1px solid #000;
}
.box.is-outline-bottom {
  border-bottom: 1px solid #000;
}
.box.is-outline-left {
  border-left: 1px solid #000;
}

.box.is-separate > *:not(:last-child) {
  border-bottom: 1px solid #000;
}
.box.is-separate-parent > *:not(:last-child) .is-separate-child {
  border-bottom: 1px solid #000;
}

.box.is-link {
  cursor: pointer;
  transition: ease-out 0.12s;
}
.box.is-link:not(.is-disabled):not([disabled]):hover {
  background-color: #000;
}

.box.is-angle-right:after, .box.is-angle-left:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  z-index: 2;
}
.box.is-angle-right:after {
  right: 0.75em;
  transform: translateY(-50%) rotate(45deg);
}
.box.is-angle-left:after {
  left: 0.75em;
  transform: translateY(-50%) rotate(-135deg);
}
.box.is-angle-right.is-angle-up:after, .box.is-angle-left.is-angle-up:after {
  transform: translateY(-30%) rotate(-45deg);
}
.box.is-angle-right.is-angle-down:after, .box.is-angle-left.is-angle-down:after {
  transform: translateY(-70%) rotate(135deg);
}

.button {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  padding: 0.5em 1em;
  border-radius: 3px;
  line-height: 1.5;
  text-align: center;
}

.button.is-plain {
  color: #fff;
}
.button.is-plain.is-primary {
  background-color: #b8272d;
}
.button.is-plain.is-info {
  background-color: #000000;
}
.button.is-plain.is-success {
  background-color: #c19f46;
}
.button.is-plain.is-warning {
  background-color: #e85a24;
}
.button.is-plain.is-danger {
  background-color: #662d88;
}
.button.is-plain:hover {
  opacity: 0.7;
}

.button.is-outline.is-primary {
  color: #b8272d;
  border: #b8272d solid 1px;
}
.button.is-outline.is-info {
  color: #000000;
  border: #000000 solid 1px;
}
.button.is-outline.is-success {
  color: #c19f46;
  border: #c19f46 solid 1px;
}
.button.is-outline.is-warning {
  color: #e85a24;
  border: #e85a24 solid 1px;
}
.button.is-outline.is-danger {
  color: #662d88;
  border: #662d88 solid 1px;
}
.button.is-outline:hover {
  opacity: 0.7;
}

.list.is-disc, .list.is-circle, .list.is-square, .list.is-kome, .list.is-decimal {
  margin-left: 1.5em;
}
.list.is-disc > .item:not(:first-child), .list.is-circle > .item:not(:first-child), .list.is-square > .item:not(:first-child), .list.is-kome > .item:not(:first-child), .list.is-decimal > .item:not(:first-child) {
  margin-top: 0.25em;
}
.list.is-disc > .item > .list, .list.is-circle > .item > .list, .list.is-square > .item > .list, .list.is-kome > .item > .list, .list.is-decimal > .item > .list {
  margin-top: 0.5em;
}
.list.is-disc > .item {
  display: list-item;
  list-style: disc outside;
}
.list.is-circle > .item {
  display: list-item;
  list-style: circle outside;
}
.list.is-square > .item {
  display: list-item;
  list-style: square outside;
}
.list.is-kome > .item {
  position: relative;
  display: block;
}
.list.is-kome > .item:before {
  content: "\203B";
  position: absolute;
  top: 0;
  left: -1em;
}
.list.is-decimal > .item {
  display: list-item;
  list-style: decimal outside;
}

.list.is-note > .item {
  display: flex;
}
.list.is-note > .item > *:not(:first-child) {
  margin-left: 0.25em;
}

.is-block,
.is-mobile-block {
  display: block;
}

.is-inline,
.is-mobile-inline {
  display: inline;
}

.is-inline-block,
.is-mobile-inline-block {
  display: inline-block;
}

.is-none,
.is-mobile-none {
  display: none;
}

@media screen and (min-width: 576px) {
  .is-fablet-block {
    display: block;
  }
  .is-fablet-inline {
    display: inline;
  }
  .is-fablet-inline-block {
    display: inline-block;
  }
  .is-fablet-none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-tablet-block {
    display: block;
  }
  .is-tablet-inline {
    display: inline;
  }
  .is-tablet-inline-block {
    display: inline-block;
  }
  .is-tablet-none {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  .is-desktop-block {
    display: block;
  }
  .is-desktop-inline {
    display: inline;
  }
  .is-desktop-inline-block {
    display: inline-block;
  }
  .is-desktop-none {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .is-wide-block {
    display: block;
  }
  .is-wide-inline {
    display: inline;
  }
  .is-wide-inline-block {
    display: inline-block;
  }
  .is-wide-none {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  .is-iphone5-only-block {
    display: block;
  }
  .is-iphone5-only-inline {
    display: inline;
  }
  .is-iphone5-only-inline-block {
    display: inline-block;
  }
  .is-iphone5-only-none {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .is-mobile-only-block {
    display: block;
  }
  .is-mobile-only-inline {
    display: inline;
  }
  .is-mobile-only-inline-block {
    display: inline-block;
  }
  .is-mobile-only-none {
    display: none;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .is-fablet-only-block {
    display: block;
  }
  .is-fablet-only-inline {
    display: inline;
  }
  .is-fablet-only-inline-block {
    display: inline-block;
  }
  .is-fablet-only-none {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .is-tablet-only-block {
    display: block;
  }
  .is-tablet-only-inline {
    display: inline;
  }
  .is-tablet-only-inline-block {
    display: inline-block;
  }
  .is-tablet-only-none {
    display: none;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1279px) {
  .is-desktop-only-block {
    display: block;
  }
  .is-desktop-only-inline {
    display: inline;
  }
  .is-desktop-only-inline-block {
    display: inline-block;
  }
  .is-desktop-only-none {
    display: none;
  }
}
.is-0,
.is-mobile-0 {
  flex: 1 0 0%;
}

.is-1,
.is-mobile-1 {
  flex: 0 0 8.3333333333%;
  width: 8.3333333333%;
  max-width: 8.3333333333%;
}

.is-2,
.is-mobile-2 {
  flex: 0 0 16.6666666667%;
  width: 16.6666666667%;
  max-width: 16.6666666667%;
}

.is-3,
.is-mobile-3 {
  flex: 0 0 25%;
  width: 25%;
  max-width: 25%;
}

.is-4,
.is-mobile-4 {
  flex: 0 0 33.3333333333%;
  width: 33.3333333333%;
  max-width: 33.3333333333%;
}

.is-5,
.is-mobile-5 {
  flex: 0 0 41.6666666667%;
  width: 41.6666666667%;
  max-width: 41.6666666667%;
}

.is-6,
.is-mobile-6 {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}

.is-7,
.is-mobile-7 {
  flex: 0 0 58.3333333333%;
  width: 58.3333333333%;
  max-width: 58.3333333333%;
}

.is-8,
.is-mobile-8 {
  flex: 0 0 66.6666666667%;
  width: 66.6666666667%;
  max-width: 66.6666666667%;
}

.is-9,
.is-mobile-9 {
  flex: 0 0 75%;
  width: 75%;
  max-width: 75%;
}

.is-10,
.is-mobile-10 {
  flex: 0 0 83.3333333333%;
  width: 83.3333333333%;
  max-width: 83.3333333333%;
}

.is-11,
.is-mobile-11 {
  flex: 0 0 91.6666666667%;
  width: 91.6666666667%;
  max-width: 91.6666666667%;
}

.is-12,
.is-mobile-12 {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.is-full,
.is-mobile-full {
  flex: 0 1 100%;
  width: 100%;
}

.is-auto,
.is-mobile-auto {
  flex: 0 1 auto;
  width: auto;
}

@media screen and (min-width: 576px) {
  .is-fablet-0 {
    flex: 1 0 0%;
  }
  .is-fablet-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .is-fablet-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .is-fablet-3 {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  .is-fablet-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .is-fablet-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .is-fablet-6 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .is-fablet-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .is-fablet-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .is-fablet-9 {
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  .is-fablet-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .is-fablet-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .is-fablet-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .is-fablet-full {
    flex: 0 1 100%;
    width: 100%;
  }
  .is-fablet-auto {
    flex: 0 1 auto;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .is-tablet-0 {
    flex: 1 0 0%;
  }
  .is-tablet-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .is-tablet-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .is-tablet-3 {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  .is-tablet-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .is-tablet-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .is-tablet-6 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .is-tablet-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .is-tablet-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .is-tablet-9 {
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  .is-tablet-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .is-tablet-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .is-tablet-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .is-tablet-full {
    flex: 0 1 100%;
    width: 100%;
  }
  .is-tablet-auto {
    flex: 0 1 auto;
    width: auto;
  }
}
@media screen and (min-width: 1080px) {
  .is-desktop-0 {
    flex: 1 0 0%;
  }
  .is-desktop-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .is-desktop-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .is-desktop-3 {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  .is-desktop-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .is-desktop-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .is-desktop-6 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .is-desktop-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .is-desktop-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .is-desktop-9 {
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  .is-desktop-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .is-desktop-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .is-desktop-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .is-desktop-full {
    flex: 0 1 100%;
    width: 100%;
  }
  .is-desktop-auto {
    flex: 0 1 auto;
    width: auto;
  }
}
@media screen and (min-width: 1280px) {
  .is-wide-0 {
    flex: 1 0 0%;
  }
  .is-wide-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .is-wide-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .is-wide-3 {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  .is-wide-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .is-wide-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .is-wide-6 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .is-wide-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .is-wide-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .is-wide-9 {
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  .is-wide-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .is-wide-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .is-wide-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .is-wide-full {
    flex: 0 1 100%;
    width: 100%;
  }
  .is-wide-auto {
    flex: 0 1 auto;
    width: auto;
  }
}
.is-margin-xxl {
  margin: 60px;
}

.is-margin-xl {
  margin: 24px;
}

.is-margin-lg {
  margin: 20px;
}

.is-margin,
.is-margin-md {
  margin: 16px;
}

.is-margin-sm {
  margin: 12px;
}

.is-margin-xs {
  margin: 8px;
}

.is-margin-xxs {
  margin: 4px;
}

.is-margin-top-xxl {
  margin-top: 60px;
}

.is-margin-top-xl {
  margin-top: 24px;
}

.is-margin-top-lg {
  margin-top: 20px;
}

.is-margin-top,
.is-margin-top-md {
  margin-top: 16px;
}

.is-margin-top-sm {
  margin-top: 12px;
}

.is-margin-top-xs {
  margin-top: 8px;
}

.is-margin-top-xxs {
  margin-top: 4px;
}

.is-margin-right-xxl {
  margin-right: 60px;
}

.is-margin-right-xl {
  margin-right: 24px;
}

.is-margin-right-lg {
  margin-right: 20px;
}

.is-margin-right,
.is-margin-right-md {
  margin-right: 16px;
}

.is-margin-right-sm {
  margin-right: 12px;
}

.is-margin-right-xs {
  margin-right: 8px;
}

.is-margin-right-xxs {
  margin-right: 4px;
}

.is-margin-bottom-xxl {
  margin-bottom: 60px;
}

.is-margin-bottom-xl {
  margin-bottom: 24px;
}

.is-margin-bottom-lg {
  margin-bottom: 20px;
}

.is-margin-bottom,
.is-margin-bottom-md {
  margin-bottom: 16px;
}

.is-margin-bottom-sm {
  margin-bottom: 12px;
}

.is-margin-bottom-xs {
  margin-bottom: 8px;
}

.is-margin-bottom-xxs {
  margin-bottom: 4px;
}

.is-margin-left-xxl {
  margin-left: 60px;
}

.is-margin-left-xl {
  margin-left: 24px;
}

.is-margin-left-lg {
  margin-left: 20px;
}

.is-margin-left,
.is-margin-left-md {
  margin-left: 16px;
}

.is-margin-left-sm {
  margin-left: 12px;
}

.is-margin-left-xs {
  margin-left: 8px;
}

.is-margin-left-xxs {
  margin-left: 4px;
}

.is-margin-vertical-xxl {
  margin-top: 60px;
  margin-bottom: 60px;
}

.is-margin-vertical-xl {
  margin-top: 24px;
  margin-bottom: 24px;
}

.is-margin-vertical-lg {
  margin-top: 20px;
  margin-bottom: 20px;
}

.is-margin-vertical,
.is-margin-vertical-md {
  margin-top: 16px;
  margin-bottom: 16px;
}

.is-margin-vertical-sm {
  margin-top: 12px;
  margin-bottom: 12px;
}

.is-margin-vertical-xs {
  margin-top: 8px;
  margin-bottom: 8px;
}

.is-margin-vertical-xxs {
  margin-top: 4px;
  margin-bottom: 4px;
}

.is-margin-horizontal-xxl {
  margin-right: 60px;
  margin-left: 60px;
}

.is-margin-horizontal-xl {
  margin-right: 24px;
  margin-left: 24px;
}

.is-margin-horizontal-lg {
  margin-right: 20px;
  margin-left: 20px;
}

.is-margin-horizontal,
.is-margin-horizontal-md {
  margin-right: 16px;
  margin-left: 16px;
}

.is-margin-horizontal-sm {
  margin-right: 12px;
  margin-left: 12px;
}

.is-margin-horizontal-xs {
  margin-right: 8px;
  margin-left: 8px;
}

.is-margin-horizontal-xxs {
  margin-right: 4px;
  margin-left: 4px;
}

.is-margin-minus-xxl {
  margin: -60px;
}

.is-margin-minus-xl {
  margin: -24px;
}

.is-margin-minus-lg {
  margin: -20px;
}

.is-margin-minus,
.is-margin-minus-md {
  margin: -16px;
}

.is-margin-minus-sm {
  margin: -12px;
}

.is-margin-minus-xs {
  margin: -8px;
}

.is-margin-minus-xxs {
  margin: -4px;
}

.is-margin-top-minus-xxl {
  margin-top: -60px;
}

.is-margin-top-minus-xl {
  margin-top: -24px;
}

.is-margin-top-minus-lg {
  margin-top: -20px;
}

.is-margin-top-minus,
.is-margin-top-minus-md {
  margin-top: -16px;
}

.is-margin-top-minus-sm {
  margin-top: -12px;
}

.is-margin-top-minus-xs {
  margin-top: -8px;
}

.is-margin-top-minus-xxs {
  margin-top: -4px;
}

.is-margin-right-minus-xxl {
  margin-right: -60px;
}

.is-margin-right-minus-xl {
  margin-right: -24px;
}

.is-margin-right-minus-lg {
  margin-right: -20px;
}

.is-margin-right-minus,
.is-margin-right-minus-md {
  margin-right: -16px;
}

.is-margin-right-minus-sm {
  margin-right: -12px;
}

.is-margin-right-minus-xs {
  margin-right: -8px;
}

.is-margin-right-minus-xxs {
  margin-right: -4px;
}

.is-margin-bottom-minus-xxl {
  margin-bottom: -60px;
}

.is-margin-bottom-minus-xl {
  margin-bottom: -24px;
}

.is-margin-bottom-minus-lg {
  margin-bottom: -20px;
}

.is-margin-bottom-minus,
.is-margin-bottom-minus-md {
  margin-bottom: -16px;
}

.is-margin-bottom-minus-sm {
  margin-bottom: -12px;
}

.is-margin-bottom-minus-xs {
  margin-bottom: -8px;
}

.is-margin-bottom-minus-xxs {
  margin-bottom: -4px;
}

.is-margin-left-minus-xxl {
  margin-left: -60px;
}

.is-margin-left-minus-xl {
  margin-left: -24px;
}

.is-margin-left-minus-lg {
  margin-left: -20px;
}

.is-margin-left-minus,
.is-margin-left-minus-md {
  margin-left: -16px;
}

.is-margin-left-minus-sm {
  margin-left: -12px;
}

.is-margin-left-minus-xs {
  margin-left: -8px;
}

.is-margin-left-minus-xxs {
  margin-left: -4px;
}

.is-margin-vertical-minus-xxl {
  margin-top: -60px;
  margin-bottom: -60px;
}

.is-margin-vertical-minus-xl {
  margin-top: -24px;
  margin-bottom: -24px;
}

.is-margin-vertical-minus-lg {
  margin-top: -20px;
  margin-bottom: -20px;
}

.is-margin-vertical-minus,
.is-margin-vertical-minus-md {
  margin-top: -16px;
  margin-bottom: -16px;
}

.is-margin-vertical-minus-sm {
  margin-top: -12px;
  margin-bottom: -12px;
}

.is-margin-vertical-minus-xs {
  margin-top: -8px;
  margin-bottom: -8px;
}

.is-margin-vertical-minus-xxs {
  margin-top: -4px;
  margin-bottom: -4px;
}

.is-margin-horizontal-minus-xxl {
  margin-right: -60px;
  margin-left: -60px;
}

.is-margin-horizontal-minus-xl {
  margin-right: -24px;
  margin-left: -24px;
}

.is-margin-horizontal-minus-lg {
  margin-right: -20px;
  margin-left: -20px;
}

.is-margin-horizontal-minus,
.is-margin-horizontal-minus-md {
  margin-right: -16px;
  margin-left: -16px;
}

.is-margin-horizontal-minus-sm {
  margin-right: -12px;
  margin-left: -12px;
}

.is-margin-horizontal-minus-xs {
  margin-right: -8px;
  margin-left: -8px;
}

.is-margin-horizontal-minus-xxs {
  margin-right: -4px;
  margin-left: -4px;
}

.is-margin-right-auto {
  margin-right: auto;
}

.is-margin-left-auto {
  margin-left: auto;
}

.is-margin-horizontal-auto {
  margin-right: auto;
  margin-left: auto;
}

.is-padding-xxl {
  padding: 60px;
}

.is-padding-xl {
  padding: 24px;
}

.is-padding-lg {
  padding: 20px;
}

.is-padding,
.is-padding-md {
  padding: 16px;
}

.is-padding-sm {
  padding: 12px;
}

.is-padding-xs {
  padding: 8px;
}

.is-padding-xxs {
  padding: 4px;
}

.is-padding-top-xxl {
  padding-top: 60px;
}

.is-padding-top-xl {
  padding-top: 24px;
}

.is-padding-top-lg {
  padding-top: 20px;
}

.is-padding-top,
.is-padding-top-md {
  padding-top: 16px;
}

.is-padding-top-sm {
  padding-top: 12px;
}

.is-padding-top-xs {
  padding-top: 8px;
}

.is-padding-top-xxs {
  padding-top: 4px;
}

.is-padding-right-xxl {
  padding-right: 60px;
}

.is-padding-right-xl {
  padding-right: 24px;
}

.is-padding-right-lg {
  padding-right: 20px;
}

.is-padding-right,
.is-padding-right-md {
  padding-right: 16px;
}

.is-padding-right-sm {
  padding-right: 12px;
}

.is-padding-right-xs {
  padding-right: 8px;
}

.is-padding-right-xxs {
  padding-right: 4px;
}

.is-padding-bottom-xxl {
  padding-bottom: 60px;
}

.is-padding-bottom-xl {
  padding-bottom: 24px;
}

.is-padding-bottom-lg {
  padding-bottom: 20px;
}

.is-padding-bottom,
.is-padding-bottom-md {
  padding-bottom: 16px;
}

.is-padding-bottom-sm {
  padding-bottom: 12px;
}

.is-padding-bottom-xs {
  padding-bottom: 8px;
}

.is-padding-bottom-xxs {
  padding-bottom: 4px;
}

.is-padding-left-xxl {
  padding-left: 60px;
}

.is-padding-left-xl {
  padding-left: 24px;
}

.is-padding-left-lg {
  padding-left: 20px;
}

.is-padding-left,
.is-padding-left-md {
  padding-left: 16px;
}

.is-padding-left-sm {
  padding-left: 12px;
}

.is-padding-left-xs {
  padding-left: 8px;
}

.is-padding-left-xxs {
  padding-left: 4px;
}

.is-padding-vertical-xxl {
  padding-top: 60px;
  padding-bottom: 60px;
}

.is-padding-vertical-xl {
  padding-top: 24px;
  padding-bottom: 24px;
}

.is-padding-vertical-lg {
  padding-top: 20px;
  padding-bottom: 20px;
}

.is-padding-vertical,
.is-padding-vertical-md {
  padding-top: 16px;
  padding-bottom: 16px;
}

.is-padding-vertical-sm {
  padding-top: 12px;
  padding-bottom: 12px;
}

.is-padding-vertical-xs {
  padding-top: 8px;
  padding-bottom: 8px;
}

.is-padding-vertical-xxs {
  padding-top: 4px;
  padding-bottom: 4px;
}

.is-padding-horizontal-xxl {
  padding-right: 60px;
  padding-left: 60px;
}

.is-padding-horizontal-xl {
  padding-right: 24px;
  padding-left: 24px;
}

.is-padding-horizontal-lg {
  padding-right: 20px;
  padding-left: 20px;
}

.is-padding-horizontal,
.is-padding-horizontal-md {
  padding-right: 16px;
  padding-left: 16px;
}

.is-padding-horizontal-sm {
  padding-right: 12px;
  padding-left: 12px;
}

.is-padding-horizontal-xs {
  padding-right: 8px;
  padding-left: 8px;
}

.is-padding-horizontal-xxs {
  padding-right: 4px;
  padding-left: 4px;
}

.is-overflow-hidden {
  overflow: hidden;
}

.is-overflow-scroll-x {
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.is-overflow-scroll-y {
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.is-overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.is-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/*menu*/
.menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    z-index: 99;
    cursor: pointer;
  }
}

.menu__line {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 20px;
  height: 1px;
  background: #fff;
  transition: transform 0.3s;
}
.menu__line.menu__line--top {
  top: 12px;
}
.menu__line.menu__line--top.active {
  top: 19.5px;
  transform: rotate(45deg);
}
.menu__line.menu__line--center {
  top: 19.5px;
}
.menu__line.menu__line--center.active {
  display: none;
}
.menu__line.menu__line--bottom {
  bottom: 12px;
}
.menu__line.menu__line--bottom.active {
  bottom: 19.5px;
  transform: rotate(135deg);
}

.header {
  position: absolute;
  width: 100%;
  color: #fff;
  transition-duration: 0.3s;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #5f5f5f;
  }
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 100px;
  padding: 0 8.2% 0 4.68%;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .header-inner {
    padding: 10px 3%;
  }
}
@media screen and (max-width: 767px) {
  .header-inner {
    min-height: 60px;
    padding: 5px 55px 5px 5.33%;
  }
}

.header-logo {
  position: relative;
  max-width: 264px;
  width: 32%;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .header-logo {
    max-width: 170px;
    width: 100%;
  }
}
.header-logo:hover {
  opacity: 0.8;
}
.header-logo img {
  display: block;
  width: 100%;
}

.gnav {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .gnav {
    flex: none;
    display: block;
    min-height: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    padding: 100px 10% 60px;
    background: #5f5f5f;
    color: #fff;
    transition-duration: 0.3s;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    z-index: -98;
  }
}
.gnav.open {
  opacity: 1;
  pointer-events: all;
  z-index: 98;
  transition-duration: 0;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-nav {
    display: block;
    text-align: center;
  }
}

.header-nav-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .header-nav-list {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.header-nav-list > li {
  margin-left: 32px;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .header-nav-list > li {
    margin-left: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .header-nav-list > li {
    font-size: 16px;
    margin: 0 0 23px;
  }
}
.header-nav-list a {
  display: inline-block;
}
.header-nav-list a:hover .link-inner {
  transform: translateY(-9px);
}
.header-nav-list .link-inner {
  display: inline-block;
  transition-duration: 0.7s;
}

.header-contact-btn {
  display: inline-block;
  margin-left: 36px;
  padding: 4px 30px 5px;
  border: solid 1px #fff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .header-contact-btn {
    margin-left: 20px;
    padding: 4px 16px 5px;
  }
}
@media screen and (max-width: 767px) {
  .header-contact-btn {
    display: block;
    max-width: 150px;
    margin: 40px auto 0;
    padding: 8px 30px 9px;
  }
}
.header-contact-btn:hover {
  background-color: #fff;
}

/*固定サイドバー*/
.fix-link-wrap {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 150px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .fix-link-wrap {
    top: auto;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100vw;
    background-color: #fff;
    height: 50px;
  }
}
.fix-link-wrap a {
  display: inline-block;
  color: #fff;
  width: 100%;
  writing-mode: vertical-lr;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .fix-link-wrap a {
    writing-mode: horizontal-tb;
    height: 100%;
  }
}
.fix-link-wrap .tel-link-btn {
  background-color: #5e5448;
  padding: 29px 11px 30px;
}
@media screen and (max-width: 767px) {
  .fix-link-wrap .tel-link-btn {
    padding: 0;
    width: 45vw;
  }
}
.fix-link-wrap .line-link-btn {
  background-color: #5f5f5f;
  padding: 30px 11px 29px;
}
@media screen and (max-width: 767px) {
  .fix-link-wrap .line-link-btn {
    padding: 0;
    width: 41vw;
  }
}
.fix-link-wrap .line-link-btn img {
  width: 22px;
  margin-bottom: 9.47px;
}
@media screen and (max-width: 767px) {
  .fix-link-wrap .line-link-btn img {
    margin-bottom: 0;
    margin-right: 9px;
  }
}
.fix-link-wrap .ig-link-btn {
  background-color: #333;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .fix-link-wrap .ig-link-btn {
    padding: 0;
    min-width: 50px;
    flex: 1;
  }
}
.fix-link-wrap .ig-link-btn img {
  width: 20px;
}

.footer {
  padding: 80px 0 50px;
  background-color: #5f5f5f;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 55px;
  }
}

.footer-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer-flex {
    display: block;
  }
}

.footer-logo-wrap {
  width: 51.1%;
  margin-right: 8.3%;
  font-weight: 500;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer-logo-wrap {
    margin: 0 auto 23px;
    padding: 0;
  }
}
.footer-logo-wrap .footer-logo {
  display: block;
  max-width: 228px;
  min-width: 128px;
  margin-bottom: 35px;
}
.footer-logo-wrap .footer-logo img {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .footer-logo-wrap .footer-logo img {
    margin-bottom: 10px;
  }
}
.footer-logo-wrap .footer-logo:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .footer-logo-wrap .footer-logo {
    max-width: 130px;
    margin: 0 auto 16px;
  }
}
.footer-logo-wrap .footer-sns-link {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.footer-logo-wrap .footer-sns-link a {
  display: block;
  height: 20px;
}
.footer-logo-wrap .footer-sns-link img {
  height: 100%;
}
.footer-logo-wrap .footer-address {
  margin-bottom: 30px;
  font-size: 14px;
}
.footer-logo-wrap .address-details {
  margin-top: 25px;
}

.footer-headline {
  display: block;
  font-size: 14px;
  font-weight: 600;
  font-family: "Crimson Text", serif;
  color: #999;
  padding-left: 5px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #999;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .footer-headline {
    margin-bottom: 10px;
    padding-bottom: 7px;
  }
}

.footer-list-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  margin-top: -60px;
  padding: 15px 0 80px 20px;
  border-bottom: 1px solid #999;
}
@media screen and (max-width: 767px) {
  .footer-list-block {
    padding-left: 0;
    padding-bottom: 33px;
    margin-top: -33px;
  }
}

.footer-list-item {
  width: 37.731%;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .footer-list-item {
    width: 100%;
    margin-top: 33px;
  }
}
.footer-list-item:nth-child(even) {
  width: 51.206%;
}
@media screen and (max-width: 767px) {
  .footer-list-item:nth-child(even) {
    width: 100%;
  }
}

.item-content {
  padding: 0 5px;
}
.item-content .notes {
  font-size: 16px;
}
.item-content ._big {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .item-content ._big {
    font-size: 18px;
  }
}
.item-content a:not(:has(.link-inner)):hover {
  opacity: 0.6;
}

.footer-nav {
  font-size: 14px;
  line-height: 1.71;
  display: flex;
  flex-wrap: wrap;
}
.footer-nav li {
  width: 50%;
}
.footer-nav li:not(:last-child) {
  margin-bottom: 19px;
}
@media screen and (max-width: 767px) {
  .footer-nav li:not(:last-child) {
    margin-bottom: 11px;
  }
}
.footer-nav a {
  font-size: 14px;
  display: inline-block;
}
.footer-nav a:hover .link-inner {
  transform: translateY(-6px);
}
.footer-nav .link-inner {
  display: inline-block;
  transition-duration: 0.7s;
}

.mail-address {
  letter-spacing: 1px;
}

.tel-number a {
  line-height: 1.7;
  display: block;
  font-weight: 200;
  letter-spacing: 3px;
  font-size: 42px;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1279px) {
  .tel-number a {
    font-size: 3.281vw;
  }
}
@media screen and (max-width: 1079px) {
  .tel-number a {
    font-size: 31px;
    letter-spacing: 1px;
  }
}

.footer-payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.footer-payment-list > li {
  max-width: 70px;
}

.footer-banner-area {
  margin-top: 30px;
  padding-left: 5px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-banner-area a {
  display: block;
  max-width: 220px;
}

.copyright {
  display: block;
  font-size: 10px;
  color: #aaa;
  font-weight: 400;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  transition-duration: 0.3s;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

@media screen and (max-width: 767px) {
  .section > .inner {
    padding-left: 5.33%;
    padding-right: 5.33%;
  }
}

.title {
  font-family: "Crimson Text", serif;
  font-size: 100px;
  line-height: 1;
  margin-bottom: 70px;
}
@media screen and (max-width: 1079px) {
  .title {
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  .title {
    margin-bottom: 40px;
    font-size: 54px;
  }
}
.title .ja {
  display: block;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .title .ja {
    font-size: 14px;
  }
}

.font-sans {
  font-family: "Noto Sans JP", sans-serif;
}

.top-btn {
  display: block;
  font-size: 14px;
  font-family: "Crimson Text", serif;
  color: #fff;
  padding: 13px 43px 13px 30px;
  border: 1px solid #fff;
  border-radius: 28px;
  max-width: 220px;
  margin: 58px auto 0;
  letter-spacing: 1px;
  position: relative;
}
.top-btn::after {
  position: absolute;
  content: "";
  right: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border: 1px solid #fff;
  border-bottom: none;
  border-left: none;
}
.top-btn:hover {
  color: #5f5f5f;
  border-color: #5f5f5f;
  background-color: #fff;
}
.top-btn:hover::after {
  border-color: #5f5f5f;
}

@media screen and (max-width: 767px) {
  .txt-wrap {
    display: block;
  }
}

.page-top {
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
}
@media screen and (max-width: 1079px) {
  .page-top {
    height: 31vw;
    min-height: 180px;
  }
}

.page-title {
  position: absolute;
  bottom: -173px;
  z-index: 10;
}
@media screen and (max-width: 1079px) {
  .page-title {
    bottom: -45%;
  }
}
.page-title p {
  font-size: 22px;
  font-weight: 700;
  writing-mode: vertical-rl;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  padding-left: 17px;
}
@media screen and (max-width: 1079px) {
  .page-title p {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-title p {
    font-size: 17px;
  }
}
.page-title h1 {
  font-size: 140px;
  font-family: "Crimson Text", serif;
  margin-top: -45px;
}
@media screen and (max-width: 1079px) {
  .page-title h1 {
    font-size: 11vw;
    margin-top: -10px;
  }
}
@media screen and (max-width: 575px) {
  .page-title h1 {
    font-size: 70px;
  }
}

.headline {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .headline {
    margin-bottom: 40px;
  }
}
.headline h2 {
  font-size: 80px;
  font-family: "Crimson Text", serif;
}
@media screen and (max-width: 767px) {
  .headline h2 {
    font-size: 48px;
  }
}
.headline p {
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  margin-top: -40px;
}
@media screen and (max-width: 767px) {
  .headline p {
    font-size: 15px;
    margin-top: -25px;
  }
}

.pc-block {
  display: block;
}
@media screen and (max-width: 575px) {
  .pc-block {
    display: none;
  }
}

.top-mv {
  position: relative;
}

.top-mv-txt {
  position: absolute;
  text-align: center;
  width: 100%;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.top-mv-txt h1 {
  font-size: 46px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.75;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1279px) {
  .top-mv-txt h1 {
    font-size: 3.71vw;
  }
}
@media screen and (max-width: 575px) {
  .top-mv-txt h1 {
    font-size: 17px;
  }
}
.top-mv-txt p {
  font-size: 16px;
  font-weight: 500;
  border: 0.7935pt solid #fff;
  padding: 1px 2.6423%;
  margin: 25px auto;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .top-mv-txt p {
    font-size: 12px;
    margin: 13px auto 0;
  }
}
@media screen and (max-width: 575px) {
  .top-mv-txt p {
    font-size: 11px;
  }
}
.top-mv-txt .slash {
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .top-mv-txt .slash {
    padding: 0 4px;
  }
}

/*About*/
.top-about-section {
  padding: 150px 0 150px;
}
@media screen and (max-width: 767px) {
  .top-about-section {
    padding: 50px 0 65px;
  }
}

.top-about-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-about-wrap {
    flex-direction: column;
  }
}

.about-txt-content {
  flex: 1;
}
.about-txt-content p {
  line-height: 2.5;
}
@media screen and (max-width: 1079px) {
  .about-txt-content p {
    line-height: 2;
  }
}
.about-txt-content .name {
  font-size: 18px;
}
.about-txt-content .name-pc {
  text-align: right;
  margin-top: 4.687vw;
}
.about-image-box {
  max-width: 440px;
  width: 40.75%;
  margin-left: 9.099%;
}
@media screen and (max-width: 767px) {
  .about-image-box {
    width: 100%;
    margin: 35px auto 0;
  }
}
.about-image-box .name-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .about-image-box .name-sp {
    display: block;
    text-align: center;
    margin-top: 10px;
  }
}

/*Service*/
.top-service-section h3 {
  text-align: center;
  font-size: 20px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top-service-section h3 {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .top-service-section dl {
    flex: 1;
    padding-left: 7%;
  }
}
.top-service-section dl dt {
  font-size: 14px;
  line-height: 1.7;
}
.top-service-section .price {
  font-family: "Inter", sans-serif;
  text-align: right;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-service-section .price {
    text-align: left;
  }
}
.top-service-section .column {
  max-width: 230px;
}
@media screen and (max-width: 1079px) {
  .top-service-section .column {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .top-service-section .column {
    width: 100%;
    display: flex;
  }
}
.top-service-section img {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .top-service-section img {
    width: 39.6%;
    height: 100%;
    margin-bottom: 0;
  }
}
.top-service-section .small {
  font-size: 12px;
  line-height: 1.7;
}

.no_1, .no_2, .no_3 {
  position: relative;
}
.no_1::before, .no_2::before, .no_3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  aspect-ratio: 1;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .no_1::before, .no_2::before, .no_3::before {
    width: 10.5%;
  }
}

.no_1::before {
  background-image: url(/images/common/no_1.png);
}

.no_2::before {
  background-image: url(/images/common/no_2.png);
}

.no_3::before {
  background-image: url(/images/common/no_3.png);
}

.flex-image-box {
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .flex-image-box {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .flex-image-box {
    flex-direction: column;
    gap: 15px;
  }
}

.service1 {
  background-image: url(/images/top/service_bg01.jpg);
  background-size: cover;
  background-position: center;
  padding: 100px 0 60px;
}
@media screen and (max-width: 767px) {
  .service1 {
    padding: 55px 0 20px;
  }
}
.service1 .outline {
  text-align: center;
  color: #fff;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .service1 .outline {
    margin-bottom: 40px;
  }
}
.service1 .title {
  color: #fff;
  text-align: center;
}

.service2 {
  background-image: url(/images/top/service_bg02.jpg);
  background-size: cover;
  padding: 54px 0;
}
@media screen and (max-width: 767px) {
  .service2 {
    padding-bottom: 30px;
  }
}

.service3 {
  background-image: url(/images/top/service_bg03.jpg);
  background-size: cover;
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  .service3 {
    padding: 35px 0 65px;
  }
}

.service1-item-wrap {
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .service1-item-wrap {
    gap: 40px;
  }
}
@media screen and (max-width: 1079px) {
  .service1-item-wrap {
    flex-direction: column;
    gap: 20px;
  }
}

.top-service-list {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .top-service-list {
    margin-left: 0;
    gap: 20px;
    flex-direction: column;
  }
}
.top-service-list > li {
  background-color: #fff;
  padding: 39px 20px 41px;
}
@media screen and (max-width: 1279px) {
  .top-service-list > li {
    padding: 36px 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .top-service-list > li {
    padding: 35px 4.7% 15px;
  }
}
.top-service-list .two-column {
  width: 100%;
}

.top-service-list:has(.two-column) {
  flex: 1;
}

.separate-column {
  width: 50.926%;
}
@media screen and (min-width: 1080px) and (max-width: 1279px) {
  .separate-column {
    width: 51.042%;
  }
}
@media screen and (max-width: 1079px) {
  .separate-column {
    width: 100%;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1279px) {
  .separate-column .one-column {
    width: 48.98%;
  }
}
@media screen and (max-width: 1079px) {
  .separate-column .one-column {
    width: 49.306%;
  }
}
@media screen and (max-width: 767px) {
  .separate-column .one-column {
    width: 100%;
  }
}

.top-service-list2 {
  display: flex;
  flex-wrap: wrap;
  margin-top: -42px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .top-service-list2 {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .top-service-list2 {
    margin-top: -15px;
  }
}
.top-service-list2 > li {
  padding: 42px 20px 0;
  width: 25%;
}
@media screen and (max-width: 1279px) {
  .top-service-list2 > li {
    padding: 36px 20px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .top-service-list2 > li {
    width: 49.306%;
  }
}
@media screen and (max-width: 767px) {
  .top-service-list2 > li {
    width: 100%;
    padding: 15px 4.7% 0;
  }
}

/*Reason*/
.top-reason-section {
  padding: 105px 0 100px;
}
@media screen and (max-width: 767px) {
  .top-reason-section {
    padding: 55px 0 60px;
  }
}
.top-reason-section .title {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top-reason-section .title {
    margin-bottom: 50px;
  }
}

.reason-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -40px 0 0 -1.807%;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .reason-list {
    margin-left: -6%;
  }
}
.reason-list > li {
  width: 20%;
  padding: 40px 0 0 1.807%;
}
@media screen and (max-width: 1079px) {
  .reason-list > li {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .reason-list > li {
    padding-left: 6%;
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .reason-list > li {
    max-width: 220px;
  }
}

.reason-item {
  max-width: 200px;
  background-color: #f2f2f2;
  padding: 32px 0 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reason-item {
    max-width: none;
  }
}
@media screen and (max-width: 575px) {
  .reason-item {
    padding: 24px 0 23px;
  }
}
.reason-item img {
  width: 120px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .reason-item img {
    width: 105px;
    margin-bottom: 9px;
  }
}

.reason-txt {
  display: block;
  font-weight: 500;
  font-size: 18px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason-txt {
    font-size: 16px;
  }
}
.reason-txt::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #5f5f5f;
}
@media screen and (max-width: 767px) {
  .reason-txt::before {
    width: 15px;
  }
}

.caption {
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .caption {
    line-height: 1.8;
    margin-top: 7px;
    font-size: 13px;
  }
}

.reason-btn {
  margin: 70px auto 0;
  color: #5f5f5f;
  border-color: #5f5f5f;
}
@media screen and (max-width: 767px) {
  .reason-btn {
    margin-top: 50px;
  }
}
.reason-btn:hover {
  background-color: #5f5f5f;
  color: #fff;
  border-color: #fff;
}
.reason-btn::after {
  border-color: #5f5f5f;
}
.reason-btn:hover::after {
  border-color: #fff;
}

/*News*/
.top-news-section {
  background-color: #5e5448;
  color: #fff;
  padding: 120px 0 120px;
}
@media screen and (max-width: 767px) {
  .top-news-section {
    position: relative;
    padding: 55px 0 175px;
  }
}

.top-news-wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-news-wrap {
    flex-direction: column;
  }
}
.top-news-wrap .title {
  font-size: 60px;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .top-news-wrap .title {
    font-size: 53px;
  }
}
.top-news-wrap .title .ja {
  font-size: 16px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .top-news-wrap .title .ja {
    font-size: 14px;
  }
}
.top-news-wrap .news-box {
  max-width: 860px;
  flex: 1;
  margin-left: 5%;
}
@media screen and (max-width: 767px) {
  .top-news-wrap .news-box {
    margin-left: 0;
  }
}
.top-news-wrap .news-content > li {
  padding: 33px 10px;
  display: flex;
  font-size: 14px;
  border-top: 1px solid #999;
}
.top-news-wrap .news-content > li:last-child {
  border-bottom: 1px solid #999;
}
@media screen and (max-width: 767px) {
  .top-news-wrap .news-content > li {
    padding: 28px 7px;
  }
}
.top-news-wrap .news-content > li .date {
  display: block;
  padding-right: 6.7%;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
.top-news-wrap .news-content > li a:hover {
  opacity: 0.7;
}

.news-btn {
  width: 140px;
}
@media screen and (max-width: 767px) {
  .news-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    margin: 0 0 60px 0;
  }
}

/*Recruit*/
.top-recruit-section {
  background-image: url(/images/top/recruit_bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 130px 0 120px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-recruit-section {
    padding: 55px 0 65px;
  }
}
.top-recruit-section .recruit-btn {
  margin: 70px 0 0 0;
  padding: 12px 43px 12px 30px;
}
@media screen and (max-width: 767px) {
  .top-recruit-section .recruit-btn {
    margin-top: 50px;
  }
}

.works-page {
  background-image: url(/images/works/mv_works.jpg);
}

.works-section {
  padding: 150px 0 60px;
  background: linear-gradient(180deg, #fff 0%, #fff calc(100% - 400px), #f2f2f2 calc(100% - 400px), #f2f2f2 100%);
}
@media screen and (max-width: 1079px) {
  .works-section {
    background: linear-gradient(180deg, #fff 0%, #fff 62%, #f2f2f2 62%, #f2f2f2 100%);
  }
}
@media screen and (max-width: 767px) {
  .works-section {
    padding-top: 70px;
    background: linear-gradient(180deg, #fff 0%, #fff calc(100% - 390px), #f2f2f2 calc(100% - 390px), #f2f2f2 100%);
  }
}
.works-section .small {
  font-size: 12px;
  display: block;
  padding-top: 12px;
  padding-left: 27px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .works-section .small {
    padding-left: 18px;
  }
}

.works-aircon-section {
  padding: 200px 0 60px;
}
@media screen and (max-width: 767px) {
  .works-aircon-section {
    padding-top: 100px;
  }
}

.section .works-flex:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 1079px) {
  .section .works-flex:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .section .works-flex:not(:first-child) {
    margin-top: 30px;
  }
}

.works-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.works-flex .ex {
  width: 46.297%;
  max-width: 500px;
  height: 100%;
}
@media screen and (max-width: 1079px) {
  .works-flex .ex {
    width: 48.5%;
  }
}
@media screen and (max-width: 767px) {
  .works-flex .ex {
    width: 100%;
  }
}
.works-flex .works-txt-wrap {
  width: 46.297%;
}
@media screen and (max-width: 1079px) {
  .works-flex .works-txt-wrap {
    line-height: 1.8;
    width: 47.2%;
  }
}
@media screen and (max-width: 767px) {
  .works-flex .works-txt-wrap {
    width: 100%;
    margin-top: 30px;
  }
}
.works-flex .works-txt-wrap h2 {
  font-size: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .works-flex .works-txt-wrap h2 {
    font-size: 22px;
  }
}
.works-flex .detail-txt-box {
  margin-top: 32px;
  color: #fff;
  background-color: #5f5f5f;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .works-flex .detail-txt-box {
    margin-top: 24px;
    padding-left: 18px;
    padding-right: 18px;
  }
}
.works-flex .detail-txt-box span {
  font-weight: 700;
  margin-bottom: 4px;
}
@media screen and (max-width: 1079px) {
  .works-flex .detail-txt-box span::before {
    width: 13px;
    left: -18px;
  }
}
.works-flex .voice {
  padding-left: 28px;
  width: 46.297%;
}
@media screen and (max-width: 1079px) {
  .works-flex .voice {
    width: 48.5%;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .works-flex .voice {
    width: 100%;
    margin-bottom: 30px;
  }
}
.works-flex .voice .voice-head {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  position: relative;
}
.works-flex .voice .voice-head::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -27px;
  background-color: #333;
  width: 20px;
  height: 2px;
}
@media screen and (max-width: 1079px) {
  .works-flex .voice .voice-head::before {
    width: 13px;
    left: -18px;
  }
}
.works-flex .bef-aft-img {
  width: 46.297%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 1079px) {
  .works-flex .bef-aft-img {
    width: 47.2%;
  }
}
@media screen and (max-width: 767px) {
  .works-flex .bef-aft-img {
    width: 100%;
  }
}
.works-flex ._bef, .works-flex ._aft {
  position: relative;
}
.works-flex ._bef::after, .works-flex ._aft::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  width: 70px;
  height: 40px;
  padding: 0 4%;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  .works-flex ._bef::after, .works-flex ._aft::after {
    width: 63px;
    height: 32px;
    font-size: 14px;
  }
}
.works-flex ._bef::after {
  content: "Before";
}
.works-flex ._aft::after {
  content: "After";
}

.works-kitchen-section ._bef::after, .works-kitchen-section ._aft::after {
  height: 36px;
  width: 100%;
}
.works-kitchen-section .works-flex:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 1079px) {
  .works-kitchen-section .works-flex:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .works-kitchen-section .works-flex:not(:first-child) {
    margin-top: 30px;
  }
}

.txt-nowrap {
  display: block;
}
@media screen and (max-width: 1079px) {
  .txt-nowrap {
    display: inline;
  }
}

.recruit-page {
  background-image: url(/images/recruit/mv_recruit.jpg);
}

.recruit-description {
  padding: 185px 0 100px;
}
@media screen and (max-width: 767px) {
  .recruit-description {
    padding: 100px 0 65px;
  }
}

.recruit-outline {
  margin-bottom: 70px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .recruit-outline {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.recruit-table dl {
  border-top: 1px solid #ccc;
  padding: 18px 1.6%;
  display: flex;
}
@media screen and (max-width: 767px) {
  .recruit-table dl {
    flex-direction: column;
  }
}
.recruit-table dl:last-child {
  border-bottom: 1px solid #ccc;
}
.recruit-table dl .small {
  font-size: 14px;
}
.recruit-table dl li {
  text-indent: -1em;
  padding-left: 1em;
}
.recruit-table dt {
  font-weight: 500;
  width: 19%;
  padding-right: 12px;
}
@media screen and (max-width: 1079px) {
  .recruit-table dt {
    width: 21%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-table dt {
    width: 100%;
    padding-bottom: 7px;
  }
}
.recruit-table dd {
  color: #5f5f5f;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .recruit-table dd {
    line-height: 1.8;
  }
}

.recruit-contact {
  background-color: #5e5448;
  padding: 70px 0 100px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .recruit-contact {
    padding: 40px 0 70px;
  }
}
.recruit-contact .headline {
  color: #fff;
  margin-bottom: 78px;
}
@media screen and (max-width: 767px) {
  .recruit-contact .headline {
    margin-bottom: 45px;
  }
}
.recruit-contact .headline h2 {
  font-size: 60px;
}
@media screen and (max-width: 767px) {
  .recruit-contact .headline h2 {
    font-size: 48px;
  }
}
.recruit-contact .headline p {
  font-size: 16px;
  margin-top: -30px;
}
@media screen and (max-width: 767px) {
  .recruit-contact .headline p {
    font-size: 15px;
  }
}

.recruit-contact-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .recruit-contact-flex {
    flex-direction: column;
  }
}
.recruit-contact-flex .contact-phone {
  padding-left: 4.63%;
  padding-right: 4%;
}
@media screen and (max-width: 767px) {
  .recruit-contact-flex .contact-phone {
    padding-left: 40px;
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.recruit-contact-flex .contact-phone .tel-number {
  display: block;
  font-size: 42px;
  font-weight: 200;
  font-family: "Inter", sans-serif;
  letter-spacing: 2px;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 1079px) {
  .recruit-contact-flex .contact-phone .tel-number {
    font-size: 33px;
  }
}
@media screen and (max-width: 320px) {
  .recruit-contact-flex .contact-phone .tel-number {
    font-size: 29px;
  }
}
.recruit-contact-flex .contact-phone .tel-number::before {
  position: absolute;
  content: "";
  width: 30px;
  aspect-ratio: 1;
  background-image: url(/images/recruit/phone.png);
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: -14.63%;
}
@media screen and (max-width: 1079px) {
  .recruit-contact-flex .contact-phone .tel-number::before {
    width: 25px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-contact-flex .contact-phone .tel-number::before {
    left: -40px;
  }
}
.recruit-contact-flex .contact-phone p {
  font-weight: 300;
  font-size: 18px;
}
.recruit-contact-flex .contact-phone .big {
  font-size: 20px;
}
.recruit-contact-flex .contact-line {
  flex: 1;
  max-width: 428px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .recruit-contact-flex .contact-line {
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-contact-flex .contact-line {
    justify-content: flex-start;
    max-width: 390px;
  }
}
.recruit-contact-flex .contact-line a {
  display: flex;
  justify-content: flex-end;
  height: 106px;
}
@media screen and (max-width: 767px) {
  .recruit-contact-flex .contact-line a {
    height: 98px;
  }
}
.recruit-contact-flex .contact-line .line-txt {
  border: 1px solid #fff;
  padding: 24px 9.5%;
  display: flex;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 1079px) {
  .recruit-contact-flex .contact-line .line-txt {
    padding: 19px 3%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-contact-flex .contact-line .line-txt {
    padding: 14px 4%;
  }
}
.recruit-contact-flex .contact-line .line-txt img {
  width: 41px;
  margin-right: 23px;
}
@media screen and (max-width: 1079px) {
  .recruit-contact-flex .contact-line .line-txt img {
    width: 30px;
    margin-right: 10px;
  }
}
.recruit-contact-flex .contact-line .line-txt p {
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .recruit-contact-flex .contact-line .line-txt p {
    font-size: 18px;
  }
}
.recruit-contact-flex .contact-line .line-txt p .caution {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 575px) {
  .recruit-contact-flex .contact-line .line-txt p .caution {
    font-size: 11px;
  }
}
.recruit-contact-flex .contact-line .qr-box {
  width: 100px;
  height: 106px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit-contact-flex .contact-line .qr-box {
    width: 98px;
    height: 98px;
  }
}
.recruit-contact-flex .contact-line .qr-box img {
  width: 92px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .recruit-contact-flex .contact-line .qr-box img {
    width: 86px;
  }
}

.service-page {
  background-image: url(/images/service/mv_service.jpg);
}

@media screen and (min-width: 768px) and (max-width: 1079px) {
  .service .section > .inner {
    width: 710px;
  }
}

.service-flow-section {
  background-color: #f2f2f2;
  padding: 160px 0 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-flow-section {
    padding: 70px 0 60px;
  }
}
.service-flow-section::before {
  content: "";
  position: absolute;
  width: 31.25%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .service-flow-section::before {
    display: none;
  }
}

.service-flow-cont {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service-flow-cont {
    flex-direction: column;
  }
}

.headline-side {
  z-index: 2;
}

.service-flow-side {
  padding-top: 45px;
  max-width: 780px;
  flex: 1;
  padding-left: 9.72%;
}
@media screen and (max-width: 767px) {
  .service-flow-side {
    padding-top: 0;
    padding-left: 0;
  }
}
.service-flow-side li {
  display: flex;
  align-items: flex-start;
  padding-bottom: 59px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-flow-side li {
    padding-bottom: 0;
    height: 120px;
  }
}
.service-flow-side li:last-child {
  padding-bottom: 0;
  height: 70px;
}
.service-flow-side li::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 60px;
  top: 65px;
  left: 25px;
  background-color: #5f5f5f;
}
@media screen and (max-width: 767px) {
  .service-flow-side li::before {
    height: 53px;
    top: 58px;
    left: 22px;
  }
}
.service-flow-side li:last-child::before {
  display: none;
}
.service-flow-side li .number {
  color: #fff;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 50px;
  background-color: #5f5f5f;
  width: 50px;
  aspect-ratio: 1;
  margin-right: 25px;
}
@media screen and (max-width: 767px) {
  .service-flow-side li .number {
    width: 45px;
    line-height: 45px;
  }
}
.service-flow-side li p {
  flex: 1;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .service-flow-side li p {
    font-size: 19px;
  }
}
.service-flow-side li p span {
  display: block;
  font-size: 16px;
  color: #5f5f5f;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .service-flow-side li p span {
    font-size: 14px;
  }
}
.service-flow-side li a {
  text-decoration: underline;
}

.line-btn {
  color: #5f5f5f;
  border-color: #5f5f5f;
  margin: 35px 0 auto auto;
}
@media screen and (max-width: 575px) {
  .line-btn {
    margin: 30px auto 0;
  }
}
.line-btn::after {
  border-color: #5f5f5f;
}
.line-btn:hover {
  background-color: #5f5f5f;
  color: #fff;
}
.line-btn:hover::after {
  border-color: #fff;
}

.service-detail-section {
  background-image: url(/images/service/service_detail_bg.jpg);
  background-size: cover;
  padding: 65px 0 100px;
}
@media screen and (max-width: 767px) {
  .service-detail-section {
    padding: 45px 0 60px;
  }
}
.service-detail-section .service-list-inner {
  padding: 0 2.42% 100px;
}
@media screen and (max-width: 767px) {
  .service-detail-section .service-list-inner {
    padding: 0 0 50px;
  }
}
.service-detail-section .headline {
  color: #fff;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .service-detail-section .headline {
    margin-bottom: 45px;
  }
}
.service-detail-section .cleaning-list {
  color: #ccc;
  margin: -28px 0 0 -5.2633%;
}
@media screen and (max-width: 1079px) {
  .service-detail-section .cleaning-list {
    margin: -16px 0 0 -3%;
  }
}
.service-detail-section .cleaning-list li {
  padding: 28px 0 0 5.2633%;
}
@media screen and (max-width: 1079px) {
  .service-detail-section .cleaning-list li {
    padding: 16px 0 0 3%;
  }
}
.service-detail-section .cleaning-list li p {
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 1079px) {
  .service-detail-section .cleaning-list li p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .service-detail-section .cleaning-list li p {
    padding-right: 28px;
  }
}
@media screen and (max-width: 767px) and (max-width: 575px) {
  .service-detail-section .cleaning-list li p {
    font-size: 12px;
  }
}
.service-detail-section .cleaning-list li p::before {
  content: "";
  position: absolute;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #ccc;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .service-detail-section .cleaning-list li p::before {
    width: 29px;
  }
}
.service-detail-section .cleaning-list li p::after {
  content: "";
  position: absolute;
  width: 7px;
  aspect-ratio: 1;
  border: 1px solid #ccc;
  border-top: none;
  border-left: none;
  top: 46.5%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
  transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .service-detail-section .cleaning-list li p::after {
    width: 6px;
    right: 11px;
  }
}
.service-detail-section .cleaning-list li a {
  display: block;
  max-width: 320px;
  padding: 18px 0;
  border-bottom: 1px solid #ccc;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .service-detail-section .cleaning-list li a {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .service-detail-section .cleaning-list li a {
    padding: 16px 0;
  }
}
.service-detail-section .cleaning-list li a:hover p::before {
  background-color: #ccc;
}
.service-detail-section .cleaning-list li a:hover p::after {
  border-color: #5f5f5f;
}
.service-detail-section .no_1, .service-detail-section .no_2, .service-detail-section .no_3 {
  position: relative;
}
.service-detail-section .no_1::before, .service-detail-section .no_2::before, .service-detail-section .no_3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
  aspect-ratio: 1;
  background-size: contain;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .service-detail-section .no_1::before, .service-detail-section .no_2::before, .service-detail-section .no_3::before {
    width: 52px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .service-detail-section .no_1::before, .service-detail-section .no_2::before, .service-detail-section .no_3::before {
    width: 75px;
  }
}
@media screen and (max-width: 575px) {
  .service-detail-section .no_1::before, .service-detail-section .no_2::before, .service-detail-section .no_3::before {
    width: 55px;
  }
}

.detail-area {
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) and (max-width: 1279px) {
  .detail-area {
    max-width: 1040px;
  }
}
@media screen and (max-width: 1079px) {
  .detail-area {
    max-width: 750px;
  }
}
@media screen and (max-width: 767px) {
  .detail-area {
    margin: 0 5.33%;
  }
}
.detail-area .caution {
  font-size: 14px;
  margin-top: 12px;
}
.detail-area .caution p {
  text-indent: -1em;
  padding-left: 1em;
}

.bg-white {
  background-color: #f2f2f2;
  padding: 60px 0 80px;
}
@media screen and (max-width: 1279px) {
  .bg-white {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .bg-white {
    padding: 35px 0 40px;
  }
}

.service-detail-title {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service-detail-title {
    flex-direction: column-reverse;
  }
}

.border-headline {
  margin-bottom: 47px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .border-headline {
    margin-bottom: 35px;
  }
}
.border-headline h3 {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .border-headline h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 575px) {
  .border-headline h3 {
    font-size: 22px;
  }
}

.en {
  font-size: 14px;
  font-family: "Crimson Text", serif;
  font-weight: 600;
  color: #5f5f5f;
  display: block;
  position: relative;
}
.en::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #5f5f5f;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
}
@media screen and (max-width: 1079px) {
  .en::before {
    width: 16px;
    left: -25px;
  }
}
@media screen and (max-width: 767px) {
  .en::before {
    left: -18px;
    width: 12px;
  }
}

.request {
  display: inline-block;
  text-align: right;
  font-size: 14px;
  padding-right: 5px;
}
@media screen and (max-width: 767px) {
  .request {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.request:hover {
  opacity: 0.6;
}
.request._white {
  color: #ccc;
}
.request._gray {
  color: #5f5f5f;
}

.service-list-inner .service-detail-title {
  align-items: center;
}
@media screen and (max-width: 767px) {
  .service-list-inner .service-detail-title {
    align-items: normal;
  }
}
.service-list-inner .request {
  font-size: 16px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .service-list-inner .request {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.service-detail-grid {
  margin: -60px 0 0 -6.5%;
}
.service-detail-grid li {
  padding-top: 60px;
  padding-left: 6.5%;
}

.service-detail-card {
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .service-detail-card {
    max-width: none;
  }
}

.service-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 7px;
}
@media screen and (max-width: 575px) {
  .service-price {
    align-items: flex-start;
  }
}
.service-price dt {
  font-size: 18px;
}
.service-price dd {
  font-size: 26px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 575px) {
  .service-price dd {
    font-size: 20px;
  }
}

.detail-txt-box {
  background-color: #fff;
  padding: 14px 29px;
  font-size: 14px;
}
@media screen and (max-width: 1079px) {
  .detail-txt-box {
    padding: 11px 18px;
    line-height: 1.8;
  }
}
.detail-txt-box span {
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  position: relative;
}
.detail-txt-box span::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -29px;
  background-color: #f2f2f2;
  width: 20px;
  height: 2px;
}
@media screen and (max-width: 1079px) {
  .detail-txt-box span::before {
    width: 13px;
    left: -18px;
  }
}

.service-aircon-area .detail-txt-box {
  min-height: 116px;
}

.merit-box-wrap {
  background-color: #fff;
  padding: 30px 0 40px;
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .merit-box-wrap {
    margin-top: 45px;
    padding-top: 23px;
  }
}
.merit-box-wrap h3 {
  font-size: 22px;
  padding: 0 4.63% 32px;
  border-bottom: 2px solid #f2f2f2;
}
@media screen and (max-width: 767px) {
  .merit-box-wrap h3 {
    font-size: 18px;
    line-height: 1.8;
    padding-bottom: 20px;
    text-align: center;
  }
}
.merit-box-wrap .merit-content {
  padding: 30px 4.63% 0;
}
@media screen and (max-width: 767px) {
  .merit-box-wrap .merit-content {
    padding-top: 20px;
  }
}
.merit-box-wrap .merit-txt {
  margin-bottom: 30px;
}

.merit-image-grid {
  margin: -35px 0 0 -3.858%;
}
.merit-image-grid li {
  padding: 35px 0 0 3.858%;
}

@media screen and (max-width: 767px) {
  .merit-image-box {
    line-height: 1.8;
  }
}
.merit-image-box img {
  margin-bottom: 10px;
}
.merit-image-box span {
  display: inline-block;
  font-size: 18px;
  padding-bottom: 4px;
}
.merit-image-box dl dt {
  font-size: 18px;
  line-height: 1.8;
  padding-bottom: 4px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .merit-image-box dl dt {
    font-size: 16px;
  }
}
.merit-image-box dl .txt-small {
  display: inline;
  font-size: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .merit-image-box dl .txt-small {
    font-size: 14px;
  }
}
.merit-image-box dl dd {
  text-align: right;
  font-weight: 500;
  font-size: 26px;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 575px) {
  .merit-image-box dl dd {
    font-size: 20px;
  }
}

.set-plan {
  padding: 30px 0;
}

.set-plan::after {
  top: 115px;
}

.service-water-area {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .service-water-area {
    margin-top: 45px;
  }
}

.service-flex-section {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .service-flex-section {
    margin-top: 50px;
  }
}
.service-flex-section .request {
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .service-flex-section .request {
    margin-bottom: 25px;
  }
}

.area-flex-wrap {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .area-flex-wrap {
    flex-direction: column;
  }
}
.area-flex-wrap .flex-content {
  width: 50%;
  padding: 60px 3.4489% 80px;
}
@media screen and (max-width: 1279px) {
  .area-flex-wrap .flex-content {
    padding: 50px 3.4489%;
  }
}
@media screen and (max-width: 767px) {
  .area-flex-wrap .flex-content {
    width: 100%;
    padding: 40px 0;
  }
}

.service-fan-area {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .service-fan-area {
    margin-top: 50px;
  }
}

.service-garden-area {
  max-width: 570px;
}
@media screen and (max-width: 767px) {
  .service-garden-area {
    max-width: none;
  }
}

.flex-content > .flex-one {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .flex-content > .flex-one {
    width: 540px;
    padding: 0 5.33%;
  }
}

.request-pdf-link {
  text-align: right;
}

.news-page {
  background-image: url(/images/news/mv_news.jpg);
}

.news-section {
  padding: 150px 0 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .news-section {
    padding-top: 60px;
  }
}

.news-wrap {
  padding: 0 13.88%;
}
@media screen and (max-width: 1079px) {
  .news-wrap {
    padding: 0;
  }
}

.news-item {
  border-bottom: 1px solid #ccc;
  padding: 60px 20px 90px;
  color: #5f5f5f;
}
@media screen and (max-width: 767px) {
  .news-item {
    padding: 45px 16px 70px;
    padding-bottom: 55px;
  }
}
.news-item:last-child {
  border-bottom: none;
}
.news-item .cat {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 575px) {
  .news-item .cat {
    margin-bottom: 15px;
  }
}
.news-item .cat span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  padding: 1px 12px;
  color: #5e5448;
  background-color: #fff;
  border-radius: 12px;
  margin-right: 20px;
}
.news-item .cat._campaign span {
  background-color: #D2C89D;
}
.news-item .date {
  font-family: "Inter", sans-serif;
  color: #5e5448;
  font-size: 14px;
  font-weight: 500;
}
.news-item h3 {
  font-weight: 500;
  font-size: 18px;
  padding-top: 10px;
}
.news-item .news-content {
  padding-top: 20px;
}
.news-item .news-content p {
  padding-bottom: 10px;
}
.news-item .image-box {
  margin-top: 10px;
}
.news-item .image-box img {
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
}
.news-item .grid.is-padding-40 {
  margin-left: -40px;
}
.news-item .grid.is-padding-40 > .column {
  padding-left: 40px;
  padding-bottom: 40px;
}
.news-item ul, .news-item ol, .news-item dl {
  padding-top: 30px;
}
.news-item ul li, .news-item ol li {
  text-indent: -1em;
  padding-left: 1em;
}
.news-item a {
  margin-top: 30px;
}
.news-item .txt-link {
  display: block;
  text-decoration: underline;
  color: #5e5448;
}
.news-item .link-btn {
  display: inline-block;
  background-color: #5e5448;
  border: 1px solid #5e5448;
  border-radius: 29px;
  padding: 4px 40px;
  min-width: 200px;
  color: #fff;
  text-align: center;
}
.news-item .link-btn:hover {
  background-color: #fff;
  color: #5e5448;
}/*# sourceMappingURL=style.css.map */