@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Itim&family=Noto+Sans+JP:wght@100;300;500;700;900&display=swap");
.pagehead {
  margin-top: 100px;
}
@media screen and (max-width: 834px) {
  .pagehead {
    margin-top: 70px;
  }
}

.ul_wrap, #contents {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 1200px) {
  .ul_wrap, #contents {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.desc h3, .desc div {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1200px) {
  .desc h3, .desc div {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.fa-solid.fa-phone {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  scale: -1 1;
  display: flex;
  align-items: center;
}

.fa-user-pen {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}
.fa-user-pen::before {
  content: "\f4ff";
}

.fa-phone.fa-solid {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}
.fa-phone.fa-solid::before {
  content: "\f095";
}

.fa-circle-exclamation {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin: 0 10px;
}
.fa-circle-exclamation::before {
  content: "\f06a";
}

.fa-solid.fa-phone {
  max-height: 21px;
}

.fa-arrow-right {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin: 0 10px;
}
.fa-arrow-right::before {
  content: "\f061";
}

/*================== プラポリ一体型お問い合わせSCSS =================*/
.policy {
  text-align: left;
}
.policy-text {
  font-size: 18px;
}
.policy-trriger {
  color: #26cff9;
  cursor: pointer;
  text-decoration: underline;
}

.policy-wrap {
  display: flex;
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  line-height: 2;
  background-color: rgba(0, 0, 0, 0.2);
  overscroll-behavior: none;
}
.policy-wrap.active {
  display: flex;
  opacity: 1;
  z-index: 10;
}
.policy-wrap h3 {
  border-left: 4px solid #26cff9;
  color: #111;
  padding-left: 10px;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: left;
}
.policy-wrap p {
  margin: 10px 0 25px;
  color: #111;
  line-height: 2;
}
.policy-wrap > div {
  position: relative;
  padding: 20px;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #26cff9;
  height: 60vh;
  overflow-y: scroll;
  width: 95%;
}
.policy-wrap > div a {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 2.4rem;
  font-weight: bold;
}

.btn, .btn_reflect {
  display: grid;
  grid-auto-flow: column;
  place-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #111;
  background-color: #fff;
  padding: 20px 0;
  line-height: 30px;
}
.btn i, .btn_reflect i {
  font-size: 20px;
  margin: auto 8px;
}
.btn::after, .btn_reflect::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: "Font Awesome 5 Pro";
  content: "\f054";
  top: 0;
  right: 0;
  width: 15%;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.btn_reflect {
  place-content: unset;
}
.btn_reflect i {
  font-size: 20px;
  margin: auto 8px;
}
.btn_reflect::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: "Font Awesome 5 Pro";
  content: "\f061";
  top: 0;
  right: 0;
  width: 15%;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.btn_reflect:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #d9f8ec;
  transition: all 0.3s ease;
}

.btn3d {
  --prog:0px;
  bottom: var(--prog);
  right: var(--prog);
  perspective: 250px;
  perspective-origin: 200% 500%;
  overflow: visible;
  transition: 0.2s;
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotate(0deg);
}
.btn3d:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 0 0;
  rotate: x -90deg;
  height: var(--prog);
  transition: 0.2s;
  background-color: #111;
}
.btn3d:after {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  left: 100%;
  transform-origin: 0 0;
  rotate: y 90deg;
  height: 100%;
  width: var(--prog);
  transition: 0.2s;
  background-color: #111;
}
.btn3d.active {
  --prog:5px;
}
.btn3d:active {
  --prog:0px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
  border: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scrollbar-gutter: stable;
}

html {
  font-size: 62.5% !important;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #26cff9;
  border-radius: 5px;
  box-shadow: inset 0 0 1px 2px #fff;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-weight: unset;
}

body {
  counter-reset: number 0;
  overflow: hidden;
  min-height: 100%;
  line-height: 1.6;
  font-weight: 500;
  font-size: 16px;
  font-family: "Noto Sans JP", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin: 0;
  color: #333;
}

button, a, span, p {
  font-size: 16px;
  color: inherit;
}

dd, dt {
  font-size: 14px;
}

a, button {
  text-decoration: none;
  backface-visibility: hidden;
  overflow: hidden;
  font-weight: 500;
}
a span, button span {
  font-weight: 500;
}
a:is(:link, :visited, :hover, :active), button:is(:link, :visited, :hover, :active) {
  color: inherit;
}

h1, h2, h3 {
  font-weight: 700;
  text-align: center;
}
h1 span, h2 span, h3 span {
  font-weight: 700;
  display: block;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}

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

img.imgL {
  max-width: 100%;
  margin: 0;
}

img.imgR {
  max-width: 100%;
  margin: 0;
}

li {
  list-style: none;
}

b, strong {
  font-weight: 900;
}

small {
  font-size: 80%;
}

input[type=button] {
  cursor: pointer;
  padding: 5px 10px;
}

#contents_wrap {
  width: 100%;
  min-width: 100%;
}

#main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  width: 100%;
}
@media screen and (max-width: 834px) {
  #main {
    display: block;
  }
}

#col_main {
  width: 100% !important;
}

h2.mail.title {
  display: none !important;
}

a.itext {
  width: auto !important;
  height: auto !important;
}

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

@media screen and (max-width: 640px) {
  .spnone {
    display: none;
  }
}

@media screen and (max-width: 834px) {
  .bp1200none {
    display: block;
  }
}

@media screen and (max-width: 834px) {
  .bp1000none {
    display: block;
  }
}

.disnone {
  display: none;
}

@media only screen and (min-width: 640px) {
  .pcnone {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .spnone {
    display: none !important;
  }
}

.tdpd10 td {
  padding: 10px !important;
}

.map li {
  border-left: 5px solid #CCCCCC;
  list-style: none;
  margin: 0 0 15px;
  padding: 0 0 0 10px;
  text-align: left;
}

table {
  table-layout: auto;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  table {
    table-layout: fixed;
  }
}
.tlfix table {
  table-layout: fixed;
}

table td img {
  height: auto !important;
}

.pdtd10 td {
  padding: 10px !important;
}

pre {
  margin: 0;
  padding: 0;
  white-space: pre-line;
}

u {
  text-decoration: line-through;
}

hr {
  border: none;
  height: 0;
  border-bottom: 2px dashed #fff;
  margin-bottom: 10px;
}

u {
  text-decoration: underline;
}

.mincho {
  font-family: "Times New Roman", "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.gothic {
  font-family: "メイリオ", "游ゴシック", YuGothic, "Lato", "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 640px) {
  .fltL {
    float: none;
    width: 100% !important;
  }
  .fltR {
    float: none;
    width: 100% !important;
  }
  .sptal {
    text-align: left !important;
  }
  .sptar {
    text-align: right !important;
  }
  .sptac {
    text-align: center !important;
  }
  .spcenter {
    text-align: center;
    display: block;
    margin-top: 10px;
  }
}
header#global_header {
  min-width: auto;
}

footer#global_footer {
  min-width: auto;
}

.img100 img {
  max-width: 100% !important;
  width: 100% !important;
}

.tdscl {
  overflow-x: scroll;
}
.tdscl table {
  table-layout: fixed;
  width: 1850px;
}

.center {
  text-align: center;
}

