@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text__inline-block {
  display: inline-block;
}

.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}

:root {
  /* inner */
  --inner: 1080px;
  --padding-pc: 25px;
  --padding-sp: 15px;
  /* color */
  --color-white: #fff;
  --color-text: #0D2936;
  --color-black: #000;
  --color-gray: #F0F0F0;
  --color-accent: #408F95;
  --color-primary: #234F5E;
  --color-secondary: #0000ff;
  --color-orange: #DE8430;
  /* font-weight */
  --regular: 300;
  --normal: 400;
  --medium: 500;
  --bold: 700;
  /* font-family */
  --base-font-family: "Noto Sans JP", sans-serif;
  --second-font-family: "Gotu", sans-serif;
  --title-font-family: "Lato", sans-serif;
  /* 8pxを余白の基準とした余白ルール */
  /* 参考：https://www.tak-dcxi.com/article/use-line-height-trim-as-css-variable/ */
  --leading-trim: calc((1em - 1lh) / 2);
  --spacing-unit: 0.5rem;
  --spacing-xs: calc(var(--spacing-unit) / 2);
  --spacing-sm: var(--spacing-unit);
  --spacing-md: calc(var(--spacing-unit) * 2);
  --spacing-lg: calc(var(--spacing-unit) * 3);
  --spacing-lg-2: calc(var(--spacing-unit) * 4);
  --spacing-xl: calc(var(--spacing-unit) * 5);
  --spacing-xl-2: calc(var(--spacing-unit) * 6);
  --spacing-2xl: calc(var(--spacing-unit) * 8);
  --spacing-3xl: calc(var(--spacing-unit) * 13);
  /* line-height分の余白を打ち消す */
  --spacing-xs-trim: calc(var(--spacing-xs) + var(--leading-trim));
  --spacing-sm-trim: calc(var(--spacing-sm) + var(--leading-trim));
  --spacing-md-trim: calc(var(--spacing-md) + var(--leading-trim));
  --spacing-lg-trim: calc(var(--spacing-lg) + var(--leading-trim));
  --spacing-xl-trim: calc(var(--spacing-xl) + var(--leading-trim));
  --spacing-2xl-trim: calc(var(--spacing-2xl) + var(--leading-trim));
  --spacing-3xl-trim: calc(var(--spacing-3xl) + var(--leading-trim));
  /* --leading-trimの使い方 */
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
    /* `px`などの単位が必要 */
  }
}
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent; /* 強調をなくす */
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --clamp-y-axis-intersection: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );
  font-size: var(--clamp);
}

/* bodyにデフォルト値を設定する */
body {
  font-family: var(--base-font-family);
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1200;
  --clamp-min: 14;
  --clamp-max: 16;
}

/* 👍使い方 */
@media (max-width: 767px) {
  [data-device=pc] {
    display: none;
  }
}

@media (min-width: 768px) {
  [data-device=sp] {
    display: none;
  }
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem; /* = 16px */
}

textarea {
  field-sizing: content;
}

html {
  box-sizing: border-box;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

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

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

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

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

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

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

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

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  appearance: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

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

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.l-inner {
  max-width: 35rem;
  width: 100%;
  padding-right: var(--padding-sp);
  padding-left: var(--padding-sp);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: calc(var(--inner) + var(--padding-pc) * 2);
    padding-right: var(--padding-pc);
    padding-left: var(--padding-pc);
  }
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-top__about {
  margin-block-start: var(--spacing-xl);
}
@media screen and (min-width: 768px) {
  .l-top__about {
    margin-block-start: var(--spacing-3xl);
  }
}

.l-top {
  margin-block-start: var(--spacing-xl);
}
@media screen and (min-width: 768px) {
  .l-top {
    margin-block-start: var(--spacing-3xl);
  }
}

.p-header {
  height: 4rem;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 5rem;
  }
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  height: inherit;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-left: 2.1875rem;
  }
}

.p-header__logo {
  width: 100%;
  max-width: 2.5rem;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 3.75rem;
  }
}

