@charset "UTF-8";
/* 機能とパーツごとに分けたscssファイルをcssファイルにコンパイル */
/* function
------------------------------------------------ */
/* setting
------------------------------------------------ */
/* スマホ：~519px
　 タブレット：520px~959px
　 パソコン：960px~ */
html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
}

body {
  /* bodyの基本サイズを設定 */
  /* 14px at 375px viewport → 16px at 1400px viewport */
  font-size: clamp(1.4rem, 1.3268rem + 0.1951vw, 1.6rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: 1.8125;
}

/* foundation
------------------------------------------------ */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

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

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

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

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

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

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

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;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

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

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

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

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

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

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

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

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

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

html {
  overflow-x: hidden;
}

body {
  /* background-image: url(../images/common/bg_body.png); */
  background-size: 100% auto;
  background-repeat: repeat;
}
@media screen and (max-width: 959px) {
  body {
    background-size: cover;
  }
}
body {
  /* 印刷禁止 */
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

img {
  font-size: 0;
  vertical-align: bottom;
  max-width: 100%;
  /* PCの右クリック禁止 */
  /* SPの長押し禁止 */
}

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

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

.br-tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .br-tab {
    display: block;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .br-sp {
    display: block;
  }
}

.nonbr-tab {
  display: block;
}
@media screen and (max-width: 959px) {
  .nonbr-tab {
    display: none;
  }
}

.nonbr-sp {
  display: block;
}
@media screen and (max-width: 519px) {
  .nonbr-sp {
    display: none;
  }
}

.link-disable {
  pointer-events: none;
  background-color: #aaa !important;
}

@media screen and (max-width: 519px) {
  .sptop {
    overflow: hidden;
  }
}

.space-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .space-sp {
    display: inline-block;
  }
}

.anchor {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 519px) {
  .anchor {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}

/* layout
------------------------------------------------ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

/*　上に上がる動き　*/
.l-header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
/*　下に下がる動き　*/
.l-header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-inner {
  margin: 0 auto;
  max-width: 120rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1240px) {
  .l-inner {
    padding: 0 2rem;
  }
}
.l-inner--1020 {
  max-width: 1020px;
}

@media screen and (max-width: 959px) {
  .l-inner--page-header {
    padding: 0;
  }
}

.l-main {
  margin-top: 10.4rem;
}
@media screen and (max-width: 1240px) {
  .l-main {
    margin-top: 8.4vw;
  }
}
@media screen and (max-width: 519px) {
  .l-main {
    margin-top: 5.6rem;
  }
}

.l-footer {
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  .l-footer {
    margin-top: 0;
  }
}
@media screen and (max-width: 519px) {
  .l-footer {
    margin-top: 3rem;
  }
}

/* component
------------------------------------------------ */
.c-header {
  background-color: #fff;
}

.c-header--page {
  border-bottom: 0.1rem solid #b5b5b6;
}

.c-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  min-height: 5.6rem;
}
.c-header__logo {
  width: 30%;
  max-width: 38rem;
}
@media screen and (max-width: 959px) {
  .c-header__logo {
    width: 70%;
  }
}

.c-header__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
}
@media screen and (max-width: 519px) {
  .c-header__menus {
    display: none;
  }
}

.c-header__menu {
  aspect-ratio: 15/12;
  width: 10.5vw;
  max-width: 13rem;
  height: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 1.12em;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: solid 5px white;
}
@media screen and (max-width: 959px) {
  .c-header__menu {
    font-size: 1em;
    letter-spacing: 0;
  }
}
.c-header__menu:hover {
  opacity: 1;
  border-bottom: solid 5px #ec6c00;
}

.c-header__menu--contact:hover {
  opacity: 0.8;
}

.c-header__hamburger {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  aspect-ratio: 1;
  width: 5.6rem;
  height: auto;
  cursor: pointer;
  background-color: #81c0e9;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 519px) {
  .c-header__hamburger {
    display: block;
  }
}

.c-header__hamburger-border {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__hamburger-border--top {
  top: calc(50% - 7.5px);
}

.c-header__hamburger-border--bottom {
  top: calc(50% + 7.5px);
}

.c-header__hamburger--open .c-header__hamburger-border--top {
  top: calc(50% - 7.5px + 7.5px);
  -webkit-transform: translate(-50%, -50%) rotate(-225deg);
          transform: translate(-50%, -50%) rotate(-225deg);
}
.c-header__hamburger--open .c-header__hamburger-border--middle {
  opacity: 0;
}
.c-header__hamburger--open .c-header__hamburger-border--bottom {
  top: calc(50% + 7.5px - 7.5px);
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
          transform: translate(-50%, -50%) rotate(225deg);
}

.c-header__insta-sp {
  display: none;
  position: absolute;
  top: 7rem;
  right: 1.6rem;
  width: 2.4rem;
}
@media screen and (max-width: 519px) {
  .c-header__insta-sp {
    display: block;
  }
}

.c-header__drawer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100lvh;
  background-color: transparent;
  opacity: 0.5;
  z-index: 40;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__drawer-modal--open {
  display: block;
}

.c-header__drawer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
  padding: 2.4rem;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  color: white;
  background-color: #81c0e9;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
}
.c-header__drawer::-webkit-scrollbar {
  width: 0.5rem;
}
.c-header__drawer::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.c-header__drawer::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