.title1 {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  height: 400px;
}
@media screen and (max-width: 834px) {
  .title1 {
    height: 250px;
  }
}
@media screen and (max-width: 640px) {
  .title1 {
    height: 200px;
  }
}

.link_contact {
  display: block;
  padding: 20px;
  border: 1px solid #fff;
}

.link_tel {
  display: block;
}
.link_tel span {
  font-size: 13px;
  font-family: "Noto Sans JP", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

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

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

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

@media screen and (max-width: 640px) {
  .mt60sp {
    margin-top: 60px !important;
  }
}

@media screen and (max-width: 640px) {
  .mt0sp {
    margin-top: 0px !important;
  }
}

.br48 {
  display: none;
}
@media only screen and (max-width: 480px) {
  .br48 {
    display: block;
  }
}

.itcenter {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.itcenter > * {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .itcenter > * {
    width: 100%;
  }
}
.itcenter img {
  width: 100% !important;
}

.form_simple.form_wrap:not(._recruit) {
  border: none;
}
.form_simple.form_wrap:not(._recruit)::-webkit-scrollbar {
  background-color: rgb(150, 150, 150);
}
.form_simple.form_wrap:not(._recruit)::-webkit-scrollbar-thumb {
  background-color: #26cff9;
  border-radius: 5px;
  box-shadow: inset 3px 3px 3px rgba(255, 255, 255, 0.2);
}
.form_simple.form_wrap:not(._recruit) dl, .form_simple.form_wrap:not(._recruit) dt, .form_simple.form_wrap:not(._recruit) dd {
  border: none;
  background-color: unset;
}
.form_simple.form_wrap:not(._recruit) dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 10px;
}
.form_simple.form_wrap:not(._recruit) dl:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .form_simple.form_wrap:not(._recruit) dl {
    flex-direction: column;
  }
}
.form_simple.form_wrap:not(._recruit) dt {
  width: 20%;
  align-items: left;
  justify-content: flex-start;
  padding-left: 0;
}
.form_simple.form_wrap:not(._recruit) dd {
  width: 80%;
  padding-left: 0;
}
@media screen and (max-width: 640px) {
  .form_simple.form_wrap:not(._recruit) dt, .form_simple.form_wrap:not(._recruit) dd {
    width: 100%;
  }
}

.bg100 {
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
  max-width: unset !important;
  min-width: unset !important;
}

.card_wrap, .ul_wrap ul, .card_wrap ul {
  display: flex;
  max-width: 1200px;
  margin: auto;
  justify-content: center;
}
.card_wrap ul, .ul_wrap ul ul {
  flex-wrap: wrap;
}
.card_wrap :where(.box, li), .ul_wrap ul :where(.box, li) {
  width: calc(50% - 0px);
}
.card_wrap :where(.box, li) img, .ul_wrap ul :where(.box, li) img {
  padding: 0;
  width: 100%;
}
.card_wrap h3, .ul_wrap ul h3, .card_wrap h5, .ul_wrap ul h5 {
  font-weight: 700;
}

.base {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1400px) {
  .base {
    padding-left: 0;
    padding-right: 0;
  }
}

.FbtnW {
  justify-content: center;
  gap: 30px;
  padding-top: 30px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 834px) {
  .FbtnW {
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
.FbtnW .box {
  width: 100%;
  max-width: 300px;
  overflow: visible !important;
}

.sppd {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (max-width: 1200px) {
  .sppd {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.fixBG {
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.dl_wrap {
  margin-top: 30px;
}
.dl_wrap dl, .dl_wrap dt, .dl_wrap dd {
  padding: 0 !important;
  border: none !important;
  background: none !important;
}
.dl_wrap dl:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px !important;
  border-bottom: 1px solid #ddd !important;
}
.dl_wrap dt {
  width: 150px !important;
  justify-content: flex-start !important;
}
.dl_wrap dd {
  width: 80% !important;
}
.dl_wrap dl:first-of-type {
  border-bottom: 1px solid #ddd;
}
.dl_wrap span {
  padding: 3px 10px;
  color: #fff;
  border-radius: 5px;
  background: #78b4e6;
}

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

/*マウスストーカー*/
.cursor,
.follower {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  display: none;
}
@media only screen and (min-width: 834px) {
  .cursor,
.follower {
    display: block;
  }
}

.cursor {
  width: 50px;
  height: 50px;
  background-color: #999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  transition: scale ease 0.3s, opacity 0.3s;
  text-align: center;
  scale: 3;
  opacity: 0.001;
}
.cursor.is-active {
  opacity: 1;
  scale: 1;
}

.follower {
  display: none;
}
.follower span {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  transform: scale(0);
}
.follower.is-active {
  transform: scale(1);
}

#stalker {
  pointer-events: none;
  position: fixed;
  perspective: 20vw;
  fill: none;
  stroke: rgba(204, 204, 204, 0);
  stroke-width: 2px;
  border-radius: 50%;
  --oi: 100px;
  --dot: 10px;
  top: calc(var(--oi) / -2);
  left: calc(var(--oi) / -2);
  width: var(--oi);
  height: var(--oi);
  scale: 1;
  transition: all 0s;
  transition-timing-function: ease-out;
  z-index: 999;
}
#stalker .stalker-inner {
  width: 100%;
  height: 100%;
  background-color: rgba(204, 204, 204, 0);
  border-radius: 50%;
  scale: 1;
  transition: 0.4s;
}
@media only screen and (min-width: 834px) {
  #stalker .stalker-inner {
    background-color: rgba(204, 204, 204, 0.3333333333);
  }
}
#stalker .stalker-inner.hov {
  background: rgba(0, 0, 0, 0.4666666667);
  scale: 0.7;
  opacity: 1;
}
#stalker .stalker-inner.down {
  scale: 0.5;
  transition: 0.2s;
}
#stalker .stalker-inner.up {
  background: #fff;
  animation: big 1s forwards ease-in-out;
}

#loading {
  position: fixed;
  width: 100%;
  top: 50%;
}
#loading #percent {
  text-align: center;
}
#loading #percent-text {
  font-size: 32px;
}
#loading #gauge {
  width: 0px;
  height: 5px;
  background: #ff0000;
}

.img-op img {
  border: 5px solid #fff;
  box-shadow: 0 0 20px rgba(102, 102, 102, 0.1333333333);
}

.first30 td:first-child {
  width: 30%;
}

.first_eee td:first-child {
  background-color: #eee;
}

.circle_dt.form_wrap dl, .circle_dt.form_wrap dt, .circle_dt.form_wrap dd {
  border: none;
  background: none;
}
.circle_dt.form_wrap dt {
  width: 20%;
  min-width: 200px;
  text-align: center;
  color: #fff;
  z-index: 1;
  align-items: center;
  padding: 50px 0;
  position: relative;
}
.circle_dt.form_wrap dt:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  z-index: -1;
  border-radius: 50%;
  background-color: lightblue;
}
.circle_dt.form_wrap dt:after {
  content: "";
  position: absolute;
  display: block;
  top: 100px;
  right: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 50px;
  background-color: lightblue;
}
.circle_dt.form_wrap dd {
  display: flex;
  align-items: center;
}

html {
  min-height: 100%;
  scrollbar-gutter: stable;
}

html:has(.header_nav.show, .policy-wrap.active) {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

header#global_header {
  max-width: 100%;
  width: 100%;
  min-width: 100%;
}