.p-header__logo a {
  display: flex;
  align-items: center;
  height: inherit;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-header__nav {
  position: relative;
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__nav-list {
  display: flex;
  height: inherit;
}

.p-header__nav-item,
.p-header__nav-modal-wrap {
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  display: flex;
  align-items: center;
  margin-left: 0.9375rem;
}

.p-header__nav-item > a,
.p-header__nav-modal-wrap > p {
  display: flex;
  align-items: center;
  height: inherit;
  padding: 0 0.9375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
}

.p-header__nav-modal-wrap > p {
  transition: 0.3s;
}

.p-header__nav-modal {
  position: absolute;
  top: 5rem;
  left: -0.9375rem;
  width: 100%;
  max-width: 25rem;
  padding: 0.625rem 0;
  visibility: hidden;
  background-color: #e0e5e5;
  opacity: 0;
  transition: 0.5s;
  transform: rotateX(90deg);
}

.p-header__nav-modal-wrap:hover > .p-header__nav-modal {
  visibility: visible;
  opacity: 1;
  transform: rotateX(0deg);
}

.p-header__nav-modal-item a {
  position: relative;
  display: block;
  padding: 0.9375rem 0 0.9375rem 3.125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
}

.p-header__nav-modal-item a::before {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-top: 0.125rem solid #333;
  border-right: 0.125rem solid #333;
  transition: 0.3s;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .p-header__nav-modal-item a:hover::before {
    opacity: 0.8;
  }
}

.p-header__nav-item.p-header__nav-item--contact a {
  position: relative;
  padding: 0 3.125rem;
  color: var(--color-white);
  text-align: center;
  background-color: #234f5e;
}

.p-header__nav-item.p-header__nav-item--contact a::before {
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background-image: url("./../images/common/mail-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}

.p-header__nav-item.p-header__nav-item--contact a::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.3125rem;
  height: 0.3125rem;
  content: "";
  border-top: 0.125rem solid var(--color-white);
  border-right: 0.125rem solid var(--color-white);
  transition: 0.3s;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .p-header__nav-item.p-header__nav-item--contact a::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-header__hamburger {
  position: relative;
  z-index: 999;
  width: 4rem;
  height: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background-color: #234f5e;
  border: none;
  outline: none;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  display: block;
  width: 1.5625rem;
  height: 1px;
  background-color: var(--color-white);
  transition: 0.5s;
  transform: translateX(-50%);
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.5rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.5rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  position: absolute;
  inset: 0;
  z-index: 900;
  display: none;
  width: 100%;
  height: 100vh;
  padding-bottom: 6.875rem;
  margin-top: 4rem;
  overflow-y: scroll;
  background-color: #eff4f5;
  scrollbar-width: none;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item {
  border-bottom: 1px solid var(--color-white);
}

.p-header__drawer-item.p-header__drawer-item--contact {
  margin-top: 2.5rem;
  margin-left: 2rem;
  border-bottom: none;
}

.p-header__drawer-item > a,
.p-header__drawer-accordion-title {
  display: block;
  padding: 1.25rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.p-header__drawer-item.p-header__drawer-item--contact a {
  position: relative;
  width: 100%;
  max-width: 11.25rem;
  padding: 0.9375rem 0;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-primary);
}

.p-header__drawer-item.p-header__drawer-item--contact a::before {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  content: "";
  background-image: url("./../images/common/mail-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}

.p-header__drawer-item.p-header__drawer-item--contact a::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-top: 0.125rem solid var(--color-white);
  border-right: 0.125rem solid var(--color-white);
  transition: 0.3s;
  transform: translateY(-50%) rotate(45deg);
}

.p-header__drawer-accordion-title {
  position: relative;
}

.p-header__drawer-accordion-title::before,
.p-header__drawer-accordion-title::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: block;
  width: 0.75rem;
  height: 0.125rem;
  content: "";
  background: #333;
  transition: 0.3s;
}

.p-header__drawer-accordion-title::before {
  transform: translateY(-50%);
}

.p-header__drawer-accordion-title::after {
  transform: translateY(-50%) rotate(90deg);
}

.p-header__drawer-accordion-title.is-open::after {
  transform: translateY(-50%);
}

.p-header__drawer-accordion-list {
  display: none;
  padding-bottom: 0.625rem;
}

.p-header__drawer-accordion-list a {
  display: block;
  padding: 0.625rem 2rem;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-footer {
  background-color: var(--color-primary);
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 3.75rem 0;
  }
}

.p-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.p-footer__logo {
  max-width: 2.5rem;
  width: 100%;
}
.p-footer__logo img {
  width: 100%;
  height: auto;
}

.p-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9375rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-list {
    justify-content: flex-end;
  }
}

.p-footer__nav-item a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-footer__nav-item a:hover {
  opacity: 0.7;
}

.p-footer__bottom {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    margin-top: 2.5rem;
  }
}

.p-footer__copyright {
  font-size: 0.875rem;
  color: var(--color-white);
}

/* 下記サンプル 構築時は削除してください */
.p-sample {
  padding-block: var(--spacing-xl);
}

.p-sample__link {
  display: inline-block;
  font-size: 1.5rem;
  margin-block-start: var(--spacing-xl);
  text-decoration: underline;
}

@media (any-hover: hover) {
  .p-sample__link:hover {
    text-decoration: none;
  }
}
.p-sample__bg {
  aspect-ratio: 1/1;
  width: 300px;
  background-image: image-set(url("/images/bg_sample.webp") type("image/webp"), url("/images/bg_sample.png") type("image/png"));
  background-size: contain;
}

.p-sample__image {
  max-width: 400px;
  width: 100%;
  aspect-ratio: 1/1;
}

.p-sample__image img {
  object-fit: cover;
}

.p-sample__text-block {
  margin-block: var(--spacing-xl);
}

.p-sample__head {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .p-sample__head {
    font-size: 32px;
  }
}

.p-sample__text {
  letter-spacing: 0.05em;
  height: 1.5em;
}

.p-sample__title2 {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  display: inline-block;
  margin-block-end: var(--spacing-md);
}
@media screen and (min-width: 768px) {
  .p-sample__title2 {
    font-size: 24px;
  }
}

.p-sample__divider {
  margin-block: var(--spacing-lg-2);
}

.p-sample__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(64px, 100%), 1fr));
  gap: var(--spacing-md);
}