.c-header__drawer--open {
  opacity: 1;
  visibility: visible;
}

.c-header__drawer-logo {
  width: 60%;
}

.c-header__drawer-menus {
  padding-top: 2rem;
  padding-left: 4.5rem;
}

.c-header__drawer-menu {
  display: block;
  margin-top: 2.2rem;
  font-size: 5.5vw;
  font-weight: 500;
  line-height: 1;
}
.c-header__drawer-menu small {
  display: block;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.7;
}

.c-global {
  width: 100%;
  border-bottom: solid 1px #b5b5b6;
}

.c-global__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 519px) {
  .c-global__container {
    margin-left: -2rem;
    width: calc(100% + 4rem);
  }
}

.c-global__menu {
  width: 16.6666666667%;
  height: 10rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: clamp(1.25rem, 1.0488rem + 0.5366vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  border-left: 1rem solid white;
}
@media screen and (max-width: 959px) {
  .c-global__menu {
    height: 8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-global__menu {
    width: 20%;
    height: 6rem;
    letter-spacing: 0;
    border-left-width: 0.4rem;
  }
}
.c-global__menu small {
  display: block;
  font-size: 0.72em;
  font-weight: bold;
  letter-spacing: 0;
}
.c-global__menu:hover {
  opacity: 1;
  border-left-color: #fdeabe;
}

@media screen and (max-width: 519px) {
  .c-global__menu--home {
    display: none;
  }
}

.c-head01 {
  margin: 0 auto 0;
  font-size: clamp(2.3rem, 1.861rem + 1.1707vw, 3.5rem);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.c-head03 {
  line-height: 1.6;
}

.c-head03--header {
  padding: 4rem 0;
}
@media screen and (max-width: 519px) {
  .c-head03--header {
    padding: 3rem 0;
  }
}

.c-head03__title {
  font-size: clamp(3rem, 2.4512rem + 1.4634vw, 4.5rem);
  letter-spacing: 0.1em;
  color: #ec6c00;
  letter-spacing: 0;
}

.c-head03__en {
  font-weight: bold;
}
.c-head03__en::before {
  content: "";
  display: inline-block;
  margin-right: 0.7rem;
  width: 10rem;
  height: 0.2rem;
  vertical-align: middle;
  background-color: #000;
}
@media screen and (max-width: 519px) {
  .c-head03__en::before {
    width: 8rem;
  }
}

.c-btn {
  display: block;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  letter-spacing: 0;
}
.c-btn::after {
  content: "";
  display: inline-block;
  margin-left: 1rem;
  aspect-ratio: 1;
  width: 4.5vw;
  max-width: 4.3rem;
  height: auto;
  vertical-align: middle;
  background-image: url(../images/common/btn.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-btn::after {
    margin: 0 0 0.5rem 1rem;
    width: 14vw;
  }
}

.c-footer {
  margin-top: 10rem;
}
@media screen and (max-width: 519px) {
  .c-footer {
    margin-top: 7rem;
  }
}

.c-footer__container--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1110px) {
  .c-footer__container--top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem 3rem;
  }
}

.c-footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem 5rem;
}
@media screen and (max-width: 1110px) {
  .c-footer__main {
    display: block;
  }
}

.c-footer__main--top {
  display: block;
}

.c-footer__logo {
  width: clamp(22rem, 28vw, 40rem);
  max-width: 100%;
}
@media screen and (max-width: 1110px) {
  .c-footer__logo {
    margin: 0 auto;
  }
}

.c-footer__address {
  margin-top: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1110px) {
  .c-footer__address {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
  }
}
.c-footer__tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2rem;
  margin-top: 0.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 1110px) {
  .c-footer__tels {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__tels {
    display: block;
    text-align: center;
  }
}

.c-footer__tel {
  font-size: clamp(3rem, 2.4512rem + 1.4634vw, 4.5rem);
  font-weight: bold;
}
.c-footer__tel small {
  font-size: 0.7em;
}

.c-footer__fax {
  display: block;
  font-size: clamp(2.5rem, 2.3171rem + 0.4878vw, 3rem);
  font-weight: bold;
}
.c-footer__fax small {
  font-size: 0.7em;
}

.c-footer__map {
  width: 50%;
  max-width: 57.5rem;
}
@media screen and (max-width: 519px) {
  .c-footer__map {
    width: 100%;
  }
}
.c-footer__map iframe {
  aspect-ratio: 575/375;
  width: 100%;
  height: auto;
}

.c-footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .c-footer__menus {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__menus {
    margin-top: 1.5rem;
  }
}

.c-footer__menu {
  padding: 0 2.3rem;
  line-height: 1;
  letter-spacing: 0.2em;
  border-left: solid 1px black;
}
@media screen and (max-width: 959px) {
  .c-footer__menu {
    padding: 0 2vw;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 640px) {
  .c-footer__menu {
    margin: 1.5rem 0 0;
    width: 50%;
    text-align: center;
    line-height: 1.3;
  }
}
@media screen and (max-width: 640px) {
  .c-footer__menu:nth-child(2n) {
    border-right: solid 1px black;
  }
}
.c-footer__menu:last-child {
  border-right: solid 1px black;
}

.c-footer__copyright {
  margin-top: 3rem;
  padding: 1.7rem 1rem;
  font-size: clamp(1rem, 0.8902rem + 0.2927vw, 1.3rem);
  background-color: #81c0e9;
  color: white;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 519px) {
  .c-footer__copyright {
    letter-spacing: 0;
  }
}

.c-page-header {
  position: relative;
  padding-bottom: 5rem;
}
@media screen and (max-width: 519px) {
  .c-page-header {
    padding-bottom: 4rem;
  }
}

.c-page-header--contact {
  padding-top: 4rem;
}
@media screen and (max-width: 519px) {
  .c-page-header--contact {
    padding-top: 3.5rem;
  }
}

.c-page-header__head {
  position: absolute;
  bottom: 9.6rem;
  left: calc(50vw - 60rem + 8rem);
  z-index: 5;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  .c-page-header__head {
    left: 7vw;
  }
}
@media screen and (max-width: 519px) {
  .c-page-header__head {
    bottom: 4rem;
    left: 0;
    padding: 0.5rem 2rem 0;
    line-height: 1.2;
    background-color: #fff;
  }
}

.c-page-header__head--contact {
  position: initial;
}

.c-page-header__title {
  font-size: clamp(1.8rem, 0.8122rem + 4.2146vw, 4.5rem);
}
@media screen and (max-width: 959px) {
  .c-page-header__title {
    font-size: clamp(1.8rem, 0.9951rem + 3.4341vw, 4rem);
  }
}

.c-page-header__en {
  margin-top: 1rem;
  font-size: 1.12em;
  font-weight: bold;
}
@media screen and (max-width: 519px) {
  .c-page-header__en {
    margin-top: 0.5rem;
  }
}
.c-page-header__en::before {
  content: "";
  display: inline-block;
  margin-right: 0.7rem;
  width: 17vw;
  max-width: 12rem;
  height: 0.2rem;
  vertical-align: middle;
  background-color: #000;
}

.c-page-header__img {
  display: block;
  position: relative;
  margin: 0 0 0 auto;
  width: min(80rem, 58vw);
}
@media screen and (max-width: 519px) {
  .c-page-header__img {
    width: 100%;
  }
}
.c-page-header__img img {
  width: 100%;
}

.c-page-header__deco01 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  aspect-ratio: 321/262;
  width: 40%;
  height: auto;
  background-image: url(../images/page-header/page-header_deco01.png);
  background-size: contain;
}

.c-page-header__deco02::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  aspect-ratio: 431/350;
  width: auto;
  height: 100%;
  background-image: url(../images/page-header/page-header_deco02.png);
  mix-blend-mode: multiply;
}
.c-page-header__deco02::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  aspect-ratio: 431/350;
  width: auto;
  height: 50%;
  background-image: url(../images/page-header/page-header_deco03.png);
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin: 7rem auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 959px) {
  .c-pagination {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 519px) {
  .c-pagination {
    margin-top: 5rem;
  }
}
.c-pagination .page-numbers {
  display: inline-block;
  aspect-ratio: 1;
  width: 2.7rem;
  height: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1;
  border: 0.1rem solid #000;
}
.c-pagination .page-numbers:hover {
  color: white;
  background-color: #81c0e9;
  opacity: 1;
  border: none;
}
.c-pagination .page-numbers.current {
  color: white;
  background-color: #81c0e9;
  pointer-events: none;
  border: none;
}
.c-pagination .prev, .c-pagination .next {
  padding: 0;
}

.c-point {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0;
}
.c-point::before {
  content: "●";
  margin-right: 0.3rem;
  color: #81c0e9;
  font-size: 0.9em;
}

.c-frame {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.c-frame__01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
}
@media screen and (max-width: 519px) {
  .c-frame__01 {
    width: 55%;
  }
}

.c-frame__02 {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  width: 21%;
}
@media screen and (max-width: 519px) {
  .c-frame__02 {
    width: 35%;
  }
}

.c-frame__03 {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16%;
}
@media screen and (max-width: 519px) {
  .c-frame__03 {
    bottom: 0;
    width: 35%;
  }
}

.c-frame__04 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34%;
}
@media screen and (max-width: 519px) {
  .c-frame__04 {
    width: 55%;
  }
}