.header {
  width: 100vw;
  width: 100dvw;
  max-width: 1440px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10px 0px;
  background-color: #fff;
  background: no-repeat center/cover;
  z-index: 100;
  position: fixed;
  overscroll-behavior-y: contain;
  display: flex;
  align-items: center;
  justify-content: end;
  font-weight: 600;
}
.header:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  background-color: #fff;
}
.header.active {
  background-color: #fff;
  height: auto;
}
@media screen and (max-width: 834px) {
  .header {
    padding: 10px 0;
  }
}
.header * {
  z-index: 1;
}
.header a, .header button {
  display: grid;
  place-items: center;
  align-content: center;
  font-weight: 600;
  border-radius: 3px;
}
.header a {
  line-height: unset;
}
.header button {
  line-height: normal;
  font-weight: 600;
  background-color: #fff;
}
@media only screen and (max-width: 1000px) {
  .header button {
    background-color: transparent;
  }
}
.header_logo {
  margin-right: auto;
}
.header_logo a {
  font-size: 24px;
  font-weight: 900;
  padding: 0px 20px;
  display: grid;
  place-items: center;
  align-content: center;
}
.header_logo img {
  width: 100%;
}
.header_links {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 20px;
}
@media screen and (max-width: 834px) {
  .header_links {
    padding: 0 10px;
  }
}
.header_links a, .header_links .burger {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  order: 1;
}
.header_links a_svg, .header_links .burger_svg {
  width: 33px;
}
@media only screen and (max-width: 1000px) {
  .header_links a, .header_links .burger {
    order: unset;
  }
}
@media screen and (max-width: 834px) {
  .header_links a, .header_links .burger {
    width: 50px;
    height: 50px;
  }
  .header_links a_svg, .header_links .burger_svg {
    width: 33px;
  }
}
@media screen and (max-width: 640px) {
  .header_links a {
    position: fixed;
    bottom: 10px;
    right: 10px;
    box-shadow: 0 0 1px 1px #fff;
  }
  .header_links a.header_tel {
    translate: -120% 0;
  }
}
.header_links span {
  text-transform: uppercase;
}
.header_links span, .header_links .burger .burger_text {
  font-size: 14px;
}
.header_tel:is(a) {
  background-color: #26cff9;
}
.header_tel:is(a) i {
  color: #fff;
}
.header_contact:is(a) {
  background-color: #fffd0c;
}
.header_contact:is(a) i {
  color: #26cff9;
}
.header i {
  font-size: 22px;
}
.header .burger {
  background-color: #26cff9;
}
@media only screen and (max-width: 1000px) {
  .header_nav {
    display: block;
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    translate: 0 0;
    transition: 0.4s;
    visibility: hidden;
    width: 100vw;
    width: 100dvw;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  .header_nav::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
  }
}
.header_nav.show {
  opacity: 1;
  visibility: visible;
  translate: 0 100%;
}
.header_nav.show .header_accordion {
  visibility: visible;
}
.header_ul {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1000px) {
  .header_ul {
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 15px;
    padding: 0;
  }
}
.header_ul span {
  font-size: 12px;
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: #333;
}
.header_list {
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .header_list {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-grow: 1;
    width: 100%;
    width: 33.3333333333%;
  }
  .header_list:nth-child(odd) {
    background-color: #fffd0c;
  }
  .header_list:nth-child(even) {
    background-color: #26cff9;
  }
}
@media screen and (max-width: 640px) {
  .header_list {
    width: 50%;
  }
  .header_list:nth-child(4n+1) {
    background-color: #fffd0c;
  }
  .header_list:nth-child(4n+2) {
    background-color: #26cff9;
  }
  .header_list:nth-child(4n+3) {
    background-color: #26cff9;
  }
  .header_list:nth-child(4n) {
    background-color: #fffd0c;
  }
  .header_list:nth-child(6) {
    background-color: #fffd0c;
  }
  .header_list._btn {
    background-color: #26cff9;
    order: 1;
  }
}
.header_link, .header_btn:is(button) {
  line-height: unset;
  will-change: scale;
  width: max-content;
  height: 50px;
  padding: 0 15px;
}
.header_link._contact, .header_btn:is(button)._contact {
  display: none;
  visibility: hidden;
  background-color: #26cff9;
  color: #fff;
}
@media only screen and (max-width: 1200px) {
  .header_link, .header_btn:is(button) {
    padding: 0 clamp(6px, 0.66vw, 15px);
  }
}
@media only screen and (max-width: 1000px) {
  .header_link, .header_btn:is(button) {
    width: 100%;
    padding: 0px;
    height: 80px;
  }
}
.header_btn:is(button) {
  position: relative;
  line-height: normal;
  color: #000;
}
.header_btn:is(button)::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
  clip-path: polygon(0 0, 100% 0, 50% 80%);
}
.header_btn:is(button)[aria-pressed=true]::after {
  clip-path: polygon(0 80%, 100% 80%, 50% 0%);
}
.header_accordion {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  visibility: hidden;
}
@media screen and (max-width: 640px) {
  .header_accordion {
    left: unset;
  }
}

@media only screen and (max-width: 1000px) {
  .accordion_ul {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    width: 100vw;
    width: 100dvw;
    align-content: start;
    background-color: rgba(255, 255, 255, 0.7333333333);
  }
}
@media screen and (max-width: 640px) {
  .accordion_ul {
    justify-content: end;
  }
}
.accordion_list {
  position: relative;
  rotate: x 90deg;
  transition: 0.3s;
  transform-origin: 20px;
  height: fit-content;
}
.accordion_list:nth-child(odd) a {
  background-color: #fffd0c;
}
.accordion_list:nth-child(even) a {
  background-color: #26cff9;
}
.accordion_list:nth-child(1) {
  transition-delay: 0s;
}
.accordion_list:nth-child(2) {
  transition-delay: 0.05s;
}
.accordion_list:nth-child(3) {
  transition-delay: 0.1s;
}
.accordion_list:nth-child(4) {
  transition-delay: 0.15s;
}
.accordion_list:nth-child(5) {
  transition-delay: 0.2s;
}
.accordion_list:nth-child(6) {
  transition-delay: 0.25s;
}
.accordion_list:nth-child(7) {
  transition-delay: 0.3s;
}
.accordion_list:nth-child(8) {
  transition-delay: 0.35s;
}
.accordion_list:nth-child(9) {
  transition-delay: 0.4s;
}
.accordion_list:nth-child(10) {
  transition-delay: 0.45s;
}
.accordion_list:nth-child(11) {
  transition-delay: 0.5s;
}
.accordion_list:nth-child(12) {
  transition-delay: 0.55s;
}
.accordion_list:nth-child(13) {
  transition-delay: 0.6s;
}
.accordion_list:nth-child(14) {
  transition-delay: 0.65s;
}
.accordion_list:nth-child(15) {
  transition-delay: 0.7s;
}
.accordion_list:nth-child(16) {
  transition-delay: 0.75s;
}
.accordion_list:nth-child(17) {
  transition-delay: 0.8s;
}
.accordion_list:nth-child(18) {
  transition-delay: 0.85s;
}
.accordion_list:nth-child(19) {
  transition-delay: 0.9s;
}
.accordion_list:nth-child(20) {
  transition-delay: 0.95s;
}
@media screen and (max-width: 640px) {
  .accordion_list {
    width: 50%;
  }
  .accordion_list:is(:nth-child(4n), :nth-child(4n+1)) a {
    background-color: #26cff9;
  }
  .accordion_list:is(:nth-child(4n+2), :nth-child(4n+3)) a {
    background-color: #fffd0c;
  }
}
.accordion_link {
  width: max-content;
  padding: 15px;
  position: relative;
  left: 50%;
  translate: -50%;
}
@media only screen and (max-width: 1000px) {
  .accordion_link {
    width: 100%;
    padding: 18px;
  }
}

