:root {
  --font-gothic:"Noto Sans JP", sans-serif;
  --font-gothic:"Helvetica Neue",
  Arial,
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  Meiryo,
  sans-serif;
  --color-black:#231815;
  --color-gray:#666666;
  --color-gray-99:#999999;
  --color-gray-ef:#efefef;
  --color-blue:#0393c0;
  --color-navy:#006699;
  --color-orange:#ff9900;
  --width: 1280;
  --px-vw: calc( 100vw / var( --width ) );
  --duration1:0.5s;
  --delay1:0.5s;
  --delay2:calc(var(--delay1) + var(--duration1));
  --delay3:calc(var(--delay2) + var(--duration1));
}

@media screen and (max-width: 767px) {
  :root {
    --width:375;
  }
}
.hamburger {
  display: none;
}

@media screen and (max-width: 767px) {
  #header {
    width: 100%;
    height: auto;
    position: sticky;
    top: 0;
    z-index: 1;
    background: white;
  }
  #header h1 {
    background: var(--color-blue);
    font-size: 10px;
    position: relative;
    top: 0;
    z-index: 999;
  }
  #header .logo {
    float: left;
    position: relative;
    top: 0px;
    left: 0;
    z-index: 999;
    margin: 0 20px;
    padding: 10px 0;
    display: inline-block;
  }
  #header .logo img {
    height: 30px;
  }
  #header .tel {
    top: 0;
    left: 0;
    position: relative;
  }
  #header .btn {
    position: relative;
    top: 0;
    left: 0;
  }
  #header .hdLink {
    position: relative;
    top: 0;
    left: 0;
    z-index: 999;
    right: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    background: none;
    margin-top: 40px;
  }
  #header .hdLink li {
    width: 100%;
    display: block;
    margin: 0;
  }
  #header .hdLink li a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-navy);
    height: 30px;
    width: auto;
    padding: 0.5em 0;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    line-height: 30px;
  }
  #header .hdLink li a:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 3px solid transparent;
    border-left-color: white;
    margin-right: 5px;
  }
  #header .hdLink li img {
    width: 100%;
  }
  #header .hdLink02-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 60px;
    padding: 10px 20px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-column-gap: 15px;
    grid-row-gap: 0px;
  }
  #header .hdLink02 {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    grid-area: 2/1/3/2;
  }
  #header .hdLink02 li a {
    text-decoration: none;
    color: var(--color-gray);
  }
  #header .hdLink02 li p {
    display: inline-flex;
    align-items: center;
    font-size: 8px;
  }
  #header .hdLink02 li p:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 3px solid transparent;
    border-left-color: var(--color-gray);
  }
  #header .hdLink02 .area {
    margin: 0;
  }
  #header .hdLink02 .qa {
    margin: 0;
  }
  #header .btn {
    width: 120px;
    grid-area: 1/1/2/2;
  }
  #header .tel-wrap {
    width: 200px;
    grid-area: 1/2/3/3;
  }
  .hamburger {
    position: relative;
    top: 0;
    right: 0;
    z-index: 999;
    display: block;
    width: calc(50 * var(--px-vw));
    height: calc(50 * var(--px-vw));
    margin-left: auto;
    margin-right: 10px;
    border: none;
    background: none;
    padding: 10px;
  }
  .hamburger.active .hamburger__line {
    top: calc(25 * var(--px-vw));
    width: 20px;
    background-color: transparent;
  }
  .hamburger.active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
  }
  .hamburger.active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .hamburger__line {
    position: absolute;
    top: 25px;
    left: 50%;
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-gray);
    transition: 0.4s;
    transform: translate(-50%, -50%);
  }
  .hamburger__line::before {
    position: absolute;
    top: -10px;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--color-gray);
    transition: inherit;
  }
  .hamburger__line::after {
    position: absolute;
    top: 10px;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--color-gray);
    transition: inherit;
  }
  .hamburger__text {
    position: absolute;
    bottom: calc(9 * var(--px-vw));
    left: 50%;
    width: 100%;
    line-height: 1;
    transform: translateX(-50%);
  }
  .hamburger__text::before {
    font-size: calc(8 * var(--px-vw));
    font-weight: 500;
    color: var(--color-gray);
    text-align: center;
    content: "MENU";
  }
  .global-navigation {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    position: fixed;
    left: 100%;
    top: 0;
    transition: 0.6s ease;
    background: white;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .global-navigation.active {
    left: 0;
  }
  .global-navigation #globalNavi {
    position: relative;
    top: 0;
    left: 0;
    z-index: 888;
    width: fit-content;
  }
  .global-navigation #globalNavi li {
    display: block;
    float: none;
    width: 100%;
  }
  .global-navigation #globalNavi li.pc {
    display: none;
  }
  .global-navigation #globalNavi li a {
    background: none;
    display: flex;
  }
  .global-navigation #globalNavi li a .sp {
    color: var(--color-navy);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .global-navigation #globalNavi li a .sp .jp {
    display: block;
    text-align: right;
    width: 60vw;
  }
  .global-navigation #globalNavi li a .sp .en {
    text-align: start;
    display: block;
    font-size: 16px;
    font-weight: 900;
    width: auto;
    flex-grow: 1;
  }
  .global-navigation .inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .global-navigation__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .global-navigation__list li {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    background: none;
  }
  .global-navigation__list li.pc {
    display: none;
  }
  .global-navigation__list li:last-child {
    margin-bottom: 0;
  }
  .global-navigation__list li a {
    position: relative;
    text-decoration: none;
    font-size: calc(17 * var(--px-vw));
    font-weight: 700;
    color: white;
    display: flex;
  }
  .global-navigation__list li a span {
    letter-spacing: 0.04em;
  }
  #footer {
    width: 100%;
    padding: 20px 0 60px;
    box-sizing: border-box;
    background: none;
  }
  #footer p.pageTop {
    padding: 0 20px;
  }
  #footer img {
    max-width: 100%;
  }
  #footer .ftrlink {
    padding: 10px;
  }
  #footer .ftrlink li {
    display: inline-block;
  }
  #footer p.copy {
    padding: 10px;
  }
}
.top #main .right {
  background: #f8f8f8;
}