.c-contact__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 5rem;
  padding: 2.5rem 0 3rem;
  border-top: dashed 2px #898989;
}
@media screen and (max-width: 519px) {
  .c-contact__message {
    display: block;
    border-width: 1px;
  }
}
.c-contact__message span {
  width: 100%;
  max-width: 45.4rem;
}
.c-contact__message .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  color: #ec6c00;
  font-weight: bold;
  font-size: clamp(3rem, 2.4512rem + 1.4634vw, 4.5rem);
  line-height: 1;
}
.c-contact__message .tel img {
  width: 4.5rem;
  min-width: 3rem;
}
@media screen and (max-width: 959px) {
  .c-contact__message .tel img {
    width: 5vw;
  }
}

.c-contact__require span {
  color: #e60012;
}

.c-contact__form {
  margin: -14rem auto 0;
  padding-top: 14.5rem;
}
@media screen and (max-width: 959px) {
  .c-contact__form {
    margin: -18rem auto 0;
    padding-top: 18.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-contact__form {
    margin: -10rem auto 0;
    padding-top: 10.5rem;
  }
}

.c-contact__input {
  display: block;
}

.c-contact__confirm {
  display: none;
}

.c-contact__table {
  width: 100%;
  border-collapse: collapse;
}
.c-contact__table th, .c-contact__table td {
  font-weight: 400;
  border-top: dashed 2px #666;
  border-bottom: dashed 2px #666;
}
@media screen and (max-width: 519px) {
  .c-contact__table th, .c-contact__table td {
    display: block;
    border-width: 1px;
  }
}
.c-contact__table th {
  padding: 4.5rem 0;
  width: 22%;
  max-width: 100%;
}
@media screen and (max-width: 519px) {
  .c-contact__table th {
    padding: 3rem 0 1rem;
    width: 100%;
    border-bottom: none;
  }
}
.c-contact__table th span {
  color: #e60012;
}
.c-contact__table td {
  padding: 4.5rem 0;
  width: 78%;
  max-width: 100%;
}
@media screen and (max-width: 519px) {
  .c-contact__table td {
    padding: 0 0 3rem;
    width: 100%;
    border: none;
  }
}
@media screen and (max-width: 519px) {
  .c-contact__table tr:last-child td {
    border-bottom-width: 1px;
    border-bottom-style: dashed;
  }
}
.c-contact__table input[type=text],
.c-contact__table input[type=email],
.c-contact__table input[type=tel],
.c-contact__table textarea,
.c-contact__table select {
  padding: 0.8rem 1rem;
  max-width: 100%;
  max-height: 18rem;
  background-color: #fff;
  border: solid 0.5px #898989;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 519px) {
  .c-contact__table input[type=text],
  .c-contact__table input[type=email],
  .c-contact__table input[type=tel],
  .c-contact__table textarea,
  .c-contact__table select {
    width: 100%;
  }
}
.c-contact__table input[type=text]:focus,
.c-contact__table input[type=email]:focus,
.c-contact__table input[type=tel]:focus,
.c-contact__table textarea:focus,
.c-contact__table select:focus {
  border-width: 2px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.c-contact__table select {
  padding-right: 3.5rem;
  background-image: url(../images/icon_selectbox.png);
  background-size: 15px 6px;
  background-position: 91% 50%;
}
@media screen and (max-width: 519px) {
  .c-contact__table select {
    padding-right: 3rem;
    background-size: 13px 5px;
  }
}
.c-contact__table input[name=your-mail1],
.c-contact__table input[name=your-mail2],
.c-contact__table textarea[name=your-message] {
  width: 100%;
}
.c-contact__table .wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin-right: 2rem;
}
.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio] {
  display: none;
}
.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}
.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #898989;
  border-radius: 50%;
}
.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio] + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  padding: 2px;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #ec6c00;
  border: 1px solid transparent;
  border-radius: 50%;
  opacity: 0;
}
.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio]:checked + span::after {
  opacity: 1;
}
.c-contact__table .wpcf7-list-item {
  display: block;
}
.c-contact__table .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.c-contact__table .wpcf7-list-item input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 2rem;
  cursor: pointer;
}
.c-contact__table .wpcf7-list-item input[type=checkbox] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: #fff;
  border: 2px solid #ec6c00;
  border-radius: 2px;
}
.c-contact__table .wpcf7-list-item input[type=checkbox] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 2px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  border-bottom: 3px solid #ec6c00;
  border-left: 3px solid #ec6c00;
  margin-top: -0.2em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.c-contact__table .wpcf7-list-item input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.c-contact__table .wpcf7-not-valid-tip {
  display: block;
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
}