.header_accordion.show {
  visibility: visible;
}
@media screen and (max-width: 834px) {
  .header_accordion.show .accordion_ul {
    height: 100vh;
  }
}
.header_accordion.show .accordion_list {
  rotate: x 0deg;
}

.header .burger {
  place-items: center;
  display: none;
}
@media only screen and (max-width: 1000px) {
  .header .burger {
    display: grid;
  }
}
.header .burger_svg {
  stroke: #fff;
}
.header .burger_text {
  font-size: 16px;
}
.header .burger path {
  transition: 0.3s;
  stroke-width: 10%;
  stroke-linecap: round;
}
.header .burger text {
  font-size: 16px;
  font-weight: 600;
  fill: #fff;
  stroke: #fff;
  stroke-width: 0.04em;
}

.pagehead {
  position: relative;
  padding: 0 30px;
}
@media only screen and (max-width: 1200px) {
  .pagehead {
    padding: 0;
  }
}

.mv_text {
  position: absolute;
  z-index: 1;
  bottom: 15%;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  justify-content: flex-start;
  max-width: 1200px;
  width: 100%;
  padding: 0;
  text-align: left;
}
@media only screen and (max-width: 1200px) {
  .mv_text {
    bottom: 8%;
  }
}
@media screen and (max-width: 834px) {
  .mv_text {
    bottom: 10%;
  }
}
.mv_head {
  font-size: clamp(28px, 5.6vw, 50px);
  display: inline;
  padding: 5px 20px;
  background: #26cff9;
  color: #fff;
  line-height: 2;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  filter: blur(500px) contrast(3);
}
.mv_head.isactive {
  animation: blur 3s forwards cubic-bezier(0, 1, 0, 1);
}
@keyframes blur {
  0% {
    filter: blur(500px) contrast(3);
  }
  50% {
    filter: blur(0px) contrast(1);
  }
  100% {
    filter: blur(0px) contrast(1);
  }
}
.mv_imgW {
  max-width: 1380px;
  margin: 0 auto;
  padding: 15px;
  background-color: #26cff9;
  border-radius: 10px;
}
.mv_imgW img {
  width: 100%;
  border-radius: 10px;
}

body {
  display: none;
}

.btn {
  max-width: 280px;
  font-weight: 500;
  line-height: normal;
}
.btn span {
  font-weight: 500;
}
.btn::after {
  color: #26cff9;
}
@media screen and (max-width: 834px) {
  .btn {
    width: 80%;
    margin: 0 auto;
  }
}

#main .form_htext dt, .slidetext .htext h2, .fl_col h3, .htext h2, .itcenter h1, .slidetext h1, .itcenter h2, .slidetext h2, .error_text h1, .error_text h2 {
  border-bottom: 3px solid #26cff9;
  font-weight: 900;
  padding-bottom: 8px;
  margin-bottom: 12px;
  font-size: 24px;
  display: inline-block;
  position: relative;
}
#main .form_htext dt:after, .slidetext .htext h2:after, .fl_col h3:after, .htext h2:after, .itcenter h1:after, .slidetext h1:after, .itcenter h2:after, .slidetext h2:after, .error_text h1:after, .error_text h2:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1200px;
  height: 100%;
  left: 100%;
  top: 3px;
  border-bottom: 3px solid #bbb;
}

.hide {
  opacity: 0.01;
  translate: 10px 10px;
  background-color: #fff;
}