.p-mv {
  position: relative;
  z-index: 1;
  min-height: 25rem;
}

.p-mv__inner {
  height: inherit;
  min-height: inherit;
}

.p-mv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  text-align: center;
}

.p-mv__main-title {
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__main-title {
    font-size: 3.75rem;
  }
}

.p-mv__sub-title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__sub-title {
    font-size: 2.1875rem;
  }
}

.p-mv__splide,
.p-mv__splide .splide__slide-image,
.p-mv__splide .splide__slide-image img {
  height: inherit;
  min-height: inherit;
}

.p-mv__splide .splide__slide-image img {
  width: 100%;
  object-fit: cover;
}

.c-image-text {
  display: grid;
  align-items: center;
  grid-template: "image gutter text margin" auto/41.6666666667% 16px 1fr max((100% - var(--inner)) / 2, 32px);
}

.c-image-text--reverse {
  grid-template: "margin text gutter image" auto/max((100% - var(--inner)) / 2, 32px) 1fr 16px 41.6666666667%;
}

.c-image-text__image {
  grid-area: image;
}

.c-image-text__image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.c-image-text__text {
  grid-area: text;
}

.c-image-text02 {
  display: grid;
  align-items: center;
  grid-template: "image text margin" auto/41.6666666667% 1fr max((100% - var(--inner)) / 2, 32px);
}

.c-image-text02--reverse {
  grid-template: "margin text image" auto/max((100% - var(--inner)) / 2, 32px) 1fr 41.6666666667%;
}

.c-image-text02__image {
  grid-area: image;
}

.c-image-text02__image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.c-image-text02__text {
  grid-area: text;
  padding: 20px 0 20px 20px;
  margin-left: -100px;
  background: #fff;
}

.c-image-text02--reverse .c-image-text02__text {
  padding: 20px 20px 20px 0;
  margin-left: auto;
  margin-right: -100px;
}

.c-section-title {
  position: relative;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 3.75rem;
  }
}

.c-section-title.c-section-title--left {
  text-align: left;
}

.c-section-title.c-section-title--right {
  text-align: right;
}

.c-section-title::before {
  content: attr(data-title);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-gray);
  font-size: 5rem;
}
@media screen and (min-width: 768px) {
  .c-section-title::before {
    font-size: 7.5rem;
  }
}

.c-section-title.c-section-title--left::before {
  left: 0;
  transform: translate(0, -50%);
}

.c-section-title.c-section-title--right::before {
  right: 0;
  left: initial;
  transform: translate(0, -50%);
}

.c-button {
  padding: 0.875rem 3.75rem;
  position: relative;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  border: 1px solid currentColor;
  background-color: var(--color-white);
}

.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-block-start: 0.125rem solid var(--color-black);
  border-inline-end: 0.125rem solid var(--color-black);
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .c-button:hover {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .c-button:hover::before {
    right: 0.9375rem;
  }
}

.c-button.c-button--black {
  color: var(--color-white);
  background-color: var(--color-black);
}

.c-button.c-button--black::before {
  border-block-start: 0.125rem solid currentColor;
  border-inline-end: 0.125rem solid currentColor;
}

.c-triangle {
  aspect-ratio: 1/1;
  width: 4rem;
  background-color: var(--color-black);
  display: inline-block;
}

.c-triangle--top {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.c-triangle--bottom {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.c-triangle--left {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.c-triangle--right {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-triangle--lower-left {
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.c-triangle--upper-left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.c-triangle--lower-right {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.c-triangle--upper-right {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}