.c-contact__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  max-width: 75rem;
}
@media screen and (max-width: 959px) {
  .c-contact__name {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 519px) {
  .c-contact__name {
    gap: 1rem;
  }
}

.c-contact__sei,
.c-contact__mei {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: calc(50% - 2rem);
}
@media screen and (max-width: 519px) {
  .c-contact__sei,
  .c-contact__mei {
    width: 100%;
  }
}
.c-contact__sei .wpcf7-form-control-wrap,
.c-contact__mei .wpcf7-form-control-wrap {
  width: calc(100% - 5rem);
}

.c-contact__birth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.c-contact__birth input[type=text] {
  max-width: 10rem;
}
@media screen and (max-width: 519px) {
  .c-contact__birth input[type=text] {
    max-width: 5rem;
  }
}

.wpcf7-acceptance {
  display: block;
  position: relative;
  margin: 4rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 519px) {
  .wpcf7-acceptance {
    margin-top: 3rem;
  }
}
.wpcf7-acceptance input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 2rem;
  height: 100%;
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  position: relative;
  top: -1px;
  margin-right: 0.2rem;
  aspect-ratio: 1;
  width: 1.8rem;
  height: auto;
  background-color: #fff;
  border: 1px solid #333;
  vertical-align: middle;
  cursor: pointer;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  content: "";
  position: absolute;
  top: 50%;
  left: 1%;
  -webkit-transform: translate(0%, -50%) rotate(-45deg);
          transform: translate(0%, -50%) rotate(-45deg);
  width: 1.3rem;
  height: 0.5rem;
  border-left: solid 2px #1d2088;
  border-bottom: solid 2px #1d2088;
}
.wpcf7-acceptance a {
  color: #ec6c00;
  text-decoration: underline;
}