.itcenter, .slidetext, .error_text {
  flex-direction: row-reverse;
  position: relative;
}
@media screen and (max-width: 834px) {
  .itcenter, .slidetext, .error_text {
    flex-direction: column;
    padding-bottom: 40px;
  }
}
.itcenter article, .slidetext article, .error_text article {
  overflow: hidden;
  padding: 40px;
  z-index: 1;
}
.itcenter div:not(:has(img)), .slidetext div:not(:has(img)), .error_text div:not(:has(img)) {
  line-height: 2.4;
}
@media screen and (max-width: 834px) {
  .itcenter div:not(:has(img)), .slidetext div:not(:has(img)), .error_text div:not(:has(img)) {
    max-width: unset;
  }
}
.itcenter h1, .slidetext h1, .itcenter h2, .slidetext h2, .error_text h1, .error_text h2 {
  font-size: 34px;
  font-size: clamp(24px, 3.4vw, 34px);
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.itcenter img, .slidetext img, .error_text img {
  display: block;
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}
.itcenter .imgW, .slidetext .imgW, .error_text .imgW {
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: 8px;
  max-width: 600px;
  transition: 0.6s;
}
@media screen and (max-width: 834px) {
  .itcenter .imgW, .slidetext .imgW, .error_text .imgW {
    margin-right: unset;
    max-width: unset;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.itcenter .btn, .slidetext .btn, .error_text .btn {
  background-color: #26cff9;
  padding: 5px;
  border-radius: 4px;
  margin-top: 40px;
}
.itcenter .btn span, .slidetext .btn span, .error_text .btn span {
  border: 2px dashed rgba(255, 255, 255, 0.4666666667);
  border-radius: inherit;
  padding: 15px 0;
  font-weight: 600;
}
.itcenter .btn:after, .slidetext .btn:after, .error_text .btn:after {
  content: "\f061";
  color: #fff;
}
.itcenter .btn_reflect:before, .slidetext .btn_reflect:before, .error_text .btn_reflect:before {
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .itcenter .chalk, .slidetext .chalk, .error_text .chalk {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0px;
    opacity: 0.5;
  }
}

:root {
  --cha:80px;
}
@media screen and (max-width: 640px) {
  :root {
    --cha:55px;
  }
}

.chalk {
  font-family: "Itim", "Noto Sans JP";
  color: #f6a49c;
  display: block;
  width: var(--cha);
  writing-mode: vertical-lr;
  height: max-content;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
  line-height: 0.8;
}

.char {
  font-size: 110px;
  line-height: 0.8;
  display: inline-block;
  min-height: 24px;
  transform-origin: center left;
}
@media screen and (max-width: 640px) {
  .char {
    font-size: 80px;
  }
}

.yagai article {
  padding-right: 0;
  margin-right: 40px;
}
@media screen and (max-width: 834px) {
  .yagai article {
    margin-right: 0px;
    padding-left: 0px;
  }
}
.yagai .btn span {
  color: #fff;
}
.yagai .imgW {
  filter: drop-shadow(2vmax 2vmax #fffd0c);
  transform: translateZ(0);
  max-width: calc(600px - var(--cha));
}
@media only screen and (max-width: 1000px) {
  .yagai .imgW {
    margin-right: calc(-1 * var(--cha));
  }
}
@media screen and (max-width: 834px) {
  .yagai .imgW {
    margin-right: unset;
    max-width: unset;
    padding-right: 0;
    padding-left: 0;
  }
}
.yagai img {
  border-radius: 0 20% 0 20%;
}

.service, .index .exhibition {
  justify-content: end;
  background-color: #26cff9;
}
.service .hide, .index .exhibition .hide {
  opacity: 0.01;
  translate: 0px 10px;
}
.service article, .service .imgW, .index .exhibition article, .index .exhibition .imgW {
  width: calc(50% - var(--cha));
  position: relative;
}
.service .imgW, .index .exhibition .imgW {
  max-width: unset;
  width: 50%;
}
@media screen and (max-width: 834px) {
  .service .imgW, .index .exhibition .imgW {
    width: calc(100% - 40px);
    margin-right: unset;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.service img, .index .exhibition img {
  width: 100%;
  border-radius: 10px;
}
.service article, .index .exhibition article {
  padding-right: 0;
  margin-right: 40px;
  max-width: calc(560px - var(--cha));
  color: #fff;
}
@media screen and (max-width: 834px) {
  .service article, .index .exhibition article {
    max-width: unset;
    width: calc(100% - 40px);
    padding-left: 0;
    margin-right: 0;
  }
}
.service h2, .index .exhibition h2 {
  border-bottom-color: #fff;
}
.service h2::after, .index .exhibition h2::after {
  border-bottom-color: #fff;
}
.service .btn, .index .exhibition .btn {
  background-color: #fff;
  color: #26cff9;
}
.service .btn span, .index .exhibition .btn span {
  border-color: rgba(38, 207, 249, 0.4);
}
.service .btn::after, .index .exhibition .btn::after {
  color: #26cff9;
}
.service .chalk, .index .exhibition .chalk {
  color: #f6a49c;
  max-width: 80px;
  order: 1;
}
@media screen and (max-width: 834px) {
  .service .chalk, .index .exhibition .chalk {
    right: 20px;
  }
}

.index .exhibition {
  flex-direction: row;
  justify-content: start;
  background-color: #26cff9;
  padding: 0;
}
@media screen and (max-width: 834px) {
  .index .exhibition {
    flex-direction: column;
    padding-bottom: 80px;
  }
}
.index .exhibition .imgW {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 834px) {
  .index .exhibition .imgW {
    width: calc(100% - 40px);
    margin-right: unset;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.index .exhibition h2 {
  text-align: left;
}
.index .exhibition .chalk {
  font-family: "Itim", "Noto Sans JP";
  padding-top: 40px;
  padding-bottom: 40px;
}

.index .hspan:has(h2) {
  margin-top: 160px;
  margin-bottom: 10px;
}
.index .hspan:has(h2):not(:has(h1, p)) {
  transform-origin: top;
}
.index .hspan:has(h2) h2 {
  font-size: 34px;
  text-align: center !important;
  position: relative;
  margin: auto;
  width: max-content;
}
.index .hspan:has(h2) .chalk {
  writing-mode: horizontal-tb;
  margin: auto;
  rotate: -15deg;
  width: max-content;
  position: absolute;
  bottom: 100%;
  right: 0;
  padding: 0;
}
.index .hspan:has(h2) .char {
  font-size: 80px;
  transform-origin: bottom right;
}
@media screen and (max-width: 640px) {
  .index .hspan:has(h2) .char {
    font-size: 52px;
  }
}

#main .ul_wrap li {
  overflow: visible;
}

.ul_wrap {
  margin-bottom: 80px;
}
.ul_wrap ul {
  flex-wrap: wrap;
  justify-content: space-between;
}
.ul_wrap li {
  position: relative;
  width: 48.5%;
  transition: 0.6s;
  --wid:40px;
}
@media screen and (max-width: 834px) {
  .ul_wrap li {
    width: 100%;
  }
}
.ul_wrap li a {
  display: flex;
  justify-content: center;
  overflow: visible;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .ul_wrap li {
    --wid:20px;
  }
}
.ul_wrap li:nth-child(1) a {
  clip-path: inset(10% 5% round 25% 25% 0 0);
}
.ul_wrap li:nth-child(1) a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f6a49c;
}
.ul_wrap li:nth-child(1) .imgW {
  clip-path: inset(10% 10% 10% 5% round 25% 25% 0 0);
}
.ul_wrap li:nth-child(1) .spanW span {
  border-radius: 1em 1em 0 0;
}
.ul_wrap li:nth-child(2) a {
  clip-path: polygon(25% 10%, 75% 10%, 100% 50%, 75% 90%, 25% 90%, 0% 50%);
}
.ul_wrap li:nth-child(2) a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #26f93f;
}
.ul_wrap li:nth-child(2) .imgW {
  clip-path: polygon(25% 10%, 70% 10%, 95% 50%, 70% 90%, 25% 90%, 0% 50%);
}
.ul_wrap li:nth-child(2) span {
  padding-left: 2em;
  padding-right: 2em;
  background: linear-gradient(117.5deg, transparent, transparent 1em, rgba(255, 255, 255, 0.8666666667) 1.1em, rgba(255, 255, 255, 0.8666666667) 60%, transparent 61%), linear-gradient(-117.5deg, transparent, transparent 1em, rgba(255, 255, 255, 0.8666666667) 1.1em, rgba(255, 255, 255, 0.8666666667) 60%, transparent 61%);
}
.ul_wrap li:nth-child(3) a {
  clip-path: polygon(25% 5%, 100% 5%, 75% 95%, 0% 95%);
}
.ul_wrap li:nth-child(3) a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #7070d1;
}
.ul_wrap li:nth-child(3) .imgW {
  clip-path: polygon(25% 5%, 95% 5%, 70% 95%, 0% 95%);
}
.ul_wrap li:nth-child(3) span {
  padding-left: 2em;
  padding-right: 2em;
  background: linear-gradient(105deg, transparent, transparent 1em, rgba(255, 255, 255, 0.8666666667) 1.1em, rgba(255, 255, 255, 0.8666666667) 60%, transparent 61%), linear-gradient(-75deg, transparent, transparent 1em, rgba(255, 255, 255, 0.8666666667) 1.1em, rgba(255, 255, 255, 0.8666666667) 60%, transparent 61%);
}
@media screen and (max-width: 640px) {
  .ul_wrap li:nth-child(3) span {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
.ul_wrap li:nth-child(4) a {
  clip-path: polygon(10% 5%, 10% 95%, 100% 60%, 85% 60%, 85% 5%);
}
.ul_wrap li:nth-child(4) a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fffd0c;
}
.ul_wrap li:nth-child(4) .imgW {
  clip-path: polygon(10% 5%, 10% 95%, 95% 65%, 80% 65%, 80% 5%);
}
.ul_wrap li:nth-child(4) .spanW {
  filter: drop-shadow(0 3.75em 0 rgba(255, 255, 255, 0.8666666667));
  clip-path: polygon(0 0, 0 145%, 100% 100%, 100% 0%);
}
@media only screen and (max-width: 1200px) {
  .ul_wrap li:nth-child(4) .spanW {
    clip-path: polygon(0 0, 0 130%, 100% 100%, 100% 0%);
  }
}
@media screen and (max-width: 640px) {
  .ul_wrap li:nth-child(4) .spanW {
    filter: drop-shadow(0 3em 0 #fff);
  }
}
.ul_wrap li.hide {
  background-color: #fff;
  translate: var(--wid) 0;
}
.ul_wrap li.hide .spanW {
  opacity: 0.01;
  translate: -50% 0%;
}
.ul_wrap .imgW {
  position: relative;
  width: 100%;
  height: 100%;
}
.ul_wrap .imgW::before {
  content: "";
  display: block;
  padding-top: 100%; /* 比率を指定 */
}
.ul_wrap img {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ul_wrap .spanW {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
  text-align: center;
  transition: 0.5s 0.5s;
  display: block;
  width: -webkit-fill-available;
}
.ul_wrap .spanW span {
  font-family: "Itim", "Noto Sans JP";
  display: inline;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 3;
  padding: 0.66em 1em 0.34em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-color: rgba(255, 255, 255, 0.8666666667);
}
@media screen and (max-width: 640px) {
  .ul_wrap .spanW span {
    font-size: 16px;
  }
}

.desc h3, .desc div {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 2;
}

footer#global_footer {
  width: 100%;
  min-width: 100% !important;
  color: #333;
  background-color: #fff;
}

.footer_main {
  outline: 2px dashed rgba(38, 207, 249, 0.4);
  line-height: 1;
  font-weight: 500;
  display: grid;
  grid-template-columns: 1fr minmax(min-content, 400px) minmax(min-content, 400px) 1fr;
  grid-template-columns: minmax(20px, 1fr) repeat(3, minmax(min-content, 400px)) minmax(20px, 1fr);
  grid-template-columns: minmax(20px, 1fr) repeat(3, clamp(0px, 33vw - 15px, 400px)) minmax(20px, 1fr);
  grid-auto-flow: column;
  grid-template-rows: auto 1fr;
  text-align: left;
}
@media screen and (max-width: 834px) {
  .footer_main {
    grid-template-columns: minmax(20px, 1fr) calc(40% - 20px) calc(60% - 20px) minmax(20px, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .footer_main {
    grid-template-columns: minmax(20px, 1fr) calc(100% - 40px) minmax(20px, 1fr);
    justify-content: center;
  }
}
.footer_main > * {
  grid-column-start: 2;
  align-items: flex-start;
}
.footer_logo {
  align-items: flex-start;
  padding-top: 20px;
}
@media screen and (max-width: 834px) {
  .footer_logo {
    margin-right: auto;
  }
}
@media screen and (max-width: 640px) {
  .footer_logo {
    margin-left: 0px;
  }
}
.footer_logo a {
  display: block;
  width: 100%;
  font-size: 24px;
  font-weight: 900;
  padding: 10px 0px;
  margin: 10px 0px;
}
.footer_address {
  line-height: 1.6;
  padding-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .footer_address {
    margin-top: 1em;
  }
}
@media screen and (max-width: 640px) {
  .footer_address {
    margin-left: 0px;
  }
}
.footer_nav {
  align-items: start;
  grid-column: 3/span 2;
  grid-row: span 2;
  display: flex;
  text-align: left;
  padding: 20px 0;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .footer_nav {
    grid-column: 3/span 1;
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .footer_nav {
    grid-column: 2/span 1;
  }
}
.footer_nav ul {
  width: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: max-content;
  border-left: 2px dashed rgba(38, 207, 249, 0.4);
}
@media screen and (max-width: 834px) {
  .footer_nav ul {
    width: calc(100% - 20px);
    padding: 10px;
    box-sizing: content-box;
  }
  .footer_nav ul:last-child {
    border-top: 2px dashed rgba(38, 207, 249, 0.4);
  }
}
@media screen and (max-width: 640px) {
  .footer_nav ul {
    border-left: none;
    border-top: 2px dashed rgba(38, 207, 249, 0.4);
    padding-left: 0;
  }
}
.footer_nav li {
  width: 50%;
  transition: 0.3s;
}
.footer_nav li:has(p) {
  width: 100%;
}
.footer_nav li:has(p) p {
  font-weight: 700;
}
.footer_nav a, .footer_nav p {
  display: inline-block;
  padding: 2px;
  margin: 18px;
  font-size: clamp(14px, 1.6vw, 16px);
}
@media screen and (max-width: 640px) {
  .footer_nav a, .footer_nav p {
    margin-left: 0;
  }
}
.footer_nav a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  will-change: rotate;
}
.footer_nav li:is(:nth-child(4n), :nth-child(4n+1)) a {
  text-decoration-color: #26cff9;
}
.footer_nav li:is(:nth-child(4n+2), :nth-child(4n+3)) a {
  text-decoration-color: #fffd0c;
}
.footer_nav ul:nth-child(2) li:is(:nth-child(4n), :nth-child(4n+3)) a {
  text-decoration-color: #26cff9;
}
.footer_nav ul:nth-child(2) li:is(:nth-child(4n+2), :nth-child(4n+1)) a {
  text-decoration-color: #fffd0c;
}
.footer_nav span {
  font-size: clamp(14px, 1.6vw, 16px);
}
.footer_copy {
  grid-column: 1/span 5;
  display: block;
  width: 100%;
  font-weight: 500;
  text-align: center;
  background-color: #26cff9;
  font-size: 12px;
  padding: 15px;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .footer_copy {
    text-align: left;
    padding-left: 20px;
  }
}

.title1 {
  position: relative;
  padding: 0 30px;
}
.title1:after {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .title1 {
    padding: 0;
  }
}
.title1 article {
  margin: 0 auto;
  height: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 15px;
  background-color: #26cff9;
  border-radius: 10px;
}
.title1 article img {
  width: 100%;
  border-radius: 10px;
  object-position: bottom;
}
.title1 img {
  height: 100% !important;
  border-radius: 10px;
}
.title1 h1, .title1 p {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  height: 400px;
  font-size: clamp(24px, 5vw, 50px);
  line-height: 1;
  padding: 25px 0 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .title1 h1, .title1 p {
    height: 250px;
  }
}
@media screen and (max-width: 640px) {
  .title1 h1, .title1 p {
    height: 200px;
  }
}
.title1 .chalk {
  writing-mode: horizontal-tb;
  width: unset;
  padding: 0;
}
.title1 .char {
  line-height: 1;
  font-size: clamp(36px, 7.5vw, 75px);
}
.title1 span {
  animation: blur 3s forwards cubic-bezier(0, 1, 0, 1);
}
.title1.hide span {
  animation: none;
}

.profile #main .itcenter article, .profile #main .slidetext article {
  margin-bottom: auto;
  padding-top: 40px;
  border-right: 40px solid #fff;
}
.profile #main .itcenter .imgW, .profile #main .slidetext .imgW {
  padding: 40px 0;
}
.profile #main .itcenter img, .profile #main .slidetext img {
  border-radius: 10px;
}
.profile #main .itcenter h2, .profile #main .slidetext h2 {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  width: max-content;
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.profile #main .itcenter div:not(:has(img)), .profile #main .slidetext div:not(:has(img)) {
  line-height: 1.6;
}

section div.form_wrap.form_htext dl, section div.form_wrap.form_htext dt, section div.form_wrap.form_htext dd {
  background-color: transparent;
  border: none;
}

section div.form_wrap dl:last-of-type dd {
  border-bottom: none;
}

#main .form_htext {
  padding: 20px 0 80px;
}
#main .form_htext dl {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#main .form_htext dt {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  width: max-content;
  padding: 8px 0;
  margin-bottom: 12px;
}
#main .form_htext dd {
  font-size: 16px;
  padding-left: 0;
}

.about {
  background-color: #fff;
}
.about::before {
  content: "";
  display: block;
  width: 50%;
  max-width: 720px;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  background-color: transparent;
  pointer-events: none;
}
.about_title {
  margin: 0 auto;
  z-index: 1;
  position: relative;
  padding: 80px 0;
  background-color: transparent !important;
  line-height: 2;
}
.about_title article {
  background-color: #fff;
  padding: clamp(30px, 5vw, 60px);
  padding: 60px 20px;
}
@media only screen and (min-width: 834px) {
  .about_title article {
    padding: 60px 90px;
  }
}
.about_title article::after {
  content: "";
  display: block;
  width: 90px;
  height: 90px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  position: absolute;
  top: 80px;
  right: 0;
  margin: auto;
  background-color: #26cff9;
  z-index: 1;
}
@media only screen and (min-width: 640px) {
  .about_title article::after {
    width: 120px;
    height: 120px;
  }
}
.about_title span {
  display: inline-block;
  color: #333;
}
.about_title h2 span {
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 26px);
  color: #333;
  display: inline-block;
}
.about_title .sm {
  color: #26cff9;
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.news {
  background-color: transparent;
}

.slidetext {
  display: flex;
  margin-top: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 834px) {
  .slidetext {
    flex-direction: column-reverse;
  }
}
.slidetext .htext {
  padding-right: 0;
  margin-top: 0;
}
.slidetext .htext article {
  border-right: 40px solid #fff;
  padding: 0;
}
@media screen and (max-width: 834px) {
  .slidetext .htext article {
    border: none;
  }
}
.slidetext .htext div:not(:has(img)) {
  padding: 0;
}

.slide {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 834px) {
  .slide {
    width: 100%;
  }
}
.slide .imgW {
  opacity: unset;
  translate: unset;
  padding: 0;
}
.slide .imgW {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide .imgW::before {
  content: "";
  display: block;
  padding-top: 65%; /* 比率を指定 */
}
.slide .imgW img {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.slide img {
  object-fit: cover;
  height: clamp(250px, 40vmin, 500px) !important;
}

.slick-dots {
  position: static !important;
  display: flex;
  justify-content: space-between;
}
.slick-dots li {
  width: 25% !important;
  margin: 0;
  height: 100%;
}
.slick-dots li::before {
  content: "";
  display: block;
  padding-top: 65%; /* 比率を指定 */
}
.slick-dots li img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100% !important;
}

.desc {
  margin-top: 40px;
  margin-bottom: 40px;
}

#main .flexul_wrap li {
  overflow: unset;
}

.flexul_wrap {
  margin-bottom: 80px;
}
.flexul_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.flexul_wrap li {
  width: calc(33.3333333333% - 30px);
  flex-grow: 1;
}
@media screen and (max-width: 834px) {
  .flexul_wrap li {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 640px) {
  .flexul_wrap li {
    width: 100%;
  }
}
.flexul_wrap a {
  font-weight: 500;
  display: block;
  border-radius: 10px;
  overflow: visible;
}
.flexul_wrap .imgW {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 15px 15px rgba(187, 187, 187, 0.6);
  margin-bottom: 20px;
}
.flexul_wrap .imgW::before {
  content: "";
  display: block;
  padding-top: 65%; /* 比率を指定 */
}
.flexul_wrap .imgW img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  transition: 0.3s;
}
.flexul_wrap article {
  flex-grow: 1;
}
.flexul_wrap a:hover img {
  scale: 1.1;
}
.flexul_wrap h5 {
  display: none;
}
.flexul_wrap article div {
  margin-top: 0 !important;
  color: #333;
  display: contents;
}
.flexul_wrap div > span {
  display: block;
  padding: 10px;
  padding-top: 10px;
  height: 100%;
  border-radius: 0 0 10px 10px;
}
.flexul_wrap div > span > span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 2px solid #26cff9;
}

