@charset "UTF-8";
/* resset.dev • v5.0.2 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -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;
}

::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; /* 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; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

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; /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

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

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

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

ul {
  list-style: none;
}

:root {
  --vw: 1vw;
}

@keyframes hamburgerOn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes hamburgerOff {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media only screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}
a {
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
}
a:focus-visible {
  outline: 2px solid #55B4E6;
  outline-offset: 4px;
}
a img,
a svg {
  pointer-events: none;
}

.column__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

img,
svg {
  vertical-align: top;
  max-width: 100%;
}

html,
body {
  height: 100%;
}

html {
  font-size: calc(0.7320644217 * var(--vw));
}
@media only screen and (max-width: 750px) {
  html {
    font-size: calc(1.3333333333 * var(--vw));
  }
}

body {
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  overflow-x: hidden;
}
body.is-preload {
  opacity: 0;
}
body.is-preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.wrapper {
  position: relative;
  display: grid;
  grid-template-columns: calc(8.9007540264 * var(--vw)) 1fr;
  width: 100%;
  min-height: 100%;
  height: auto;
}
@media only screen and (max-width: 750px) {
  .wrapper {
    grid-template-columns: calc(16.21124 * var(--vw)) 1fr;
    overflow: hidden;
  }
}

.content {
  position: relative;
  overflow: hidden;
}

.header {
  position: relative;
  background: #55B4E6;
  width: calc(8.9007540264 * var(--vw));
  height: 100%;
}
@media only screen and (max-width: 750px) {
  .header {
    width: calc(16.21124 * var(--vw));
  }
}
.header__in {
  position: sticky;
  top: 0;
  left: 0;
  width: calc(8.9007540264 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .header__in {
    position: fixed;
    width: calc(16.21124 * var(--vw));
  }
}

.hamburger {
  position: relative;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1;
  width: 100%;
}
.hamburger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #231815;
  animation: hamburgerOff 0.3s forwards;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 751px) {
  .hamburger:hover::before {
    animation: hamburgerOn 0.3s forwards;
  }
}
.hamburger:active::before {
  animation: hamburgerOn 0.3s forwards;
}
.hamburger span {
  position: absolute;
  right: 0;
  left: 0;
  background: #55B4E6;
  pointer-events: none;
  width: calc(3.1132210835 * var(--vw));
  height: calc(0.2196193265 * var(--vw));
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  .hamburger span {
    width: calc(5.6702133333 * var(--vw));
    height: calc(0.4 * var(--vw));
  }
}
.hamburger span:nth-of-type(1) {
  top: calc(3.2942898975 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .hamburger span:nth-of-type(1) {
    top: calc(6 * var(--vw));
  }
}
.hamburger span:nth-of-type(2) {
  top: calc(4.3557833089 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .hamburger span:nth-of-type(2) {
    top: calc(7.9333333333 * var(--vw));
  }
}
.hamburger span:nth-of-type(3) {
  top: calc(5.4172767204 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .hamburger span:nth-of-type(3) {
    top: calc(9.8666666667 * var(--vw));
  }
}

.gnavi {
  padding: calc(3.4407027818 * var(--vw)) 0 calc(3.4407027818 * var(--vw)) calc(3.4407027818 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .gnavi {
    padding: calc(13.3333333333 * var(--vw)) 0 0 calc(5.3333333333 * var(--vw));
  }
}
.gnavi__container {
  position: relative;
}
.gnavi__marker {
  position: absolute;
  top: calc(-0.5856515373 * var(--vw));
  left: calc(1.5739385066 * var(--vw));
  background: url(../img/ico_current_01.svg) no-repeat 0 0/100% auto;
  transition: top 0.3s;
  aspect-ratio: 37.5408/43.1143;
  width: calc(2.7482284041 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .gnavi__marker {
    top: calc(-0.5333333333 * var(--vw));
    left: calc(4 * var(--vw));
    width: calc(5.85124 * var(--vw));
  }
}
.gnavi[data-current="2"] .gnavi__marker {
  top: calc(5.8565153734 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .gnavi[data-current="2"] .gnavi__marker {
    top: calc(22.4 * var(--vw));
  }
}
.gnavi[data-current="3"] .gnavi__marker {
  top: calc(13.9092240117 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .gnavi[data-current="3"] .gnavi__marker {
    top: calc(48.5333333333 * var(--vw));
  }
}
.gnavi[data-current="4"] .gnavi__marker {
  top: calc(22.1083455344 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .gnavi[data-current="4"] .gnavi__marker {
    top: calc(76.2666666667 * var(--vw));
  }
}
body:not(#TOP) .gnavi__marker {
  display: none;
}
.gnavi-list {
  display: flex;
  flex-direction: column;
  gap: calc(3.8067349927 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .gnavi-list {
    gap: calc(12.8 * var(--vw));
  }
}
.gnavi-list__item {
  position: relative;
}
.gnavi-list__item.is-current svg path {
  fill: #231815;
}
.gnavi-list__item > a {
  display: block;
}
.gnavi-list__item > a:active svg path {
  fill: #231815;
}
.gnavi-list__item svg {
  width: calc(0.8190702782 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .gnavi-list__item svg {
    width: calc(2.7233733333 * var(--vw));
  }
}
.gnavi-list__item svg path {
  transition: 0.3s;
}

.contents-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transform: translateX(-100%);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
body.is-open .contents-menu {
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
}
.contents-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  width: 100%;
  height: 100%;
}
.contents-menu .btn-close {
  position: relative;
  z-index: 2;
  background: rgba(178, 217, 238, 0.9);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1;
  width: calc(8.9007540264 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .contents-menu .btn-close {
    width: calc(16.21124 * var(--vw));
  }
}
.contents-menu .btn-close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #231815;
  pointer-events: none;
  animation: hamburgerOff 0.3s forwards;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 751px) {
  .contents-menu .btn-close:hover::before {
    animation: hamburgerOn 0.3s forwards;
  }
}
.contents-menu .btn-close:active::before {
  animation: hamburgerOn 0.3s forwards;
}
.contents-menu .btn-close span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #55B4E6;
  pointer-events: none;
  width: calc(3.1132210835 * var(--vw));
  height: calc(0.2196193265 * var(--vw));
  margin: auto;
}
@media only screen and (max-width: 750px) {
  .contents-menu .btn-close span {
    width: calc(5.6702133333 * var(--vw));
    height: calc(0.4 * var(--vw));
  }
}
.contents-menu .btn-close span:nth-of-type(1) {
  transform: rotate(45deg);
}
.contents-menu .btn-close span:nth-of-type(2) {
  transform: rotate(-45deg);
}
.contents-menu__container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(85, 180, 230, 0.92);
  border-radius: 0 0 calc(19.4729136164 * var(--vw)) 0;
  width: calc(40.0754612006 * var(--vw));
  height: calc(50.3482869693 * var(--vw));
  padding: calc(9.0471669107 * var(--vw)) 0 0 calc(14.3850658858 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .contents-menu__container {
    border-radius: 0 0 calc(35.4666666667 * var(--vw)) 0;
    width: calc(72.9907733333 * var(--vw));
    height: calc(78.9379466667 * var(--vw));
    padding: calc(16.5333333333 * var(--vw)) 0 0 calc(26.2666666667 * var(--vw));
  }
}
.contents-menu__title {
  width: calc(16.525966325 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .contents-menu__title {
    width: calc(30.0992933333 * var(--vw));
  }
}
.contents-menu-list {
  display: flex;
  flex-direction: column;
  gap: calc(3.2210834553 * var(--vw));
  margin: calc(3.8067349927 * var(--vw)) 0 0 0;
  padding: 0 0 0 calc(4.831625183 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .contents-menu-list {
    gap: calc(8.5333333333 * var(--vw));
    margin: calc(6.9333333333 * var(--vw)) 0 0 0;
    padding: 0 0 0 calc(8.5333333333 * var(--vw));
  }
}
.contents-menu-list__item > a {
  display: block;
}
@media only screen and (min-width: 751px) {
  .contents-menu-list__item > a:hover path {
    fill: #727171;
  }
}
.contents-menu-list__item > a:active path {
  fill: #fff;
}
.contents-menu-list__item > a svg {
  pointer-events: none;
}
.contents-menu-list__item > a path {
  transition: 0.3s;
}
.contents-menu-list__item--01 svg {
  width: calc(12.9919619327 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .contents-menu-list__item--01 svg {
    width: calc(23.6626933333 * var(--vw));
  }
}
.contents-menu-list__item--02 svg {
  width: calc(9.6807320644 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .contents-menu-list__item--02 svg {
    width: calc(17.63184 * var(--vw));
  }
}
.contents-menu-list__item--03 svg {
  width: calc(14.5852781845 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .contents-menu-list__item--03 svg {
    width: calc(26.5646533333 * var(--vw));
  }
}
.contents-menu-list__item--04 svg {
  width: calc(12.8362591508 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .contents-menu-list__item--04 svg {
    width: calc(23.3791066667 * var(--vw));
  }
}

.footer {
  position: relative;
  background: #231815;
  height: calc(17.5235724744 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .footer {
    height: auto;
  }
}
.footer__in {
  padding: calc(4.8682284041 * var(--vw)) calc(2.1229868228 * var(--vw)) 0 calc(6.6251830161 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .footer__in {
    padding: calc(10.9333333333 * var(--vw)) 0 calc(9.6 * var(--vw)) calc(8.2666666667 * var(--vw));
  }
}
.footer__logo {
  width: calc(18.0569326501 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .footer__logo {
    width: calc(43.8310533333 * var(--vw));
  }
}
.footer__address {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.9313333333;
  margin-top: calc(0.878477306 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .footer__address {
    font-size: 2.1rem;
    line-height: 1.57;
    margin-top: calc(3.4666666667 * var(--vw));
  }
}
.footer__address .kerning--01 {
  letter-spacing: 0.24em;
}
.footer__address .kerning--02 {
  letter-spacing: 0.26em;
}
.footer__address .kerning--03 {
  letter-spacing: 0.12em;
}
@media only screen and (max-width: 750px) {
  .footer__address .kerning-sp--01 {
    letter-spacing: 0.28em;
  }
}
.footer__copyright {
  width: calc(24.5348096633 * var(--vw));
  margin: calc(1.8667642753 * var(--vw)) 0 0 auto;
}
@media only screen and (max-width: 750px) {
  .footer__copyright {
    width: calc(57.45364 * var(--vw));
    margin: calc(4.8 * var(--vw)) 0 0 0;
  }
}

.pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  background: #55B4E6;
  aspect-ratio: 63.0727/83.7549;
  width: calc(8.4096933333 * var(--vw));
}
.pagetop::before {
  content: "";
  position: absolute;
  top: calc(4 * var(--vw));
  right: 0;
  left: 0;
  transform: rotate(-45deg);
  transform-origin: center;
  pointer-events: none;
  aspect-ratio: 1;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: calc(3.136 * var(--vw));
  margin: 0 auto;
}

#TOP .sec {
  position: relative;
  width: 100%;
}
#TOP .sec__in {
  padding: 0 0 0 calc(10.7247437775 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec__in {
    padding: 0;
  }
}
#TOP .sec__heading {
  position: relative;
}
@media only screen and (max-width: 750px) {
  #TOP .sec__heading {
    text-align: center;
  }
}
#TOP .sec__heading img {
  height: calc(3.3236456808 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec__heading img {
    height: calc(7.26416 * var(--vw));
  }
}
#TOP .sec-top {
  padding: calc(13.616398243 * var(--vw)) 0 calc(12.2254758419 * var(--vw)) calc(6.0029282577 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-top {
    padding: calc(17.8666666667 * var(--vw)) 0 calc(44.2666666667 * var(--vw)) calc(9.3333333333 * var(--vw));
  }
}
#TOP .sec-top .logo {
  clip-path: inset(0 100% 0 0);
  width: calc(33.8802708638 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-top .logo {
    width: calc(63.4853333333 * var(--vw));
  }
}
#TOP .sec-top .page-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8.4919472914 * var(--vw));
  padding: calc(9.3338213763 * var(--vw)) 0 0 calc(0.5490483163 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-top .page-list {
    flex-direction: column;
    gap: calc(12.8 * var(--vw));
    padding: calc(10.4 * var(--vw)) 0 0 0;
  }
}
#TOP .sec-top .page-list__item > a {
  display: block;
}
#TOP .sec-top .page-list__item > a svg path {
  fill: #231815;
  transition: 0.3s;
  will-change: fill, clip-path;
}
@media only screen and (min-width: 751px) {
  #TOP .sec-top .page-list__item > a:hover svg path {
    fill: #fff;
  }
}
#TOP .sec-top .page-list__item > a:active svg path {
  fill: #fff;
}
#TOP .sec-top .page-list .text {
  position: relative;
  display: block;
  opacity: 0;
  transition: 0.3s;
  margin-bottom: calc(1.1346998536 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-top .page-list .text {
    margin-bottom: calc(2.9333333333 * var(--vw));
  }
}
#TOP .sec-top .page-list .text--01 {
  width: calc(9.6266105417 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-top .page-list .text--01 {
    width: calc(26.0511733333 * var(--vw));
  }
}
#TOP .sec-top .page-list .text--02 {
  width: calc(14.5040263543 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-top .page-list .text--02 {
    width: calc(39.2478533333 * var(--vw));
  }
}
#TOP .sec-top .page-list .text--03 {
  width: calc(12.764875549 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-top .page-list .text--03 {
    width: calc(34.5411466667 * var(--vw));
  }
}
#TOP .sec-top .page-list .img {
  position: relative;
  pointer-events: none;
}
#TOP .sec-top .page-list .img--01 {
  width: calc(17.8430014641 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-top .page-list .img--01 {
    width: calc(48.28516 * var(--vw));
  }
}
#TOP .sec-top .page-list .img--02 {
  width: calc(23.2164860908 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-top .page-list .img--02 {
    width: calc(62.8263066667 * var(--vw));
  }
}
#TOP .sec-top .page-list .img--03 {
  width: calc(21.6234260615 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-top .page-list .img--03 {
    width: calc(58.5152933333 * var(--vw));
  }
}
#TOP .sec-top .page-list .img ._off {
  transition: 0.3s;
  opacity: 1;
}
#TOP .sec-top .page-list .img ._on {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  opacity: 0;
}
#TOP .sec-top .page-list .img svg path {
  clip-path: inset(100% 0% 0% 0%);
}
#TOP .sec-works {
  padding: calc(7.3206442167 * var(--vw)) 0 calc(5.710102489 * var(--vw)) 0;
}
@media only screen and (max-width: 750px) {
  #TOP .sec-works {
    padding: calc(13.3333333333 * var(--vw)) 0 calc(16.2666666667 * var(--vw)) 0;
  }
}
#TOP .sec-works .orn-logo {
  position: absolute;
  top: calc(7.027818448 * var(--vw));
  right: calc(0.3660322108 * var(--vw));
  width: calc(26.0621961933 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-works .orn-logo {
    top: calc(12 * var(--vw));
    right: unset;
    left: calc(0.2666666667 * var(--vw));
    width: calc(12.5694533333 * var(--vw));
  }
}
@media only screen and (max-width: 750px) {
  #TOP .sec-works .sec__heading .img {
    transform: translateX(calc(-5.8666666667 * var(--vw)));
  }
}
#TOP .sec-works .lead-text {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.28em;
  margin: calc(4.831625183 * var(--vw)) 0 0 0;
  padding: 0 0 0 calc(0.9150805271 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-works .lead-text {
    font-size: 2.261rem;
    line-height: 1.7249004865;
    letter-spacing: 0.14em;
    text-align: center;
    margin: calc(5.3333333333 * var(--vw)) 0 0 0;
    padding: 0 0 0 0;
  }
}
#TOP .sec-works .border-box {
  border-top: 1px solid #55B4E6;
  border-bottom: 1px solid #55B4E6;
  width: calc(43.5486163982 * var(--vw));
  margin: calc(2.0497803807 * var(--vw)) 0 0 calc(0.878477306 * var(--vw));
  padding: 0 0 calc(1.6105417277 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-works .border-box {
    width: calc(66.1568666667 * var(--vw));
    margin: calc(3.2 * var(--vw)) auto 0;
    padding: calc(3.2 * var(--vw)) 0 calc(3.2 * var(--vw)) 0;
  }
}
#TOP .sec-works .border-box .heading {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.44em;
  padding: calc(1.6471449488 * var(--vw)) 0 0 calc(0.1464128843 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-works .border-box .heading {
    font-size: 2.654rem;
    text-align: center;
    letter-spacing: 0.44em;
    padding: 0 0 0 0;
  }
}
#TOP .sec-works .border-box .text {
  font-size: 1.5rem;
  line-height: 1.554;
  letter-spacing: 0.12em;
  font-weight: 400;
  padding: calc(0.7320644217 * var(--vw)) 0 0 calc(0.2196193265 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-works .border-box .text {
    font-size: 2.135rem;
    line-height: 1.5456674473;
    letter-spacing: 0.08em;
    text-align: center;
    padding: calc(2.4 * var(--vw)) 0 0 0;
  }
}
#TOP .sec-works .works-list {
  display: grid;
  grid-template-columns: repeat(4, calc(21.8887262079 * var(--vw)));
  gap: calc(1.5373352855 * var(--vw)) calc(1.1713030747 * var(--vw));
  margin: calc(3.074670571 * var(--vw)) 0 0 0;
}
@media only screen and (max-width: 750px) {
  #TOP .sec-works .works-list {
    grid-template-columns: repeat(2, calc(39.8294 * var(--vw)));
    gap: calc(6 * var(--vw)) calc(2.4 * var(--vw));
    margin: calc(4 * var(--vw)) 0 0 0;
    padding: 0 0 0 calc(1.8666666667 * var(--vw));
  }
}
#TOP .sec-works .works-list__item {
  position: relative;
}
@media only screen and (min-width: 751px) {
  #TOP .sec-works .works-list__item > a:hover img {
    transform: scale(1);
  }
}
#TOP .sec-works .works-list__item > a:active img {
  transform: scale(1.0526315789);
  filter: grayscale(100%);
}
#TOP .sec-works .works-list__item .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
#TOP .sec-works .works-list__item .img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: 0.3s;
  transform: scale(1.0526315789);
  margin: auto;
}
#TOP .sec-works .works-list__item .caption {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  margin: calc(0.7320644217 * var(--vw)) 0 0;
}
@media only screen and (max-width: 750px) {
  #TOP .sec-works .works-list__item .caption {
    font-size: 1.8rem;
    margin: calc(1.6 * var(--vw)) 0 0;
  }
}
#TOP .sec-company {
  padding: calc(7.3206442167 * var(--vw)) 0 calc(10.2122986823 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company {
    padding: calc(13.3333333333 * var(--vw)) 0 calc(16.8 * var(--vw)) 0;
  }
}
#TOP .sec-company .box {
  width: calc(39.4304538799 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .box {
    width: calc(75.7119733333 * var(--vw));
  }
}
#TOP .sec-company .box--01 {
  border-top: 1px solid #55B4E6;
  margin: calc(2.2693997072 * var(--vw)) 0 0;
  padding: 0 0 calc(1.9033674963 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .box--01 {
    margin: calc(2.6666666667 * var(--vw)) auto 0;
    padding: 0 0 0 0;
  }
}
#TOP .sec-company .box--02 {
  border-top: 1px solid #55B4E6;
  border-bottom: 1px solid #55B4E6;
  margin: 0 0 0;
  padding: calc(2.2693997072 * var(--vw)) 0 calc(1.9765739385 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .box--02 {
    margin: calc(5.6 * var(--vw)) auto 0;
    padding: calc(7.2 * var(--vw)) 0 calc(6.1333333333 * var(--vw)) 0;
  }
}
#TOP .sec-company .box--02 .company-name {
  padding: 0 0 0 calc(0.5856515373 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .box--02 .company-name {
    padding: 0 0 0 0;
  }
}
#TOP .sec-company .box--02 .company-name .img {
  width: calc(11.4456076135 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .box--02 .company-name .img {
    width: calc(33.8546666667 * var(--vw));
    margin: 0 auto;
  }
}
#TOP .sec-company .box--02 .table {
  margin: calc(0.878477306 * var(--vw)) 0 0 0;
  padding: 0 0 0 calc(0.6588579795 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .box--02 .table {
    margin: calc(3.4666666667 * var(--vw)) 0 0 0;
    padding: 0 0 0 0;
  }
}
#TOP .sec-company .box--02 .table__row {
  display: grid;
  grid-template-columns: calc(7.7598828697 * var(--vw)) 1fr;
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .box--02 .table__row {
    grid-template-columns: calc(16 * var(--vw)) 1fr;
  }
}
#TOP .sec-company .box--02 .table__row + .table__row {
  margin: calc(0.5124450952 * var(--vw)) 0 0 0;
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .box--02 .table__row + .table__row {
    margin: calc(2.8 * var(--vw)) 0 0 0;
  }
}
#TOP .sec-company .box--02 .table__title {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  font-weight: 500;
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .box--02 .table__title {
    font-size: 1.9rem;
    line-height: 1.5789473684;
    padding: 0 0 0 calc(1.3333333333 * var(--vw));
  }
}
#TOP .sec-company .box--02 .table__title .kerning--01 {
  letter-spacing: 0.62em;
}
#TOP .sec-company .box--02 .table__title .kerning--02 {
  letter-spacing: 1.2em;
}
#TOP .sec-company .box--02 .table__title .kerning--03 {
  letter-spacing: 1.14em;
}
#TOP .sec-company .box--02 .table__title .kerning--04 {
  letter-spacing: 1em;
}
#TOP .sec-company .box--02 .table__title .kerning--05 {
  letter-spacing: 0.12em;
}
#TOP .sec-company .box--02 .table__title .kerning--06 {
  letter-spacing: 0.64em;
}
#TOP .sec-company .box--02 .table__title .kerning--07 {
  letter-spacing: 0.1em;
}
#TOP .sec-company .box--02 .table__title .kerning--08 {
  letter-spacing: 0.02em;
}
#TOP .sec-company .box--02 .table__title .kerning--09 {
  letter-spacing: 1em;
}
#TOP .sec-company .box--02 .table__data {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  font-weight: 500;
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .box--02 .table__data {
    font-size: 1.9rem;
    line-height: 1.5789473684;
  }
}
#TOP .sec-company .box--02 .table__data .kerning--01 {
  letter-spacing: 0.18em;
}
#TOP .sec-company .box--02 .table__data .kerning--02 {
  letter-spacing: 0.28em;
}
#TOP .sec-company .box--02 .table__data .kerning--03 {
  letter-spacing: 0.2em;
}
#TOP .sec-company .box--02 .table__data .kerning--04 {
  letter-spacing: 0.16em;
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .box--02 .table__data .kerning-sp--01 {
    letter-spacing: 0.1em;
  }
}
#TOP .sec-company .name-box {
  padding: calc(2.1229868228 * var(--vw)) 0 0 calc(0.3660322108 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .name-box {
    padding: calc(6.6666666667 * var(--vw)) 0 0 0;
  }
}
#TOP .sec-company .name-box .name {
  font-size: 2.785rem;
  line-height: 1;
  letter-spacing: 0.34em;
  font-weight: 700;
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .name-box .name {
    font-size: 3.829rem;
    text-align: center;
  }
}
#TOP .sec-company .name-box .name--en {
  font-size: 1.044rem;
  line-height: 1;
  letter-spacing: 0.34em;
  font-weight: 500;
  margin-top: calc(0.5124450952 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .name-box .name--en {
    font-size: 1.436rem;
    text-align: center;
    margin-top: calc(1.3333333333 * var(--vw));
  }
}
#TOP .sec-company .name-box .post {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-top: calc(0.439238653 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .name-box .post {
    font-size: 1.9rem;
    text-align: center;
    margin-top: calc(1.6 * var(--vw));
  }
}
#TOP .sec-company .history-box {
  margin: calc(1.4641288433 * var(--vw)) 0 0 0;
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .history-box {
    margin: calc(6.4 * var(--vw)) 0 0 0;
  }
}
#TOP .sec-company .history-box .history-list {
  display: grid;
  grid-template-columns: calc(6.8814055637 * var(--vw)) 1fr;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  letter-spacing: 0.18em;
  font-weight: 500;
  padding: 0 0 0 calc(0.5124450952 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .history-box .history-list {
    grid-template-columns: calc(14.4 * var(--vw)) 1fr;
    font-size: 1.8rem;
    line-height: 1.8333333333;
    letter-spacing: 0.1em;
    padding: 0 0 0 0;
  }
}
#TOP .sec-company .certification-box {
  margin: calc(0.5124450952 * var(--vw)) 0 0 0;
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .certification-box {
    margin: calc(2.6666666667 * var(--vw)) 0 0 0;
  }
}
#TOP .sec-company .certification-box .certification-list {
  display: grid;
  grid-template-columns: calc(6.8814055637 * var(--vw)) 1fr;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.2em;
  font-weight: 500;
  padding: 0 0 0 calc(0.5124450952 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-company .certification-box .certification-list {
    grid-template-columns: calc(14.4 * var(--vw)) 1fr;
    font-size: 1.8rem;
    line-height: 1.8333333333;
    letter-spacing: 0.1em;
    padding: 0 0 0 0;
  }
}
#TOP .sec-company .certification-box .certification-list__term {
  letter-spacing: 1em;
}
#TOP .sec-contact {
  padding: calc(7.3206442167 * var(--vw)) 0 calc(12.9575402635 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-contact {
    padding: calc(13.3333333333 * var(--vw)) 0 calc(29.8666666667 * var(--vw));
  }
}
#TOP .sec-contact .btn-box {
  margin: calc(7.1010248902 * var(--vw)) 0 0;
  padding: 0 0 0 calc(13.9824304539 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-contact .btn-box {
    margin: calc(11.4666666667 * var(--vw)) 0 0;
    padding: 0 0 0 0;
  }
}
#TOP .sec-contact .btn-box .btn-contact {
  display: flex;
  align-items: center;
  background: #13AE67;
  aspect-ratio: 564.0295/57.4477;
  border-radius: calc(0.2196193265 * var(--vw));
  box-shadow: calc(0.439238653 * var(--vw)) calc(0.3660322108 * var(--vw)) calc(0.6222547584 * var(--vw)) #D4D3D2;
  transition: 0.3s;
  width: calc(41.2905929722 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-contact .btn-box .btn-contact {
    aspect-ratio: 497.8518/63.7523;
    border-radius: calc(0.8 * var(--vw));
    box-shadow: calc(0.8 * var(--vw)) calc(0.6666666667 * var(--vw)) calc(1.1333333333 * var(--vw)) #D4D3D2;
    width: calc(66.38024 * var(--vw));
    margin: 0 auto;
  }
}
@media only screen and (min-width: 751px) {
  #TOP .sec-contact .btn-box .btn-contact:hover {
    background: #221714;
  }
}
#TOP .sec-contact .btn-box .btn-contact:active {
  background: #D0DCDF;
}
#TOP .sec-contact .btn-box .btn-contact:active > span {
  color: #231815;
}
#TOP .sec-contact .btn-box .btn-contact > span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(1.9033674963 * var(--vw));
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.34em;
  padding: 0 0 0 calc(4.1727672035 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-contact .btn-box .btn-contact > span {
    gap: calc(3.4666666667 * var(--vw));
    padding: 0 0 0 calc(2.1333333333 * var(--vw));
  }
}
#TOP .sec-contact .btn-box .btn-contact > span img {
  width: calc(3.3116617862 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .sec-contact .btn-box .btn-contact > span img {
    width: calc(6.03164 * var(--vw));
  }
}
#TOP .layer-bg {
  position: absolute;
  top: calc(1.317715959 * var(--vw));
  left: calc(1.0980966325 * var(--vw));
  aspect-ratio: 1197.5523/714.9187;
  width: calc(87.6685431918 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #TOP .layer-bg {
    top: calc(89.8666666667 * var(--vw));
    left: calc(-17.0666666667 * var(--vw));
    width: calc(135.2989866667 * var(--vw));
  }
}
#TOP .layer-bg .bg {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
#TOP .layer-bg .obj {
  position: absolute;
  opacity: 0;
  transition: 0.3s;
}
#TOP .opening {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: #fff;
  width: 100%;
  height: 100%;
}
#TOP .opening__bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #55B4E6;
  width: calc(8.9007540264 * var(--vw));
  height: 100%;
}
@media only screen and (max-width: 750px) {
  #TOP .opening__bar {
    width: calc(16.21124 * var(--vw));
  }
}
#TOP .opening__logo {
  position: absolute;
  top: calc(18.6676427526 * var(--vw));
  right: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  width: calc(26.6725329429 * var(--vw));
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  #TOP .opening__logo {
    top: calc(59.7333333333 * var(--vw));
    transform: translateX(calc(8 * var(--vw)));
    width: calc(69.65536 * var(--vw));
  }
}
#TOP .opening__copyright {
  position: absolute;
  top: calc(53.0014641288 * var(--vw));
  right: 0;
  left: 0;
  opacity: 0;
  width: calc(19.7049341142 * var(--vw));
  margin: 0 auto;
}

.modal-works {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transform: translateX(-100%);
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
body.is-open--modal .modal-works {
  transform: translateX(0%);
}
.modal-works__overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  width: 100%;
  height: 100%;
}
.modal-works .btn-close--modal {
  position: relative;
  z-index: 2;
  background: rgba(178, 217, 238, 0.9);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1;
  width: calc(8.9007540264 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .modal-works .btn-close--modal {
    width: calc(16.21124 * var(--vw));
  }
}
.modal-works .btn-close--modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #231815;
  animation: hamburgerOff 0.3s forwards;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 751px) {
  .modal-works .btn-close--modal:hover::before {
    animation: hamburgerOn 0.3s forwards;
  }
}
.modal-works .btn-close--modal:active::before {
  animation: hamburgerOn 0.3s forwards;
}
.modal-works .btn-close--modal span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #55B4E6;
  pointer-events: none;
  width: calc(3.1132210835 * var(--vw));
  height: calc(0.2196193265 * var(--vw));
  margin: auto;
}
@media only screen and (max-width: 750px) {
  .modal-works .btn-close--modal span {
    width: calc(5.6702133333 * var(--vw));
    height: calc(0.4 * var(--vw));
  }
}
.modal-works .btn-close--modal span:nth-of-type(1) {
  transform: rotate(45deg);
}
.modal-works .btn-close--modal span:nth-of-type(2) {
  transform: rotate(-45deg);
}
.modal-works__container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(85, 180, 230, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 0 calc(19.4729136164 * var(--vw)) 0;
  width: calc(67.3881991215 * var(--vw));
  height: calc(50.3482869693 * var(--vw));
  padding: 0 0 0 calc(14.3850658858 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .modal-works__container {
    justify-content: flex-start;
    border-radius: 0 0 calc(35.4666666667 * var(--vw)) 0;
    width: calc(94.76776 * var(--vw));
    height: calc(101.22072 * var(--vw));
    padding: calc(11.4666666667 * var(--vw)) 0 0 calc(16.21124 * var(--vw));
  }
}
.modal-works__heading {
  position: relative;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.28em;
  margin-bottom: calc(2.0131771596 * var(--vw));
  padding: 0 0 0 calc(4.4352855051 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .modal-works__heading {
    font-size: 1.94rem;
    margin-bottom: calc(3.7333333333 * var(--vw));
    margin-left: calc(3.3333333333 * var(--vw));
    padding: 0 0 0 calc(6.87676 * var(--vw));
  }
}
.modal-works__heading::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: url(../img/orn_modal_works_heading_01.svg) no-repeat 0 0/100% auto;
  aspect-ratio: 41.2422/35.9108;
  width: calc(3.0191947291 * var(--vw));
  margin: auto 0;
}
@media only screen and (max-width: 750px) {
  .modal-works__heading::before {
    width: calc(5.0810266667 * var(--vw));
  }
}
.modal-works .img-box {
  display: grid;
  grid-template-columns: calc(23.9950439239 * var(--vw)) calc(15.658806735 * var(--vw));
  grid-template-rows: repeat(2, 1fr);
  gap: calc(0.9245534407 * var(--vw)) calc(0.8052708638 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .modal-works .img-box {
    grid-template-columns: calc(44.3442666667 * var(--vw)) calc(28.9384 * var(--vw));
    gap: calc(1.9826133333 * var(--vw)) calc(1.48952 * var(--vw));
  }
}
.modal-works .img-box .img:nth-of-type(1) {
  grid-area: 1/1/3/2;
}
.modal-works .img-box .img:nth-of-type(2) {
  grid-area: 1/2/2/3;
}
.modal-works .img-box .img:nth-of-type(3) {
  grid-area: 2/2/3/3;
}
.modal-works .img-box.type--02 {
  grid-template-columns: repeat(2, calc(15.658806735 * var(--vw)));
  grid-template-rows: calc(23.9950439239 * var(--vw)) calc(15.4442093704 * var(--vw));
  gap: calc(1.1367423133 * var(--vw)) calc(1.6024304539 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .modal-works .img-box.type--02 {
    grid-template-columns: repeat(2, calc(28.0891066667 * var(--vw)));
    grid-template-rows: calc(43.04284 * var(--vw)) calc(27.7041733333 * var(--vw));
    gap: calc(2.03912 * var(--vw)) calc(2.8744666667 * var(--vw));
  }
}
.modal-works .img-box.type--02 .img:nth-of-type(1) {
  grid-area: 1/1/2/3;
  width: calc(32.9200366032 * var(--vw));
}
@media only screen and (max-width: 750px) {
  .modal-works .img-box.type--02 .img:nth-of-type(1) {
    width: calc(59.0526933333 * var(--vw));
  }
}
.modal-works .img-box.type--02 .img:nth-of-type(2) {
  grid-area: 2/1/3/2;
}
.modal-works .img-box.type--02 .img:nth-of-type(3) {
  grid-area: 2/2/3/3;
}
.modal-works .img-box.type--03 .img:nth-of-type(2) {
  grid-area: 2/2/3/3;
}

#CONTACT .header .btn-close--contact {
  position: relative;
  z-index: 2;
  display: block;
  background: rgba(178, 217, 238, 0.9);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1;
  width: calc(8.9007540264 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #CONTACT .header .btn-close--contact {
    width: calc(16.21124 * var(--vw));
  }
}
#CONTACT .header .btn-close--contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #231815;
  pointer-events: none;
  animation: hamburgerOff 0.3s forwards;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 751px) {
  #CONTACT .header .btn-close--contact:hover::before {
    animation: hamburgerOn 0.3s forwards;
  }
}
#CONTACT .header .btn-close--contact:active::before {
  animation: hamburgerOn 0.3s forwards;
}
#CONTACT .header .btn-close--contact span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #55B4E6;
  pointer-events: none;
  width: calc(3.1132210835 * var(--vw));
  height: calc(0.2196193265 * var(--vw));
  margin: auto;
}
@media only screen and (max-width: 750px) {
  #CONTACT .header .btn-close--contact span {
    width: calc(5.6702133333 * var(--vw));
    height: calc(0.4 * var(--vw));
  }
}
#CONTACT .header .btn-close--contact span:nth-of-type(1) {
  transform: rotate(45deg);
}
#CONTACT .header .btn-close--contact span:nth-of-type(2) {
  transform: rotate(-45deg);
}
#CONTACT .sec__in {
  padding: 0 0 0 calc(16.5370058565 * var(--vw));
}
@media only screen and (max-width: 750px) {
  #CONTACT .sec__in {
    padding: 0 0 0 0;
  }
}
#CONTACT .sec-contact {
  min-height: 100%;
  padding: calc(6.588579795 * var(--vw)) 0;
}
@media only screen and (max-width: 750px) {
  #CONTACT .sec-contact {
    background: #E7EAF6;
    padding: calc(5.3333333333 * var(--vw));
  }
}
#CONTACT #formWrap {
  background: #fff;
  max-width: 820px;
}
@media only screen and (max-width: 750px) {
  #CONTACT #formWrap {
    width: 100%;
    margin: 0 auto;
    padding: calc(4 * var(--vw));
  }
}
#CONTACT #formWrap > .in {
  width: 100%;
  margin: 0 auto;
}
#CONTACT #formWrap.thanksArea {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 240px;
}
#CONTACT #formWrap.thanksArea + .btn-prev {
  max-width: 820px;
}
#CONTACT h3 {
  color: #0f68b1;
  font-size: 1.6rem;
  line-height: 20px;
  margin-bottom: 10px;
  padding: 0;
}
@media only screen and (max-width: 750px) {
  #CONTACT h3 {
    font-size: 3.2rem;
    margin-bottom: 2.6666666667vw;
  }
}
#CONTACT h3 + p {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media only screen and (max-width: 750px) {
  #CONTACT h3 + p {
    font-size: 2.6rem;
    margin-bottom: 4vw;
  }
}
#CONTACT .errorArea {
  border: 2px solid #f00;
  margin: 15px auto;
  padding: 15px;
}
#CONTACT .errorArea .title {
  color: #f00;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media only screen and (max-width: 750px) {
  #CONTACT .errorArea .title {
    font-size: 2.6rem;
  }
}
#CONTACT .errorArea ul {
  color: #f00;
  font-size: 1.3rem;
}
@media only screen and (max-width: 750px) {
  #CONTACT .errorArea ul {
    font-size: 2.4rem;
  }
}
#CONTACT .errorArea ul li::before {
  content: "・";
}
#CONTACT .errorArea ul li:not(:first-of-type) {
  margin-top: 5px;
}
#CONTACT .errorArea .error {
  color: #f00;
  margin-top: 5px;
}
#CONTACT table.formTable {
  width: calc(43.5486163982 * var(--vw));
  margin: 0 0 0;
  border-collapse: collapse;
}
@media only screen and (max-width: 750px) {
  #CONTACT table.formTable {
    display: block;
    width: 100%;
  }
  #CONTACT table.formTable tbody {
    display: block;
  }
  #CONTACT table.formTable tr {
    display: block;
  }
}
#CONTACT table.formTable td,
#CONTACT table.formTable th {
  font-size: 1.2rem;
  border: 1px solid #fff;
  padding: 10px;
}
@media only screen and (max-width: 750px) {
  #CONTACT table.formTable td,
  #CONTACT table.formTable th {
    display: block;
    font-size: 2.4rem;
  }
}
#CONTACT table.formTable th {
  width: 30%;
  font-weight: 700;
  background: #e9e9e9;
  text-align: left;
}
@media only screen and (max-width: 750px) {
  #CONTACT table.formTable th {
    width: 100%;
  }
}
#CONTACT table.formTable td {
  background: #efefef;
}
@media only screen and (max-width: 750px) {
  #CONTACT table.formTable td {
    width: 100%;
  }
}
#CONTACT table.formTable td span {
  display: block;
  margin: 0.5em 0;
}
#CONTACT table.formTable td .error {
  color: #f00;
}
#CONTACT input[type=text],
#CONTACT textarea {
  background: #fff;
  color: #231815;
  line-height: 1.5;
  border: 1px solid rgb(118, 118, 118);
  width: 100%;
  padding: 4px;
}
@media only screen and (max-width: 750px) {
  #CONTACT input[type=text],
  #CONTACT textarea {
    font-size: 3.2rem;
    -webkit-appearance: none;
    border-radius: 0;
    max-width: 100%;
  }
}
#CONTACT input[type=submit],
#CONTACT input[type=reset] {
  background: #efefef;
  color: #231815;
  font-size: 1.3rem;
  border: 1px solid rgb(118, 118, 118);
  border-radius: 3px;
  margin-top: 10px;
  padding: 5px 10px;
}
@media only screen and (max-width: 750px) {
  #CONTACT input[type=submit],
  #CONTACT input[type=reset] {
    -webkit-appearance: none;
    font-size: 2.4rem;
  }
}
#CONTACT .btnArea {
  text-align: left;
}
@media only screen and (max-width: 750px) {
  #CONTACT .btnArea {
    text-align: center;
  }
}
#CONTACT .btn-prev {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
#CONTACT .btn-prev a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-size: 1.2rem;
  border-radius: 30px;
  aspect-ratio: 74/27;
  border: 1px solid #231815;
  width: 74px;
}
@media only screen and (max-width: 750px) {
  #CONTACT .btn-prev a {
    font-size: 2.2rem;
  }
}
#CONTACT .thanksText {
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #CONTACT .thanksText {
    font-size: 2.6rem;
  }
}
#CONTACT form.inline {
  display: inline-block;
}

/*# sourceMappingURL=style.css.map */