.c-contact__confirm-btn,
input[type=submit] {
  display: block;
  margin: 5rem auto 0;
  padding: 1.7rem 1rem;
  width: 30rem;
  text-align: center;
  color: white;
  background-color: #ec6c00;
}
@media screen and (max-width: 519px) {
  .c-contact__confirm-btn,
  input[type=submit] {
    margin-top: 5rem;
  }
}
.c-contact__confirm-btn:hover,
input[type=submit]:hover {
  opacity: 0.8;
}

.c-contact__btn {
  text-align: center;
}

.c-contact__value {
  padding: 1rem 0;
}
@media screen and (max-width: 519px) {
  .c-contact__value {
    padding: 0.5rem 0;
  }
}

.c-contact__back {
  margin: 0 auto;
  display: block;
  width: 12rem;
  padding: 1rem;
  text-align: center;
  font-size: 0.9em;
  color: white;
  background-color: #7e7e7e;
}
.c-contact__back:hover {
  opacity: 0.8;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-spinner {
  margin-top: 1rem;
}

.wpcf7-response-output {
  border: none;
}

.wpcf7-form-control-wrap.recaptcha {
  display: block;
  margin: 5rem auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.c-contact__thanks {
  margin: 6rem auto 20rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .c-contact__thanks {
    padding: 5rem auto 14rem;
  }
}
@media screen and (max-width: 519px) {
  .c-contact__thanks {
    margin: 4rem auto 11rem;
    letter-spacing: 0;
  }
}

/* project
------------------------------------------------ */
.p-top-mv {
  position: relative;
  aspect-ratio: 1400/650;
  width: 100%;
  height: auto;
  background-image: url(../images/top/mv.jpg);
  background-size: 100% auto;
}
@media screen and (max-width: 519px) {
  .p-top-mv {
    aspect-ratio: 1;
    background-size: cover;
    background-position: 90% 0%;
  }
}

.p-top-mv__logo {
  position: absolute;
  top: 5rem;
  width: 30%;
  max-width: 33.7rem;
}
@media screen and (max-width: 959px) {
  .p-top-mv__logo {
    top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__logo {
    top: 1rem;
    width: 40%;
  }
}

.p-top-mv__title {
  position: absolute;
  bottom: 3rem;
  color: white;
  font-size: clamp(2.3rem, 1.4951rem + 2.1463vw, 4.5rem);
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 519px) {
  .p-top-mv__title {
    -webkit-filter: drop-shadow(0 0 1px black);
            filter: drop-shadow(0 0 1px black);
  }
}
.p-top-mv__title small {
  display: block;
  font-size: 0.59em;
  line-height: 1.1;
}

.p-top-strong {
  margin-top: 5rem;
}

.p-top-strong__content {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-image: url(../images/top/bg_top.png);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 519px) {
  .p-top-strong__content {
    background-image: none;
  }
}

.p-top-strong__head {
  color: #ec6c00;
  font-size: clamp(1.5rem, 1.2073rem + 0.7805vw, 2.3rem);
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.p-top-strong__head en {
  font-size: 2.4em;
  font-weight: black;
  letter-spacing: 0.11em;
}

.p-top-strong__lead {
  margin-top: 2.5rem;
}

.p-top-strong__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 7.5rem;
  margin: 0 auto;
  max-width: 90.6rem;
}
@media screen and (max-width: 959px) {
  .p-top-strong__container {
    gap: 0 3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-strong__container {
    display: block;
  }
}

.p-top-strong__item {
  margin-top: 4.8rem;
  width: calc(50% - 3.75rem);
}
@media screen and (max-width: 959px) {
  .p-top-strong__item {
    margin-top: 4rem;
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 519px) {
  .p-top-strong__item {
    width: 100%;
  }
}
.p-top-strong__item h3 {
  position: relative;
  color: #ec6c00;
  font-size: clamp(2rem, 1.8171rem + 0.4878vw, 2.5rem);
  border-right: 2px solid #ec6c00;
  border-bottom: 2px solid #ec6c00;
}
.p-top-strong__item h3::before {
  content: "";
  position: absolute;
  bottom: -0.7rem;
  right: -0.7rem;
  width: 100%;
  height: 100%;
  border-right: 2px solid #d2ecfa;
  border-bottom: 2px solid #d2ecfa;
}
.p-top-strong__item p {
  margin-top: 2.7rem;
  text-align: justify;
}
@media screen and (max-width: 959px) {
  .p-top-strong__item p {
    margin-top: 2rem;
  }
}

.p-top-strong__btn {
  margin-top: 4rem;
}

.p-work__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.3rem;
}
@media screen and (max-width: 959px) {
  .p-work__cats {
    gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-work__cats {
    gap: 1rem;
  }
}
.p-work__cats a {
  position: relative;
  padding: 0.5rem 1rem;
  width: calc(20% - 2.84rem);
  height: 5rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0;
  background-color: #fff;
  border: solid 1px #b5b5b6;
  -webkit-box-shadow: 0 0 3px rgb(194, 194, 194);
          box-shadow: 0 0 3px rgb(194, 194, 194);
}
@media screen and (max-width: 959px) {
  .p-work__cats a {
    padding: 0.5rem;
    width: calc(20% - 1.6rem);
    font-size: 2vw;
  }
}
@media screen and (max-width: 519px) {
  .p-work__cats a {
    width: calc(50% - 0.5rem);
    height: 4.5rem;
    font-size: clamp(1.5rem, 4vw, 1.7rem);
  }
}
@media screen and (max-width: 270px) {
  .p-work__cats a {
    width: 100%;
  }
}
.p-work__cats a::before {
  display: none;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ec6c00;
}
.p-work__cats a:hover {
  opacity: 1;
}
.p-work__cats a:hover::before {
  display: block;
}
@media screen and (max-width: 959px) {
  .p-work__cats a small {
    font-size: 1em;
  }
}
.p-work__cats a.current::before {
  display: block;
}

.p-work__message {
  margin-top: 5.2rem;
  padding: 1.3rem 3rem 2.5rem;
  border: 0.1rem solid #000;
}
@media screen and (max-width: 519px) {
  .p-work__message {
    padding: 1.3rem 2rem 2.5rem;
  }
}
.p-work__message h2 {
  color: #ec6c00;
  font-size: clamp(1.8rem, 1.178rem + 2.6537vw, 3.5rem);
  text-align: center;
}
@media screen and (max-width: 959px) {
  .p-work__message h2 {
    letter-spacing: 0;
  }
}
.p-work__message p {
  margin-top: 1rem;
}

.p-work__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.5rem 5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  .p-work__container {
    gap: 3.5rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-work__container {
    gap: 4.5rem;
  }
}

.p-work__card {
  width: calc(33.333% - 3.3333333333rem);
}
@media screen and (max-width: 959px) {
  .p-work__card {
    width: calc(33.333% - 1.3333333333rem);
  }
}
@media screen and (max-width: 519px) {
  .p-work__card {
    width: 100%;
  }
}

.p-work__image img {
  aspect-ratio: 31/23;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-work__title {
  margin-top: 2.4rem;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (max-width: 959px) {
  .p-work__title {
    margin-top: 2rem;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .p-work__title {
    line-height: 1.5;
  }
}

.p-work__info {
  margin-top: 2.3rem;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.66;
}
@media screen and (max-width: 959px) {
  .p-work__info {
    margin-top: 2rem;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 519px) {
  .p-work__info {
    margin-top: 1.5rem;
  }
}
.p-work__info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-work__info dl dt {
  width: 10rem;
}
@media screen and (max-width: 959px) {
  .p-work__info dl dt {
    width: 8.5rem;
  }
}
@media screen and (max-width: 519px) {
  .p-work__info dl dt {
    width: 9rem;
  }
}
.p-work__info dl dd {
  width: calc(100% - 10rem);
}

.p-comp-greet__container {
  position: relative;
  padding: 8rem 0 10rem;
}
@media screen and (max-width: 519px) {
  .p-comp-greet__container {
    padding: 6rem 0;
  }
}

.p-comp-greet__wrapper {
  margin: 3.5rem auto 0;
  max-width: 906px;
  counter-reset: greet-counter;
}
@media screen and (max-width: 519px) {
  .p-comp-greet__wrapper {
    margin-top: 4.5rem;
  }
}
.p-comp-greet__wrapper:first-child {
  margin-top: 0;
}
.p-comp-greet__wrapper ol {
  list-style: none;
}
.p-comp-greet__wrapper ol li {
  position: relative;
  padding-left: 3.5rem;
  counter-increment: greet-counter;
}
.p-comp-greet__wrapper ol li::before {
  content: "（" counter(greet-counter) "）";
  position: absolute;
  left: 0;
}

.p-comp-greet__head {
  padding-bottom: 2rem;
  color: #ec6c00;
}

.p-comp-greet__sdgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 3rem;
}
@media screen and (max-width: 519px) {
  .p-comp-greet__sdgs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-comp-greet__goals {
  width: 56%;
}
@media screen and (max-width: 519px) {
  .p-comp-greet__goals {
    width: 100%;
  }
}

.p-comp-greet__daihyo {
  width: 36%;
}
@media screen and (max-width: 519px) {
  .p-comp-greet__daihyo {
    margin: 2rem 0 0 auto;
    width: 55%;
  }
}

.p-comp-info__table {
  margin-top: 5rem;
  width: 100%;
  border-collapse: collapse;
  line-height: 2.6;
}
@media screen and (max-width: 519px) {
  .p-comp-info__table {
    line-height: 2;
  }
}
.p-comp-info__table th, .p-comp-info__table td {
  padding: 1.1rem 0 1.1rem 8.3rem;
  font-size: 1.8rem;
  font-weight: 400;
  vertical-align: top;
  border-top: solid 1px #b5b5b6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
  .p-comp-info__table th, .p-comp-info__table td {
    padding: 1.7rem 0 1.7rem 2rem;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .p-comp-info__table th, .p-comp-info__table td {
    display: block;
    padding: 1.5rem 1rem;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
.p-comp-info__table th {
  min-width: 21rem;
}
@media screen and (max-width: 959px) {
  .p-comp-info__table th {
    min-width: 17rem;
  }
}
@media screen and (max-width: 519px) {
  .p-comp-info__table th {
    padding-bottom: 0;
  }
}
.p-comp-info__table th::before {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.75em;
  vertical-align: baseline;
  -webkit-transform: translateY(-5%);
          transform: translateY(-5%);
}
@media screen and (max-width: 519px) {
  .p-comp-info__table th::before {
    margin-right: 0.3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-comp-info__table td {
    padding-top: 0;
    padding-left: 2.6rem;
    border-top: none;
  }
}
.p-comp-info__table tr:last-child th, .p-comp-info__table tr:last-child td {
  border-bottom: solid 1px #b5b5b6;
}
@media screen and (max-width: 519px) {
  .p-comp-info__table tr:last-child th {
    border-bottom: none;
  }
}
.p-comp-info__table ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}
@media screen and (max-width: 519px) {
  .p-comp-info__table ul {
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
}
.p-comp-info__table ul li {
  width: calc(50% - 0.5rem);
  max-width: 35rem;
}
@media screen and (max-width: 519px) {
  .p-comp-info__table ul li {
    width: 100%;
  }
}

@media screen and (max-width: 519px) {
  .p-comp-info__office, .p-comp-info__access {
    letter-spacing: 0 !important;
  }
}

.p-comp-info__map {
  margin-top: 5rem;
}
.p-comp-info__map img, .p-comp-info__map iframe {
  aspect-ratio: 2;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 519px) {
  .p-comp-info__map img, .p-comp-info__map iframe {
    aspect-ratio: 1;
  }
}

.p-permit__container {
  position: relative;
  padding: 8rem 0 10rem;
}
@media screen and (max-width: 519px) {
  .p-permit__container {
    padding: 6rem 0;
  }
}

.p-permit__wrapper {
  margin: 3.5rem auto 0;
  max-width: 906px;
  counter-reset: greet-counter;
}
@media screen and (max-width: 519px) {
  .p-permit__wrapper {
    margin-top: 4.5rem;
  }
}
.p-permit__wrapper:first-child {
  margin-top: 0;
}

.p-permit__head {
  padding-bottom: 2rem;
  color: #ec6c00;
}

.p-permit__message {
  margin-top: 1rem;
  text-align: center;
  font-size: clamp(1.8rem, 1.361rem + 1.8732vw, 3rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.9;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 519px) {
  .p-permit__message {
    margin-top: 0;
  }
}
.p-permit__message span {
  border-bottom: 0.3rem solid #fdeabe;
}

.p-permit__img {
  display: block;
  margin: 5rem auto 0;
  width: 80%;
  max-width: 70rem;
}
@media screen and (max-width: 519px) {
  .p-permit__img {
    margin-top: 3rem;
    width: 90%;
  }
}

.p-permit__business {
  margin-top: 10rem;
  font-size: 1.12em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
  .p-permit__business {
    margin-top: 7rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 519px) {
  .p-permit__business {
    font-size: 1em;
  }
}
.p-permit__business span {
  display: block;
  padding: 0 14%;
  line-height: 4;
  border-top: 0.1rem solid #666;
}
@media screen and (max-width: 959px) {
  .p-permit__business span {
    padding: 0;
  }
}
@media screen and (max-width: 519px) {
  .p-permit__business span {
    padding: 1rem 0;
    line-height: 3;
  }
}
.p-permit__business span:last-child {
  border-bottom: 0.1rem solid #666;
}

.p-const__message {
  margin: 5.2rem auto 0;
  padding: 3.5rem 3rem 3.5rem;
  max-width: 1030px;
  font-weight: bold;
  text-align: center;
  border: 0.1rem solid #000;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
  .p-const__message {
    margin-top: 0;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 519px) {
  .p-const__message {
    padding: 1.3rem 2rem 2.5rem;
  }
}
.p-const__message h2 {
  color: #ec6c00;
  font-size: clamp(1.8rem, 1.178rem + 2.6537vw, 3.5rem);
}
.p-const__message p {
  margin-top: 2rem;
  font-size: clamp(1.6rem, 1.0878rem + 2.1854vw, 3rem);
  line-height: 2;
}
@media screen and (max-width: 519px) {
  .p-const__message p {
    margin-top: 1rem;
    text-align: justify;
    line-height: 1.8;
  }
}

.p-const__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 5rem;
  padding: 3rem 9rem;
  border-bottom: 0.1rem solid #666;
}
@media screen and (max-width: 959px) {
  .p-const__container {
    gap: 2rem;
    padding: 3rem 0;
  }
}
@media screen and (max-width: 519px) {
  .p-const__container {
    gap: 2.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-const__container:first-of-type {
  margin-top: 5.4rem;
}
@media screen and (max-width: 959px) {
  .p-const__container:first-of-type {
    margin-top: 3rem;
  }
}

.p-const__image {
  width: 41%;
}
@media screen and (max-width: 519px) {
  .p-const__image {
    width: 100%;
  }
}

.p-const__body {
  width: calc(59% - 5rem);
}
@media screen and (max-width: 959px) {
  .p-const__body {
    width: calc(59% - 2rem);
  }
}
@media screen and (max-width: 519px) {
  .p-const__body {
    width: 100%;
  }
}
.p-const__body h3 {
  text-align: left;
}
.p-const__body h3::before {
  content: "";
  display: inline-block;
  margin-right: 1.2rem;
  aspect-ratio: 1;
  width: 2.3rem;
  height: auto;
  border-top: 0.2rem solid #000;
  border-right: 0.2rem solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 959px) {
  .p-const__body h3::before {
    margin-right: 1rem;
    width: 1.9rem;
  }
}
@media screen and (max-width: 519px) {
  .p-const__body h3::before {
    width: 1.7rem;
  }
}
.p-const__body p {
  margin-top: 2rem;
  text-wrap: pretty;
}
@media screen and (max-width: 959px) {
  .p-const__body p {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 519px) {
  .p-const__body p {
    margin-top: 2rem;
  }
}
.p-const__body a {
  margin: 4rem 0 0 auto;
}
@media screen and (max-width: 959px) {
  .p-const__body a {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 519px) {
  .p-const__body a {
    margin-top: 2rem;
  }
}

.p-privacy__content {
  padding: 4rem 0;
  border-top: dashed 2px #b5b5b6;
}
@media screen and (max-width: 519px) {
  .p-privacy__content {
    padding: 3.5rem 0;
    border-width: 1px;
  }
}

/* utility
------------------------------------------------ */
/* external
------------------------------------------------ *//*# sourceMappingURL=style.css.map */