.sp {
  display: none;
}
#main .ul01 li p .sp {
  display: none;
}

@media screen and (max-width: 767px) {
  body {
    background: none;
    font-family: var(--font-gothic);
  }
  .anchor {
    margin-top: -100px;
    padding-top: 100px;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  img {
    max-width: 100%;
  }
  .twocolumn {
    box-sizing: border-box;
  }
  .link {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
    margin: 0;
  }
  .link li img {
    width: 100%;
  }
  #main {
    width: 100%;
  }
  #main .right {
    width: 100%;
    float: none;
    display: flex;
    flex-direction: column-reverse;
    border: none;
    padding: 0;
    background: none;
  }
  #main .right .areaBox {
    float: none;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }
  #main .right .areaBox h3 {
    text-align: center;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid white;
    padding-bottom: 10px;
    font-size: 24px;
  }
  #main .right .areaBox p {
    font-size: 14px;
    text-align: center;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 10px 0;
  }
  #main .right .areaBox .copy {
    font-size: 18px;
    font-weight: 700;
  }
  #main .right .leftBox {
    width: 100%;
    margin: 0;
    padding: 40px 20px;
    box-sizing: border-box;
    background: #f8f8f8;
  }
  #main .right .leftBox h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-navy);
  }
  #main .right .leftBox p {
    width: 100%;
    font-size: 13px;
    text-align: justify;
  }
  #main .news {
    width: 100%;
    float: none;
    padding: 40px 20px;
    box-sizing: border-box;
    border: none;
  }
  #main .news h2 {
    border-left: 4px solid var(--color-blue);
    padding-left: 20px;
    margin-bottom: 20px;
  }
  #main .news dl {
    height: auto;
    border-left: none;
  }
  #main .rightTop {
    display: none;
  }
  #main .sideBtm {
    display: none;
  }
  #main .ul01, #main .ul02 {
    background: none;
    padding: 0;
  }
  #main .ul01 li, #main .ul02 li {
    margin: 0 auto 20px;
    float: none;
  }
  #main .ul01 li.mr0, #main .ul02 li.mr0 {
    margin-right: auto;
  }
  #main .ul01 {
    height: auto;
  }
  #main .ul01 li {
    background: var(--color-gray-ef);
    border-radius: 6px;
    padding: 20px;
  }
  #main .ul01.circle li {
    background: var(--color-orange);
    border-radius: 300px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #main .ul01.circle li p {
    text-align: center;
  }
  #main .ul01.circle li .ttl {
    font-size: 24px;
    font-weight: 700;
    color: white;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid white;
    display: block;
  }
  #main .ul01.circle li .ttl span {
    font-size: 18px;
  }
  #main .ul01.circle li img {
    display: none;
  }
  #main .ul01.qa {
    padding: 20px;
  }
  #main .ul02 li {
    width: 100%;
  }
  #main .tableA {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    box-sizing: border-box;
  }
  #main .tableA li {
    max-width: 100%;
    margin: 0;
  }
  #main .tableA colgroup {
    display: none;
  }
  .company #main .tableA th {
    width: 8%;
  }
  #main .tableA th, #main .tableA td {
    width: auto;
  }
  .water #main .tableA th:nth-of-type(2), .water #main .tableA td:nth-of-type(2) {
    width: 40%;
    word-break: keep-all;
  }
  .water #main .tableA th:nth-of-type(3), .water #main .tableA td:nth-of-type(3) {
    width: 25%;
    word-break: keep-all;
  }
  .reform #main .tableA th:nth-of-type(2), .reform #main .tableA td:nth-of-type(2) {
    width: 35%;
    word-break: keep-all;
  }
  .reform #main .tableA th:nth-of-type(3), .reform #main .tableA td:nth-of-type(3) {
    width: 25%;
    word-break: keep-all;
  }
  #main .tableA td, #main .tableA th {
    padding: 0.25em 0.5em;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  #main .tableA td ul.listA, #main .tableA td p, #main .tableA td dl, #main .tableA th ul.listA, #main .tableA th p, #main .tableA th dl {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
  }
  #main .tableA td p, #main .tableA th p {
    width: 100%;
    padding: 0;
  }
  #main .tableA td dl.dl01 dt, #main .tableA td dl.dl01 dd, #main .tableA th dl.dl01 dt, #main .tableA th dl.dl01 dd {
    width: auto;
    padding: 0;
  }
  #main .tableA td .map, #main .tableA th .map {
    padding: 0;
  }
  #main .tableA td .map li.mr0, #main .tableA th .map li.mr0 {
    width: 100%;
  }
  #main .dl01 dt, #main .dl01 dd {
    display: block;
    width: 100%;
    padding: 0;
  }
  .mainImg-wrap {
    background: url("../img/index/main_imgbg.jpg") 50% 50% no-repeat;
    background-size: cover;
    padding-bottom: 20px;
  }
  .mainImg-wrap #mainImg {
    background: none;
  }
  #mainImg {
    height: auto;
    background-position: 55% 50%;
  }
  #mainImg .inner {
    width: 100%;
    height: 100%;
  }
  #mainImg .inner > h2 {
    padding: 0;
  }
  #mainImg .inner > h2 img {
    display: none;
  }
  #mainImg .inner > h2 p {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    padding: 20px;
  }
  #mainImg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #mainImg .link {
    z-index: 1;
  }
  #mainImg.innerPage #pagePath {
    padding: 10px 20px;
    line-height: 1.6;
  }
  #mainImg.innerPage #pagePath li {
    display: inline-block;
  }
  #mainImg.innerPage .inner {
    background: rgba(255, 255, 255, 0.6);
  }
  #mainImg.innerPage .inner tr {
    display: block;
  }
  #mainImg.innerPage .inner tr th {
    width: fit-content;
  }
  #mainImg.innerPage .inner tr th, #mainImg.innerPage .inner tr td {
    display: block;
  }
  #mainImg.innerPage .inner tr th img, #mainImg.innerPage .inner tr td img {
    display: none;
  }
  #mainImg.innerPage .inner tr th p, #mainImg.innerPage .inner tr td p {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    padding: 20px;
  }
  #mainImg.innerPage .inner h2 {
    padding: 0;
    background: white;
  }
  #mainImg.innerPage .inner h2 img {
    display: none;
  }
  #mainImg.innerPage .inner h2 .txt {
    display: block;
    font-size: 16px;
    border-left: 4px solid var(--color-blue);
    padding: 10px;
    padding-left: 16px;
    color: var(--color-blue);
  }
  #mainImg.innerPage .inner h2 .txt .en {
    font-size: 60%;
    display: inline-block;
    color: var(--color-gray-99);
    margin-left: 20px;
  }
  .twocolumn {
    background: none;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .twocolumn .contactBox {
    background: none;
    border: 4px solid var(--color-gray-ef);
    border-radius: 12px;
    padding: 10px;
    height: auto;
    margin-top: 40px;
  }
  .twocolumn .contactBox img {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .twocolumn .contactBox ul {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .twocolumn .contactBox ul:after {
    content: none;
  }
  .twocolumn .contactBox ul li {
    margin: 0;
    text-align: center;
  }
  .twocolumn .contactBox ul li:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .twocolumn .contactBox ul li:nth-of-type(1) a img {
    width: 80%;
  }
  .twocolumn .contactBox ul li:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .twocolumn .contactBox ul li:nth-of-type(2) .contact_ttl {
    margin-bottom: 10px;
  }
  .twocolumn .contactBox ul li:nth-of-type(2) a img {
    height: 30px;
  }
  .twocolumn .contactBox .dis {
    padding: 0;
    margin-bottom: 10px;
  }
  .onecolumn {
    background: none;
    padding: 30px 20px 0;
    box-sizing: border-box;
  }
  .onecolumn h3 {
    line-height: 1.6;
  }
  .onecolumn .contactBox {
    background: none;
    border: 4px solid var(--color-gray-ef);
    border-radius: 12px;
    padding: 10px;
    height: auto;
    margin-top: 40px;
  }
  .onecolumn .contactBox img {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .onecolumn .contactBox ul {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .onecolumn .contactBox ul:after {
    content: none;
  }
  .onecolumn .contactBox ul li {
    margin: 0;
    text-align: center;
  }
  .onecolumn .contactBox ul li:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .onecolumn .contactBox ul li:nth-of-type(2) a img {
    width: 80%;
  }
  .onecolumn .contactBox ul li:nth-of-type(3) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .onecolumn .contactBox ul li:nth-of-type(3) .contact_ttl {
    margin-bottom: 10px;
  }
  .onecolumn .contactBox ul li:nth-of-type(3) a img {
    height: 30px;
  }
  .onecolumn .contactBox .dis {
    padding: 0;
    margin-bottom: 10px;
  }
  .onecolumn .dis {
    display: none;
  }
  .onecolumn .text {
    max-width: 100%;
  }
  .onecolumn .list {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .onecolumn .list li {
    width: fit-content;
    margin: auto;
  }
  #conts {
    max-width: 100%;
  }
  #conts h3 {
    background: var(--color-blue);
    line-height: 1.6;
    font-size: 16px;
  }
  #conts .link {
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
    margin-bottom: 30px;
    box-sizing: border-box;
  }
  #conts .link li {
    margin: 0;
  }
  #conts .floatR {
    display: block;
    float: none;
    padding: 0;
    margin: 2em 0;
  }
  #conts .floatR img {
    width: 100%;
  }
  #conts .boxA span {
    padding: 0;
    margin-left: 0;
  }
  #conts .boxA .boxL {
    width: 100%;
  }
  #conts .boxB {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: none;
    margin: 0;
    padding: 0;
  }
  #conts .boxB:after {
    content: none;
  }
  #conts .boxB .boxLeft, #conts .boxB .boxRight {
    width: 100%;
    margin: auto;
    background: none;
    border-bottom: 1px dotted var(--color-gray-ef);
  }
  #conts .boxB .boxLeft p, #conts .boxB .boxRight p {
    width: 100%;
  }
  #conts .boxB .boxRight h4 {
    padding: 0;
  }
  #sideBar {
    width: 100%;
    max-width: 100%;
    background: none;
  }
  #sideBar ul {
    background: none;
  }
  .mailForm table {
    table-layout: fixed;
  }
  .mailForm td {
    padding: 0.5em 1em;
  }
  .mailForm td input {
    max-width: 100%;
    box-sizing: border-box;
    height: 2em;
  }
  .mailForm td textarea {
    max-width: 100%;
    box-sizing: border-box;
    height: 10em;
  }
}

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