@charset "UTF-8";
/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* base
--------------------------- */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #4c4948;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  line-height: 1.6;
  font-size: 16px;
  background: #fff;
}
@media (min-width: 500px) {
  body {
    font-size: 17px;
  }
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

a {
  color: #003D75;
}

a:hover,
a:active,
a:focus {
  color: #003D75;
}

mark {
  font-style: normal;
}

iframe[src*="google.com/maps/"] {
  width: 100%;
}

/* base
--------------------------- */
.anim-box {
  opacity: 0;
}

.anim-box.slideinU.is-animated {
  animation: slideInU 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

.anim-box.slideinUS.is-animated {
  animation: slideInUS 0.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideInU {
  0% {
    transform: translateY(180px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes slideInUS {
  0% {
    transform: translateY(2em);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.anim-box.slideinL.is-animated {
  opacity: 0;
  animation: slideInL 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideInL {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.anim-box.slideinR.is-animated {
  opacity: 0;
  animation: slideInR 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideInR {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.anim-box.fadein.is-animated {
  opacity: 0;
  animation: fadeIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------*
* layout
*--------------------------------------*/
.l-wrapper { /* 以下はslickが動作しなくなるためコメントアウト */ }

.l-header {
  width: 100%;
  background: rgb(255, 255, 255);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 2;
}
@media (min-width: 500px) {
  .l-header {
    position: sticky;
    left: 0;
    top: 0;
  }
}
.scrolled .l-header {
  background: rgba(255, 255, 255, 0.75);
}
.is-home .l-header {
  position: fixed;
  background: rgba(255, 255, 255, 0.75);
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2vw;
}
@media (min-width: 1500px) {
  .l-header__inner {
    font-size: 17px;
  }
}
@media (max-width: 499px) {
  .l-header__inner {
    height: 80px;
  }
}
.l-header__logo {
  padding: 0px 0 0 10px;
  max-width: calc(100% - 80px);
}
@media (min-width: 500px) {
  .l-header__logo {
    max-width: 24em;
    padding: 0 0 0 1.6em;
  }
}
@media (min-width: 1500px) {
  .l-header__logo {
    max-width: inherit;
  }
}
.l-header__nav-container {
  display: flex;
  align-items: center;
}
@media (min-width: 500px) {
  .l-header__nav-container {
    gap: 1em;
  }
}
@media (min-width: 1330px) {
  .l-header__nav-container {
    gap: 1.5em;
  }
}
@media (max-width: 499px) {
  .l-header__nav-container {
    flex-direction: column;
  }
}
.l-header__nav-cta {
  list-style: none;
}
@media (min-width: 500px) {
  .l-header__nav-cta {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
  }
}
@media (min-width: 1330px) {
  .l-header__nav-cta {
    grid-template-columns: repeat(2, auto);
    grid-auto-flow: initial;
    grid-auto-columns: initial;
  }
}
@media (min-width: 1600px) {
  .l-header__nav-cta {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 499px) {
  .l-header__nav-cta {
    width: 100%;
  }
}
.l-header__nav-cta li {
  height: 100px;
}
.l-header__nav-cta li img {
  vertical-align: middle;
}
@media (max-width: 1329px) {
  .l-header__nav-cta li img {
    max-width: 1.2em;
  }
}
.l-header__nav-cta li:first-child a {
  height: 100%;
  padding: 0 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: #003d75;
  color: #fff;
  font-family: Roboto;
  font-size: 1.59em;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 499px) {
  .l-header__nav-cta li:first-child a {
    font-size: 27px;
  }
}
.l-header__nav-cta li:last-child {
  background: #fff100;
}
.l-header__nav-cta li:last-child a {
  height: 100%;
  padding: 0 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #003d75;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.l-header__nav-cta li:last-child a:hover {
  box-shadow: inset 0 0 0 3px #003d75;
}
@media (max-width: 499px) {
  .l-header__nav-cta li:last-child a {
    font-size: 27px;
  }
}
.l-header__button {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.3s;
  padding-bottom: 5px;
}
@media (min-width: 500px) {
  .l-header__button {
    display: none;
  }
}
.l-header__button span,
.l-header__button span:before,
.l-header__button span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #003D75;
  position: absolute;
  transition: all 0.3s;
}
.l-header__button span:before {
  bottom: 8px;
}
.l-header__button span:after {
  top: 8px;
}
.l-header__button:after {
  content: "menu";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  color: #003D75;
  font-size: 12px;
  text-align: center;
}
#menu-button-check:checked ~ .l-header__button {
  background: #fff;
}
#menu-button-check:checked ~ .l-header__button span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-button-check:checked ~ .l-header__button span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-button-check:checked ~ .l-header__button span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-button-check:checked ~ .l-header__button:after {
  content: "close";
}
.l-header #menu-button-check {
  display: none;
}
@media (max-width: 499px) {
  .l-header__nav-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    transition: all 0.5s;
    background-color: #fff;
  }
  .l-header__nav-container > div {
    position: absolute;
    top: 0px;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    overflow-y: auto;
    padding-top: 50px;
  }
}
.l-header__nav-menu .menu-item {
  list-style: none;
}
@media (min-width: 500px) {
  .l-header__nav-menu {
    display: flex;
    gap: 0;
  }
}
@media (min-width: 500px) and (min-width: 1500px) {
  .l-header__nav-menu {
    gap: 0px;
  }
}
@media (min-width: 500px) {
  .l-header__nav-menu .sub-menu {
    display: none;
  }
  .l-header__nav-menu .menu-item a {
    display: block;
    color: #333;
    color: #003d75;
    font-weight: 700;
  }
  .l-header__nav-menu .menu-item > a {
    text-align: center;
    text-decoration: none;
    height: 100px;
    padding: 0 0.5em;
    display: flex;
    align-items: center;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
}
@media (min-width: 500px) and (min-width: 1500px) {
  .l-header__nav-menu .menu-item > a {
    padding: 0 15px;
  }
}
@media (min-width: 500px) {
  .l-header__nav-menu .menu-item > a:hover {
    background: #fff100;
  }
  .l-header__nav-menu .menu-item > .sub-menu {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    padding-top: 1px;
    padding-bottom: 1px;
    background: #003D75;
  }
  .l-header__nav-menu .menu-item > .sub-menu .menu-item {
    text-align: left;
  }
  .l-header__nav-menu .menu-item > .sub-menu a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 8px;
    height: 120px;
    line-height: 180%;
    text-decoration: none;
    background: #fff;
    overflow: hidden;
    position: relative;
    transition-duration: 0.4s;
    z-index: 2;
  }
  .l-header__nav-menu .menu-item > .sub-menu a::after {
    background: #fff100;
    border-radius: 50%;
    content: "";
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity 0.5s, transform 0s;
    transition-delay: 0s, 0.4s;
  }
  .l-header__nav-menu .menu-item > .sub-menu a:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity 0.8s, transform 0.6s ease-in-out;
  }
  .l-header__nav-menu > .menu-item:hover .sub-menu {
    display: grid;
  }
}
@media (max-width: 499px) {
  .l-header__nav-menu {
    width: 100%;
    padding: 30px 0 0 0;
  }
  .l-header__nav-menu .menu-item {
    border-bottom: solid 1px #003D75;
  }
  .l-header__nav-menu .menu-item a {
    display: block;
    position: relative;
    width: 100%;
    padding: 11px 25px;
    font-size: 18px;
    box-sizing: border-box;
    color: #003D75;
    text-decoration: none;
    position: relative;
  }
  .l-header__nav-menu .menu-item a small {
    display: none;
  }
  .l-header__nav-menu .menu-item a a {
    width: 2.5em;
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    text-align: center;
  }
  .l-header__nav-menu .sub-menu {
    list-style: none;
  }
  .l-header__nav-menu .sub-menu a {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.04);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .l-header__nav-menu .sub-menu li {
    border-bottom: 0;
  }
  .l-header__nav-menu .sub-menu-more {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  .l-header__nav-menu .sub-menu-active > .sub-menu {
    display: block;
  }
}
#menu-button-check:checked ~ .l-header__nav-container {
  left: 0; /*メニューを画面内へ*/
}

.l-footer {
  padding-top: 60px;
  padding-bottom: 40px;
}
.l-footer__inner {
  max-width: 1020px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .l-footer__inner {
    display: flex;
    justify-content: space-between;
  }
}
.l-footer__company-text {
  margin-top: 32px;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 168.75%;
}
@media (min-width: 500px) {
  .l-footer__company-text {
    font-size: 16px;
  }
}
.l-footer__sub {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-footer__nav-menu {
  list-style: none;
}
@media (max-width: 1329px) {
  .l-footer__nav-menu {
    display: none;
  }
}
.l-footer__nav-menu a {
  color: #000;
  text-decoration: none;
}
.l-footer__nav-menu li {
  margin-top: 0.3em;
}
.l-footer__nav-menu > li {
  position: relative;
  padding-left: 20px;
}
.l-footer__nav-menu > li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #003D75;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}
.l-footer__nav-menu .sub-menu {
  margin-left: 0.5em;
  list-style: none;
}
.l-footer__nav-menu .sub-menu li {
  position: relative;
  padding-left: 1em;
}
.l-footer__nav-menu .sub-menu li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}
.l-footer__copyright {
  margin-top: 60px;
  font-size: 15px;
  font-weight: 400;
  line-height: 27px; /* 180% */
}
@media (min-width: 992px) {
  .l-footer__copyright {
    text-align: right;
  }
}

/*--------------------------------------*
 * object
 *--------------------------------------*/
.p-single-nav a {
  display: block;
  position: relative;
  padding: 20px 30px;
  text-align: center;
  line-height: 1.1;
  text-decoration: none;
}
@media (max-width: 499px) {
  .p-single-nav a {
    margin-bottom: 5px;
    border: 1px solid #eee;
  }
}
.p-single-nav__alignleft a:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -0.5em;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-135deg);
}
.p-single-nav__alignright a:before {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -0.5em;
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

.p-content-header {
  margin-top: 1px;
  color: #fff;
  background: #003D75;
}
.p-content-header__inner {
  width: calc(100% - 30px);
  margin-inline: auto;
  height: 120px;
  display: flex;
  align-items: center;
  background: url(../img/p-page-home-mission_figure.svg) no-repeat;
  background-size: auto 100%;
}
@media (min-width: 1400px) {
  .p-content-header__inner {
    width: 1340px;
  }
}
@media (min-width: 500px) {
  .p-content-header__inner {
    height: 260px;
  }
}
.p-content-header__heading {
  padding-left: 60px;
  font-size: 23px;
  font-weight: 700;
}
@media (min-width: 500px) {
  .p-content-header__heading {
    padding-left: 170px;
    font-size: 36px;
  }
}

.c-container-home > * {
  width: calc(100% - 30px);
  margin-inline: auto;
}
@media (min-width: 1400px) {
  .c-container-home > * {
    width: 1340px;
  }
}

.p-page-home-mv {
  position: relative;
}
.p-page-home-mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 61, 117, 0.2);
  position: absolute;
  left: 0;
  top: 0;
}
.p-page-home-mv img {
  width: 100%;
}
.p-page-home-mv video {
  width: 100%;
  vertical-align: bottom;
}
.p-page-home-mv a {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: block;
  padding: 12px 1em;
  color: #fff;
  background: #333;
  text-decoration: none;
}
.p-page-home-mv a:hover, .p-page-home-mv a:active, .p-page-home-mv a:focus {
  color: #fff100;
  text-decoration: none;
}

.p-page-home-mission {
  position: relative;
  color: #fff;
  background: #003d75;
}
.p-page-home-mission__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1330px) {
  .p-page-home-mission__inner {
    flex-direction: row;
    justify-content: center;
  }
}
.p-page-home-mission__title {
  display: flex;
  align-items: center;
  font-size: 1.5em;
  font-size: 24px;
  padding-top: 30px;
  font-weight: 700;
  line-height: 36px; /* 150% */
}
@media (min-width: 1330px) {
  .p-page-home-mission__title {
    padding-top: 0;
    width: calc(50% - 148px);
    font-size: 24px;
  }
}
@media (max-width: 499px) {
  .p-page-home-mission__title br {
    display: none;
  }
}
.p-page-home-mission__title.anim-box {
  opacity: 1;
  position: relative;
}
.p-page-home-mission__title::after {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #003d75;
  position: absolute;
  right: 0;
  top: 0;
}
.p-page-home-mission__title.is-animated::after {
  width: 0;
}
@media (max-width: 1329px) {
  .p-page-home-mission__image {
    position: absolute;
    right: 5px;
    top: 0;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .p-page-home-mission__image {
    display: none;
  }
}
.p-page-home-mission__image img {
  height: 100%;
  width: auto;
}
.p-page-home-mission__text {
  display: flex;
  align-items: center;
  padding: 30px 0;
  font-size: 1.2vw;
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
}
@media (min-width: 992px) {
  .p-page-home-mission__text {
    width: calc(100% - 168px);
    padding: 58px 0;
  }
}
@media (min-width: 1330px) {
  .p-page-home-mission__text {
    font-size: 16px;
    width: 50%;
  }
}

.p-page-home-strong-head {
  position: relative;
  margin-top: 56px;
}
.p-page-home-strong-head__inner {
  position: relative;
  padding-bottom: 20px;
  background: #fff;
}
.p-page-home-strong-head__inner::after {
  content: "";
  display: block;
  height: 1px;
  width: 260px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #003D75;
}
@media (max-width: 499px) {
  .p-page-home-strong-head__inner::after {
    width: 90%;
  }
}
.p-page-home-strong-head h2 {
  font-size: 30px;
  font-weight: 700;
}
.p-page-home-strong-head small {
  display: block;
  color: #003d75;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
}
.p-page-home-strong-head small::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  background: #003D75;
  border-radius: 50%;
  vertical-align: middle;
}
.p-page-home-strong-head::after {
  content: "";
  display: block;
  height: 1px;
  width: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #003D75;
  z-index: -1;
}

.p-page-home-strong {
  overflow: hidden;
  padding-bottom: 120px;
}
.p-page-home-strong__item {
  position: relative;
  margin-top: 68px;
}
.p-page-home-strong__item:first-child {
  margin-top: 0;
}
@media (min-width: 1330px) {
  .p-page-home-strong__item:nth-child(2) {
    padding-left: 50%;
    text-align: left;
    right: inherit;
    left: 0;
  }
}
.p-page-home-strong__item:nth-child(2) p {
  max-width: inherit;
}
@media (min-width: 1330px) {
  .p-page-home-strong__item:nth-child(2) .p-page-home-strong__image {
    right: calc(50% + 50px);
  }
}
.p-page-home-strong__content {
  padding: 60px 0;
}
.p-page-home-strong__content h3 {
  color: #003D75;
  font-size: 24px;
  font-weight: 700;
  line-height: 130.556%;
}
@media (min-width: 500px) {
  .p-page-home-strong__content h3 {
    font-size: 36px;
  }
}
.p-page-home-strong__content p {
  margin-top: 17px;
  font-size: 17px;
  font-weight: 400;
}
@media (min-width: 500px) {
  .p-page-home-strong__content p {
    max-width: 50%;
  }
}
.p-page-home-strong__content-heading {
  overflow: hidden;
}
.p-page-home-strong__image {
  text-align: right;
  position: relative;
}
@media (min-width: 1330px) {
  .p-page-home-strong__image {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 50%;
  }
}
@media (max-width: 991px) {
  .p-page-home-strong__image img {
    display: inline-block;
    max-width: 90%;
  }
}
.p-page-home-strong__image.anim-box {
  opacity: 1;
}
.p-page-home-strong__image::after {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
}
.p-page-home-strong__image.is-animated::after {
  width: 0;
}
.p-page-home-strong__content-more {
  margin-top: 27px;
}

.p-page-home-video {
  position: fixed;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  background: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.p-page-home-video video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 画像全体を収める（見切れない） */
  object-position: center;
  vertical-align: bottom;
}
.p-page-home-video.is-visible {
  top: 0;
  opacity: 1;
}
.p-page-home-video a {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  padding: 12px 1em;
  color: #fff;
  background: #333;
  text-decoration: none;
}
.p-page-home-video a:hover, .p-page-home-video a:active, .p-page-home-video a:focus {
  color: #fff100;
  text-decoration: none;
}

.p-page-company-access figure {
  margin-top: 1.6em;
  margin-bottom: 1.6em;
}

.p-page-incinerator-head {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 140px;
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .p-page-incinerator-head {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .p-page-incinerator-head > * {
    width: 50%;
  }
}
.p-page-incinerator-head h2 {
  color: #003d75;
  font-size: 26px;
  font-weight: 700;
  line-height: 130%; /* 130.556% */
}
@media (min-width: 500px) {
  .p-page-incinerator-head h2 {
    font-size: 36px;
  }
}
.p-page-incinerator-head p {
  color: #4c4948;
  font-size: 17px;
  font-weight: 400;
  line-height: 211%; /* 211.765% */
}

section[class*=p-page-incinerator-]:first-child .p-page-incinerator-head {
  margin-top: 100px;
}
section[class*=p-page-incinerator-] h3 + figure {
  text-align: center;
}

.p-page-incineration-image {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 500px) {
  .p-page-incineration-image {
    flex-direction: row;
  }
}

.p-page-cleaning-photos {
  margin-top: 80px;
}
.p-page-cleaning-photos__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
}
@media (min-width: 500px) {
  .p-page-cleaning-photos__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
  }
}
.p-page-cleaning-photos__item figure {
  margin: 0;
}

.p-page-waste-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
}
@media (min-width: 500px) {
  .p-page-waste-photos {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
  }
}
.p-page-waste-photos figcaption {
  margin-top: 12px;
  color: #000;
}
@media (max-width: 499px) {
  .p-page-waste-photos figcaption {
    margin-top: 4px;
    font-size: 0.9em;
  }
}

.p-page-waste-image1 {
  margin-top: 120px;
}

.p-page-waste-image2 {
  margin-top: 40px;
}

@media (max-width: 499px) {
  .p-page-group-omtecnos p br {
    display: none;
  }
}
.p-page-group-omtecnos figure {
  margin-top: 40px;
}

.p-page-group-row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 500px) {
  .p-page-group-row {
    flex-direction: row;
  }
  .p-page-group-row > * {
    width: 50%;
  }
  .p-page-group-row .p-page-group-col:last-child {
    padding-left: 40px;
  }
  .p-page-group-row .p-page-group-col:last-child figure {
    margin-bottom: 20px;
    text-align: right;
  }
}
.p-page-group-row table {
  width: 100%;
}

.p-page-licence .wp-block-table-licence {
  margin-top: 10px;
}
.p-page-licence .wp-block-table-licence table {
  width: 100%;
}
.p-page-licence .wp-block-table-licence th {
  width: 10em;
}

.p-page-contact dl {
  display: flex;
  gap: 0.5em;
  margin-top: 2em;
  font-size: 17px;
  text-align: center;
  font-weight: 400;
  line-height: 120%;
}
@media (min-width: 500px) {
  .p-page-contact dl {
    gap: 2em;
  }
}
.p-page-contact dl a {
  color: #4c4948;
  text-decoration: none;
}
@media (min-width: 500px) {
  .p-page-contact dl {
    font-size: 20px;
  }
}
.p-page-contact dt span {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  color: #000;
}
@media (min-width: 500px) {
  .p-page-contact dt span {
    width: 7em;
  }
}
.p-page-contact dt span::before, .p-page-contact dt span::after {
  position: absolute;
  top: 0;
  content: "";
  width: 8px;
  height: 100%;
  display: inline-block;
}
.p-page-contact dt span::before {
  border-left: solid 1px black;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
  left: 0;
}
.p-page-contact dt span::after {
  content: "";
  border-top: solid 1px black;
  border-right: solid 1px black;
  border-bottom: solid 1px black;
  right: 0;
}
.p-page-contact dd {
  font-weight: bold;
}
@media (min-width: 500px) {
  .p-page-contact dd {
    font-size: 1.1em;
  }
}

.p-page-contact-form form {
  display: block;
  margin-top: 40px;
  margin-bottom: 45px;
  padding: 30px 20px 40px;
  background: #fff;
}
@media (max-width: 499px) {
  .p-page-contact-form form {
    margin-top: 10px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
.p-page-contact-form form .require {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px 4px;
  color: #fff;
  font-weight: normal;
  font-size: 13px;
  line-height: 1;
  vertical-align: bottom;
  background: #c00;
}
.p-page-contact-form form .form-error {
  color: #e84f3f;
}
.p-page-contact-form form dl {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
  flex-direction: column;
}
@media (min-width: 500px) {
  .p-page-contact-form form dl {
    flex-direction: row;
    gap: 30px;
  }
}
.p-page-contact-form form dl dt {
  margin-bottom: 10px;
  padding-top: 10px;
  line-height: 1;
}
@media (min-width: 500px) {
  .p-page-contact-form form dl dt {
    width: 14em;
    text-align: right;
  }
}
@media (max-width: 499px) {
  .p-page-contact-form form dl dt:before {
    content: "■";
  }
}
.p-page-contact-form form dl dd {
  flex-grow: 1;
}
.p-page-contact-form form input[type=text] {
  width: 100%;
  height: 40px;
  padding-left: 1em;
  padding-right: 1em;
  font-size: 18px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.p-page-contact-form form label {
  display: inline-block;
  padding-top: 6px;
}
.p-page-contact-form form textarea {
  width: 100%;
  height: 8em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  font-size: 18px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.p-page-contact-form form .submit-wrap {
  text-align: center;
}
.p-page-contact-form form .submit-wrap button,
.p-page-contact-form form .submit-wrap input {
  margin-top: 30px;
  width: 223px;
  display: inline-block;
  padding: 15px;
  color: #fff;
  font-size: 14.5px;
  background: #003D75;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
}
.p-page-contact-form form .submit-wrap button:disabled,
.p-page-contact-form form .submit-wrap input:disabled {
  background: #ccc;
  cursor: default;
}

.p-page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.p-page-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #000;
}
.p-page-top a:before {
  content: "";
  margin-top: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-bottom: 14px solid #fff;
  border-top: 0;
}

.wp-block-table.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
  flex-grow: 0;
}

.page-content h2.wp-block-heading {
  margin-top: 90px;
  margin-bottom: 50px;
  color: #003D75;
  font-size: 27px;
  font-weight: 700;
  line-height: 130%; /* 130.556% */
}
@media (min-width: 500px) {
  .page-content h2.wp-block-heading {
    font-size: 36px;
  }
}
.page-content h3.wp-block-heading {
  margin-bottom: 28px;
  margin-top: 60px;
  padding-bottom: 12px;
  border-bottom: 1px solid #4c4948;
  color: #4c4948;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 33.8px */
  overflow: hidden;
}
@media (min-width: 500px) {
  .page-content h3.wp-block-heading {
    font-size: 26px;
  }
}
.page-content h3.wp-block-heading span {
  display: inline-block;
}
.page-content h4.wp-block-heading {
  margin-top: 34px;
  margin-bottom: 8px;
}
.page-content h4.wp-block-heading span {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
@media (min-width: 500px) {
  .page-content h4.wp-block-heading span {
    font-size: 24px;
  }
}
.page-content h4.wp-block-heading span::before, .page-content h4.wp-block-heading span::after {
  position: absolute;
  top: 0;
  content: "";
  width: 8px;
  height: 100%;
  display: inline-block;
}
.page-content h4.wp-block-heading span::before {
  border-left: solid 1px black;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
  left: 0;
}
.page-content h4.wp-block-heading span::after {
  content: "";
  border-top: solid 1px black;
  border-right: solid 1px black;
  border-bottom: solid 1px black;
  right: 0;
}
@media (max-width: 499px) {
  .page-content .wp-block-table th,
  .page-content .wp-block-table td {
    white-space: nowrap;
  }
}
.page-content .wp-block-table table th {
  position: relative;
  padding: 20px;
  min-width: 12em;
  color: #003D75;
  font-weight: 700;
  text-align: left;
}
.page-content .wp-block-table table th::after {
  content: "";
  display: block;
  width: calc(100% - 10px);
  height: 1px;
  background: #003D75;
  position: absolute;
  left: 0;
  top: 0;
}
.page-content .wp-block-table table td {
  padding: 20px 30px 20px 20px;
  border-top: 1px solid #796a56;
}
@media (max-width: 499px) {
  .page-content .wp-block-table-list th,
  .page-content .wp-block-table-list td {
    white-space: nowrap;
  }
}
.page-content .wp-block-table-list table {
  width: 100%;
}
.page-content .wp-block-table-list table th,
.page-content .wp-block-table-list table td {
  width: 25%;
  padding: 20px;
  border: 1px solid #aaa;
}
.page-content .wp-block-table-list table thead th {
  text-align: center;
  background: #eee;
}
.page-content .wp-block-table-list table thead td {
  text-align: center;
}
.page-content .wp-block-table-list table tbody th {
  position: relative;
  font-weight: 700;
  text-align: left;
  color: #fff;
  background: #003D75;
}
.page-content .wp-block-table-list table tbody td {
  text-align: center;
}
@media (max-width: 499px) {
  .page-content .wp-block-table-licence th,
  .page-content .wp-block-table-licence td {
    white-space: nowrap;
  }
}
.page-content .wp-block-table-licence table th,
.page-content .wp-block-table-licence table td {
  border: 1px solid #aaa;
}
.page-content .wp-block-table-licence table th {
  padding: 10px 20px;
  color: #003D75;
  font-weight: 700;
  text-align: left;
}
.page-content .wp-block-table-licence table td {
  padding: 10px 20px;
}
.page-content ul.is-style-default {
  list-style: none;
}
.page-content ul.is-style-default li {
  position: relative;
  margin-bottom: 0.8em;
  padding-left: 20px;
}
.page-content ul.is-style-default li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #003D75;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}
.page-content ul.is-style-inline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.page-content ul.is-style-inline li {
  position: relative;
  margin-bottom: 0.8em;
  padding-left: 14px;
  margin-right: 1.5em;
  white-space: nowrap;
}
.page-content ul.is-style-inline li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #003D75;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}
.page-content .block-row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 500px) {
  .page-content .block-row {
    flex-direction: row;
    justify-content: space-between;
  }
  .page-content .block-row > * {
    width: calc(50% - 20px);
  }
}

.wp-block-button__link {
  display: inline-block;
  position: relative;
  min-width: 240px;
  padding: 17px 60px 17px 34px;
  background: #003D75;
  border-radius: 3em;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}
.wp-block-button__link:hover, .wp-block-button__link:active, .wp-block-button__link:focus {
  color: #fff;
}
.wp-block-button__link::after {
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  background: url(../img/icon_btn.svg) center;
  background-size: 100%;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.wp-block-button__link:hover::after {
  right: 5px;
}

.p-wp-pagenavi .wp-pagenavi {
  margin-top: 80px;
  clear: both;
  text-align: center;
}
@media (max-width: 499px) {
  .p-wp-pagenavi .wp-pagenavi .pages, .p-wp-pagenavi .wp-pagenavi .last, .p-wp-pagenavi .wp-pagenavi .extend {
    display: none;
  }
}
@media (max-width: 340px) {
  .p-wp-pagenavi .wp-pagenavi > * {
    display: none;
  }
  .p-wp-pagenavi .wp-pagenavi > .pages,
  .p-wp-pagenavi .wp-pagenavi > .previouspostslink,
  .p-wp-pagenavi .wp-pagenavi > .nextpostslink {
    display: inline;
  }
}
.p-wp-pagenavi .wp-pagenavi a, .p-wp-pagenavi .wp-pagenavi > span {
  color: #999;
  background-color: #FFF;
  border: solid 1px #e0e0d2;
  padding: 8px 15px;
  margin: 0 2px;
  white-space: nowrap;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}
.p-wp-pagenavi .wp-pagenavi a:hover {
  color: #FFF;
  background-color: #999;
  border-color: #999;
}
.p-wp-pagenavi .wp-pagenavi span.current {
  color: #FFF;
  background-color: #003D75;
  border-color: #003D75;
  font-weight: bold;
}

.p-footer-cta {
  margin-top: 120px;
  position: relative;
  background: url(../img/footer_bg.jpg) no-repeat center;
  background-size: cover;
}
.is-home .p-footer-cta {
  margin-top: 0;
}
.p-footer-cta::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  background: #003D75;
  z-index: 0;
}
.p-footer-cta__inner {
  position: relative;
  padding: 80px 15px 72px;
  color: #fff;
  text-align: center;
  z-index: 1;
}
.p-footer-cta h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 27px; /* 84.375% */
}
@media (min-width: 500px) {
  .p-footer-cta h2 {
    font-size: 32px;
  }
}
.p-footer-cta h2 small {
  display: block;
  margin-top: 14px;
  color: #fff100;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 36px; /* 180% */
}
.p-footer-cta p {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 500;
  line-height: 27px; /* 158.824% */
}
@media (max-width: 499px) {
  .p-footer-cta p {
    font-size: 16px;
    text-align: left;
  }
  .p-footer-cta p br {
    display: none;
  }
}
.p-footer-cta__tel {
  margin-top: 43px;
  text-align: center;
}
.p-footer-cta__tel img {
  width: 53px;
}
.p-footer-cta__tel a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-family: Roboto;
  font-size: 36px;
  font-weight: 700;
  text-decoration: none;
}
.p-footer-cta__btn {
  margin-top: 43px;
}
.p-footer-cta__btn a {
  display: inline-flex;
  align-items: center;
  padding: 16px 50px;
  gap: 10px;
  line-height: 1;
  color: #003d75;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.p-footer-cta__btn a:hover {
  background: #fff100;
}
.p-footer-cta__btn a img {
  width: 26px;
}

/* https://getbootstrap.jp/docs/5.3/utilities/display/ */
.u-d-none {
  display: none;
}

@media (min-width: 500px) {
  .u-d-sm-block {
    display: block;
  }
}

@media (min-width: 992px) {
  .u-d-md-block {
    display: block;
  }
}

@media (min-width: 1330px) {
  .u-d-lg-block {
    display: block;
  }
}

@media (min-width: 500px) {
  .u-d-sm-inline {
    display: inline;
  }
}

@media (min-width: 992px) {
  .u-d-md-inline {
    display: inline;
  }
}

@media (min-width: 1330px) {
  .u-d-lg-inline {
    display: inline;
  }
}

@media (min-width: 500px) {
  .u-d-sm-inline-block {
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .u-d-md-inline-block {
    display: inline-block;
  }
}

@media (min-width: 1330px) {
  .u-d-lg-inline-block {
    display: inline-block;
  }
}

@media (min-width: 500px) {
  .u-d-sm-none {
    display: none;
  }
}

@media (min-width: 992px) {
  .u-d-md-none {
    display: none;
  }
}

@media (min-width: 1330px) {
  .u-d-lg-none {
    display: none;
  }
}

.u-mt-0 {
  margin-top: 0;
}

/*-------------------
* component
-------------------*/
.c-container > * {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.alignfull .wp-block-group__inner-container > * {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.alignwide .wp-block-group__inner-container > * {
  margin-left: auto;
  margin-right: auto;
}

.c-container > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
.wp-block-group.alignwide .wp-block-group__inner-container > * {
  width: calc(100% - 30px);
}
@media (min-width: 1200px) {
  .c-container > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
  .wp-block-group.alignwide .wp-block-group__inner-container > * {
    width: 1140px;
  }
}/*# sourceMappingURL=onomichikaihatsu.css.map */