.mfp-figure .mfp-title {
  font-size: clamp(20px, 2.2vw, 22px);
}
.mfp-figure .mfp-title span {
  font-size: inherit;
  margin-left: 1em;
}

#main .card_wrap .box {
  overflow: unset;
}

.card_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 80px;
}
.card_wrap .box {
  width: calc(50% - 20px);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 640px) {
  .card_wrap .box {
    width: 100%;
  }
}
.card_wrap .imgW {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 15px 15px rgba(187, 187, 187, 0.6);
  margin-bottom: 20px;
}
.card_wrap .imgW::before {
  content: "";
  display: block;
  padding-top: 65%;
}
.card_wrap .imgW img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.card_wrap article {
  flex-grow: 1;
}
.card_wrap article div {
  display: contents;
}
.card_wrap h3 {
  display: none;
}
.card_wrap div > span {
  display: block;
  padding: 10px;
  padding-top: 10px;
  height: 100%;
  border-radius: 0 0 10px 10px;
}
.card_wrap div > span span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 2px solid #26cff9;
}

body:not(.index) .itcenter:not(.slidetext), body:not(.index) .slidetext:not(.slidetext) {
  margin-bottom: 80px;
}
@media screen and (max-width: 834px) {
  body:not(.index) .itcenter:not(.slidetext), body:not(.index) .slidetext:not(.slidetext) {
    flex-direction: column-reverse;
  }
}
body:not(.index) .itcenter:not(.slidetext) article, body:not(.index) .slidetext:not(.slidetext) article {
  padding-right: 0;
  border-right: 40px solid #fff;
}
@media screen and (max-width: 834px) {
  body:not(.index) .itcenter:not(.slidetext) article, body:not(.index) .slidetext:not(.slidetext) article {
    border: none;
    padding: 0;
  }
}
body:not(.index) .itcenter:not(.slidetext) article div, body:not(.index) .slidetext:not(.slidetext) article div {
  padding: 0;
}
body:not(.index) .itcenter:not(.slidetext) img, body:not(.index) .slidetext:not(.slidetext) img {
  border-radius: 10px;
}

body:is(.disaster_prevention, .global_warming) .title1 .char {
  font-size: clamp(24px, 6.5vw, 75px);
  margin: 0 3px;
}

.fl_col {
  margin-bottom: 40px;
}
.fl_col .box {
  width: 100%;
  overflow: hidden !important;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .fl_col .box {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    row-gap: 20px;
  }
}
.fl_col .imgW {
  width: 100%;
  min-width: 40%;
}
.fl_col article {
  width: 100%;
  min-width: 60%;
  overflow: hidden;
  border-right: 40px solid #fff;
}
@media screen and (max-width: 834px) {
  .fl_col article {
    border: none;
  }
}
.fl_col time {
  display: block;
  opacity: 0.8;
}
.fl_col h3 {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  width: max-content;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.form_wrap.form_simple dl, .form_wrap.form_simple dt, .form_wrap.form_simple dd {
  font-size: 16px;
}
.form_wrap.form_simple dt {
  opacity: 0.8;
}

.map_wrap {
  position: relative;
  margin-top: 40px;
  margin-bottom: 80px;
}
.map_wrap::before {
  content: "";
  display: block;
  padding-top: 35%;
}
@media screen and (max-width: 834px) {
  .map_wrap::before {
    padding-top: 50%;
  }
}
.map_wrap iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.htext {
  margin-top: 20px;
  margin-bottom: 40px;
}
.htext article {
  overflow: hidden;
}
.htext h2 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.pan1 {
  padding: 30px 0px;
  color: #26cff9;
}
.pan1 ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.pan1 ul li {
  margin-right: 10px;
}
.pan1 ul li:not(:first-child) {
  margin-left: 10px;
  pointer-events: none;
}
.pan1 ul li:not(:first-child) a {
  text-decoration: none;
}
.pan1 ul a:any-link {
  text-decoration: none;
  font-weight: 600;
}
.pan1 ul a:any-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
@media screen and (max-width: 834px) {
  .pan1 ul a:any-link {
    text-decoration: underline #26cff9;
    text-decoration-thickness: 2px;
  }
}

.title2bl:first-child {
  margin-top: 40px;
}
.title2bl h2, .title2bl h3 {
  border-left: 4px solid #26cff9;
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: clamp(18px, 2.6vw, 26px);
  background-color: #dfedf9;
  font-weight: 700;
}

.title2bb {
  margin: 40px auto;
}
.title2bb article {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title2bb article div {
  word-break: break-all;
}
.title2bb h2, .title2bb h3 {
  border-bottom: 2px solid rgb(29, 30, 34);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 20px;
  font-size: clamp(22px, 2.8vw, 26px);
  font-family: "Noto Serif JP", "Noto Sans JP", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #26cff9;
}
.title2bb span {
  display: inline-block;
  color: #333;
}
.title2bb h2 span {
  color: #26cff9;
  display: block;
}

.page_desc {
  max-width: 960px;
  margin: 40px auto;
}
.page_desc div {
  margin-top: 20px;
}

.entry.form_wrap {
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: 0.5s;
}
.entry.form_wrap:focus-within {
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.2);
}
.entry.form_wrap dl {
  flex-wrap: wrap;
}
.entry.form_wrap dt {
  align-items: center;
  flex-direction: row;
  padding: 8px;
  font-size: clamp(15px, 2vw, 18px);
  width: 100% !important;
}
@media only screen and (min-width: 640px) {
  .entry.form_wrap dt {
    width: 20% !important;
  }
}
.entry.form_wrap dd {
  padding: 2% 2%;
  font-size: clamp(15px, 2vw, 18px);
  width: 100% !important;
}
@media only screen and (min-width: 640px) {
  .entry.form_wrap dd {
    width: 80% !important;
  }
}
.entry.form_wrap label {
  margin-left: 10px;
}

.contact_linkW a {
  width: max-content;
  display: block;
}
.contact_linkW a p {
  font-family: "Noto Sans JP", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.contact_linkW a p:first-of-type {
  font-size: 32px;
  color: #fffd0c;
  display: inline;
  font-family: "Impact", "Noto Sans JP", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.05em;
}

.error_text .btn {
  background-color: #26cff9;
  color: #fff;
  font-weight: 700;
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 30px;
}

.fa.fa-info-circle {
  color: #26cff9;
}

.bnr {
  margin: 60px auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 834px) {
  .bnr {
    flex-wrap: nowrap;
  }
}
.bnr :where(div[class*=box]) {
  position: relative;
  border-radius: 5px;
  width: 100%;
  flex: 1 1 262px;
  max-height: 200px;
}
.bnr :where(div[class*=box]):nth-child(n+5) {
  max-width: 265.5px;
}
.bnr :where(div[class*=box]) a {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #98bedf;
  overflow: hidden;
}
.bnr :where(div[class*=box]) a:hover img {
  scale: 1.1;
}
.bnr :where(div[class*=box]) img {
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  height: 100% !important;
  transition: 0.3s;
}
.bnr :where(div[class*=box]) div {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  color: #fff;
  text-shadow: 0 0 10px #000;
  font-size: clamp(22px, 2.8vw, 26px);
}

@media screen and (max-width: 640px) {
  section form div.form_wrap:not(._recruit) dl {
    flex-direction: column;
  }
  section form div.form_wrap:not(._recruit) dl dt {
    width: 100% !important;
    border-right: 1px solid #ddd;
    border-bottom: none;
  }
  section form div.form_wrap:not(._recruit) dl dd {
    width: 100% !important;
    height: auto !important;
  }
}
.circle_dt.form_wrap {
  padding: 0 0 20px 60px;
  position: relative;
}
.circle_dt.form_wrap:before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 100%;
  left: 20px;
  background-color: #45aee5;
}
.circle_dt.form_wrap dl,
.circle_dt.form_wrap dt,
.circle_dt.form_wrap dd {
  border: none;
  background: none;
}
.circle_dt.form_wrap dl {
  border-bottom: 1px solid rgba(51, 51, 51, 0.4666666667);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.circle_dt.form_wrap dt {
  width: 15%;
  min-width: 90px;
  color: #45aee5;
  z-index: 1;
  justify-content: start;
  padding: 8px;
  position: relative;
}
.circle_dt.form_wrap dt:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: -47px;
  margin: auto;
  width: 16px;
  height: 16px;
  z-index: 1;
  border-radius: 50%;
  background-color: #45aee5;
}
.circle_dt.form_wrap dt:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: -47px;
  margin: auto;
  width: 25px;
  height: 2px;
  background-color: #666;
}
.circle_dt.form_wrap dd {
  display: flex;
  align-items: center;
  padding: 8px;
}

#c31.fsc {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 24px;
}
#c31.fsc .box {
  max-width: 220px;
}
#c31.fsc img {
  width: 100%;
}

.link_ul ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.link_ul li {
  flex: 1 1 172px;
}
.link_ul li:last-child {
  max-width: calc(50% - 5px);
}

.btn_a {
  margin: 40px auto;
  display: block;
  padding: 10px 0;
  width: 100%;
  margin: 0 auto;
  border-radius: 0px;
  background-color: #183765;
  color: #fff;
  font-size: 16px;
  text-align: center;
  position: relative;
  font-size: clamp(15px, 2vw, 18px);
  font-family: "Noto Sans JP", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.btn_a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: "Font Awesome 5 Pro";
  content: "\f054";
  top: 0;
  right: 0;
  width: 20%;
  display: grid;
  place-items: center;
}

.link_tel_wrap {
  margin: 1%;
}
.link_tel_wrap a {
  color: #1b1b1b;
  font-size: clamp(24px, 2.8vw, 30px);
  font-family: "din-2014", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", sans-serif;
}
.link_tel_wrap span {
  font-size: 14px;
}
.link_tel_wrap i {
  margin-right: 5px;
  color: #fff;
  background: #457ae5;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

._contact a {
  color: #5387f0;
  font-size: 15px;
}

.contact_desc {
  padding: 20px;
  line-height: 30px;
}
.contact_desc span {
  display: inline;
}
.contact_desc a {
  color: #98bedf;
}

.imgbg.imgbg_single {
  width: 100%;
  max-width: 1000px;
}
.imgbg.imgbg_single a {
  max-width: 1000px;
  width: 100%;
  height: 200px;
  backdrop-filter: blur(5px);
  text-shadow: 1px 1px 0px #fff;
}

.policy_last {
  padding-bottom: 60px;
}

.error_text div {
  color: #333;
  margin: 0 auto;
  padding: 20px;
  font-size: clamp(18px, 2vw, 20px);
}