@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6em;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
  min-height: 100vh;
}

article::before {
  content: "";
  display: block;
  height: 90px;
  padding-top: 90px;
  margin-top: -90px;
}

section::before {
  content: "";
  display: block;
  height: 90px;
  padding-top: 90px;
  margin-top: -90px;
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.8;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*
 * Mixin
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */
.nav-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.1);
}
.nav-header__container {
  display: flex;
  justify-content: flex-end;
  max-width: 992px;
  height: 9rem;
  margin: 0 auto;
  padding: 0 0 0 15px;
  transition: all 0.2s;
}
@media screen and (min-width: 992px) {
  .nav-header__container {
    padding: 0 15px;
  }
}
.nav-header__logo {
  font-family: "Poppins", sans-serif, "游ゴシック体", "Yu Gothic", sans-serif;
  font-weight: "700";
  font-style: normal;
  display: flex;
  align-items: center;
  margin-right: auto;
  color: #222222;
  font-size: 2rem;
}
.nav-header__logo-image {
  display: block;
  height: 3rem;
}
.nav-header__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .nav-header__menu {
    display: flex;
    align-items: center;
  }
}
.nav-header__menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.nav-header__menu-item:last-child {
  width: 200px;
}
.nav-header__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #222222;
  text-align: center;
  font-size: 1.5rem;
  padding: 0 10px;
  min-width: 82px;
}
.nav-header__link:after {
  display: block;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #5AD1D1;
  content: "";
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transition: all 0.2s;
}
.nav-header__link:hover:after {
  opacity: 1;
  width: 100%;
}
.nav-header__contact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  width: 100%;
  background-color: #5AD1D1;
  color: #ffffff;
  padding: 0.4rem 3.2rem;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 700;
}
.nav-header__contact::after {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5df";
}
.nav-header__contact:hover {
  background-color: rgb(70.0592417062, 203.4407582938, 203.4407582938);
}
.nav-header__contact-box {
  padding-left: 10px;
  width: 200px;
}
.nav-header__contact-tel img {
  width: 100%;
  height: auto;
}
.nav-header__contact-text {
  font-size: 0.9rem;
}
.nav-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 9rem;
  height: 9rem;
  background: #5AD1D1;
  cursor: pointer;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .nav-header__toggle {
    display: none;
  }
}
.nav-header__toggle:hover {
  background: rgb(70.0592417062, 203.4407582938, 203.4407582938);
}
.nav-header__toggle-line {
  display: block;
  width: 35%;
  border-bottom: 2px solid #fff;
}
.nav-header__toggle-line:nth-child(2) {
  margin: 10% 0px;
}

.nav-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1002;
}
.nav-drawer__container {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  max-width: 350px;
  min-width: 200px;
  background: #fff;
  border-left: #e2e2e2 1px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}
.nav-drawer[data-open=true] .nav-drawer__container {
  animation-name: menu-container-appeared;
}
.nav-drawer[data-open=false] .nav-drawer__container {
  animation-name: menu-container-leaved;
}
.nav-drawer__menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}
.nav-drawer__menu-item {
  border-bottom: #e2e2e2 1px dashed;
}
.nav-drawer__menu-item:hover {
  background: #efefef;
}
.nav-drawer__link {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  letter-spacing: 0.01em;
  padding: 1em 2.5em 1em 2em;
  text-decoration: none;
}
.nav-drawer__link-main {
  display: block;
  font-weight: 500;
}
.nav-drawer__link-sub {
  color: #aaa;
  display: block;
}
.nav-drawer__menu-button {
  display: flex;
  margin: 0px;
  padding: 0px;
}
.nav-drawer__button-close {
  position: relative;
  background-color: #5AD1D1;
  margin: 0px 0px 0px auto;
  padding: 0px;
  width: 9rem;
  height: 9rem;
  border: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
  background: rgb(109.9407582938, 214.5592417062, 214.5592417062);
}
.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #fff;
}
.nav-drawer__button-close-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-drawer__button-close-line:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}
.nav-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.08);
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}
.nav-drawer[data-open=true] .nav-drawer__overlay {
  animation-name: menu-overlay-appeared;
}
.nav-drawer[data-open=false] .nav-drawer__overlay {
  animation-name: menu-overlay-leaved;
}

.mail::before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e158";
  margin-right: 5px;
}

.nav-pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: -1000;
  width: 70px;
  height: 70px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  background: #5AD1D1;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}
.nav-pagetop.active {
  opacity: 1;
  z-index: 1000;
}
.nav-pagetop:before {
  display: block;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5ce";
  transition: all 0.2s;
}
.nav-pagetop:after {
  content: "PAGETOP";
  display: block;
  padding: 4px 0px;
}
.nav-pagetop:hover {
  background: rgb(70.0592417062, 203.4407582938, 203.4407582938);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}
.nav-pagetop:hover:before {
  transform: translateY(-4px);
}

.service-guide {
  padding: 12.4rem 15px;
}
.service-guide__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 2.6rem 15px;
}
.service-guide__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 0;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .service-guide__list {
    flex-direction: row;
    gap: 90px;
    display: flex;
  }
}
.service-guide__list-item {
  z-index: 2;
  text-align: center;
  color: #aaaaaa;
  font-size: 2rem;
  letter-spacing: 0.5em;
}
@media screen and (min-width: 992px) {
  .service-guide__list-item {
    width: calc(33% - 60px);
  }
}
.service-guide__list-item a:hover {
  color: #ffffff;
}
.service-guide__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  font-family: "Poppins", sans-serif, "游ゴシック体", "Yu Gothic", sans-serif;
  font-weight: "700";
  font-style: normal;
  width: 100%;
  max-width: 600px;
  padding: 1rem;
  background: #aaaaaa;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.service-guide__button:hover {
  background: rgb(70.0592417062, 203.4407582938, 203.4407582938);
}

.service-navi__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 2.6rem 15px;
}
.service-navi__title {
  color: #5AD1D1;
  font-size: 2.8rem;
  padding-bottom: 1rem;
}
.service-navi__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 0;
  padding: 0;
  gap: 20px;
}
.service-navi__list::after {
  display: block;
  content: "";
  width: calc(50% - 10px);
}
@media screen and (min-width: 992px) {
  .service-navi__list::after {
    width: calc(33% - 10px);
  }
}
.service-navi__list-item {
  z-index: 2;
  text-align: center;
  color: #5AD1D1;
  flex: 1 1 calc(50% - 10px);
  display: flex;
  align-items: stretch;
}
@media screen and (min-width: 992px) {
  .service-navi__list-item {
    flex: 1 1 calc(33% - 60px);
  }
}
.service-navi__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  width: 100%;
  max-width: 600px;
  padding: 1rem;
  border: 1px solid #5AD1D1;
  background: #ffffff;
  color: #5AD1D1;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.service-navi__button:hover {
  background: rgb(70.0592417062, 203.4407582938, 203.4407582938);
  color: #ffffff;
}
.service-navi__button:active, .service-navi__button.is-active {
  background-color: #5AD1D1;
  color: #ffffff;
  /* 必要に応じて追加 */
}
@media screen and (min-width: 992px) {
  .service-navi__button {
    font-size: 2rem;
  }
}

.service-navi-sub__list {
  display: flex;
  flex-wrap: wrap;
}
.service-navi-sub__button {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 10px;
  padding: 10px 5px;
  color: #5AD1D1;
  transition: 0.3s ease-in-out;
  font-weight: 600;
}
.service-navi-sub__button:before {
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: "";
  width: 100%;
  height: 2px;
  background: rgba(90, 209, 209, 0.1);
  transform: translateX(-50%);
}
.service-navi-sub__button:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #5AD1D1;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.service-navi-sub__button:hover {
  opacity: 0.7;
}
.service-navi-sub__button:hover:after {
  transform: scale(1, 1);
}

.mainvisual {
  position: relative;
  overflow: hidden;
  margin-top: 9rem;
}
.mainvisual::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.3);
  content: "";
}
.mainvisual__container {
  position: absolute;
  top: 50%;
  left: 36%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
}
.mainvisual__text-main {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
}
.mainvisual__text-main img {
  max-width: 50vw;
}
@media screen and (min-width: 992px) {
  .mainvisual__text-main img {
    max-width: 40vw;
    max-height: 550px;
  }
}

/* スライダー
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.slick-slider {
  padding: 0;
  z-index: 1;
}

/*------ スライダーの高さ ------*/
.slick-slide {
  max-height: 700px;
}

/*------ スライダーの横幅 ------*/
.slider {
  width: 100%;
  margin: 0 auto;
}

.slick-list {
  height: 100%;
}

/*------ スライダー画像 ------*/
.slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*---------- 矢印 ----------*/
.slider .slick-next {
  right: 0 !important;
}

.slider .slick-prev {
  left: 0 !important;
}

.slider .slick-arrow {
  width: initial !important;
  height: initial !important;
  z-index: 2 !important;
}

.slider .slick-arrow:before {
  font-size: 30px !important;
}

.pagevisual {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(9rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 992px) {
  .pagevisual {
    padding-top: calc(9rem + 9.6rem);
    padding-bottom: 9.6rem;
  }
}
.pagevisual.service {
  background-image: url("../../img/page-header_servis.jpg");
}
.pagevisual.works {
  background-image: url("../../img/page-header_works.jpg");
}
.pagevisual.works-1 {
  background-image: url("../../img/page-header_works-1.jpg");
}
.pagevisual.works-2 {
  background-image: url("../../img/page-header_works-2.jpg");
}
.pagevisual.works-3 {
  background-image: url("../../img/page-header_works-3.jpg");
}
.pagevisual.works-4 {
  background-image: url("../../img/page-header_works-4.jpg");
}
.pagevisual.works-5 {
  background-image: url("../../img/page-header_works-5.jpg");
}
.pagevisual.demolition {
  background-image: url("../../img/page-header_works-demo.jpg");
}
.pagevisual.recycling {
  background-image: url("../../img/page-header_works-re.jpg");
}
.pagevisual.company {
  background-image: none;
}
.pagevisual__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 9.4rem 15px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
}
.pagevisual__text-main {
  font-family: "Poppins", sans-serif, "游ゴシック体", "Yu Gothic", sans-serif;
  font-weight: "700";
  font-style: normal;
  color: #ffffff;
  font-size: 3.2rem;
}
@media screen and (min-width: 992px) {
  .pagevisual__text-main {
    font-size: 4rem;
  }
}
.pagevisual__text-sub {
  color: #ffffff;
}

.breadcrumbs__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 0.8rem 15px;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs__list-item {
  font-size: 1.6rem;
}
.breadcrumbs__list-item:not(:first-child)::before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5df";
}
.breadcrumbs__link {
  color: #222222;
}
.breadcrumbs__link:hover, .breadcrumbs__link:focus {
  text-decoration: underline;
}

.page-heading__content {
  margin: 0;
  padding: 0;
}
.page-heading__content--left {
  text-align: left;
}
.page-heading__content--center {
  text-align: center;
}
.page-heading__content--right {
  text-align: right;
}
.page-heading__text-main {
  font-family: "Poppins", sans-serif, "游ゴシック体", "Yu Gothic", sans-serif;
  font-weight: "700";
  font-style: normal;
  font-size: 5rem;
  line-height: 1;
}
.page-heading__content--left .page-heading__text-main::after {
  margin-left: 0;
  margin-right: auto;
}
.page-heading__content--center .page-heading__text-main::after {
  margin-left: auto;
  margin-right: auto;
}
.page-heading__content--right .page-heading__text-main::after {
  margin-left: auto;
  margin-right: 0;
}
.page-heading__text-sub {
  font-size: 2.4rem;
  padding-top: 1.4rem;
  margin-left: 0;
  margin-right: auto;
  position: relative;
}
.page-heading__text-sub::before {
  display: inline-block;
  text-align: center;
  width: 218px;
  height: 1px;
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  content: "";
}
.page-heading__message {
  margin: 0 auto;
  padding-top: 6.4rem;
  color: #5AD1D1;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: left;
}

.page-heading-title__content {
  margin: 0;
  padding: 0;
}
.page-heading-title__text-main {
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  color: #5AD1D1;
}
.page-heading-title__text-sub {
  font-family: "Poppins", sans-serif, "游ゴシック体", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 4rem;
  line-height: 1.2;
  color: #F2F2F2;
  padding-top: 1.4rem;
  overflow: hidden;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .page-heading-title__text-sub {
    font-size: 12rem;
  }
}
.page-heading-title__text-sub--right {
  text-align: right;
}
.page-heading-title__message {
  margin: 0 auto;
  padding-top: 1rem;
  color: #5AD1D1;
  font-weight: 400;
  font-size: 1.8rem;
  text-align: left;
}

.page-heading-sub__content {
  margin: 0;
  padding: 0;
}
.page-heading-sub__content--left {
  text-align: left;
}
.page-heading-sub__content--center {
  text-align: center;
}
.page-heading-sub__content--right {
  text-align: right;
}
.page-heading-sub__text {
  position: relative;
  font-size: 2.4rem;
}
.page-heading-sub__text:before {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 1.6em;
  margin-right: 0.8rem;
  border-radius: 3px;
  background: #5AD1D1;
  content: "";
}
.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #5AD1D1;
  font-weight: 400;
  font-size: 1.6rem;
}

.footer__container {
  max-width: 992px;
  margin: 0 auto;
}
.footer__copy {
  background: #F2F2F2;
  padding: 1.6rem 0;
  color: #222222;
  font-size: 1.2rem;
  text-align: center;
}

.footer-3 {
  padding: 3rem 2rem 1.5rem;
}
.footer-3__container {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .footer-3__container {
    justify-items: start;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }
}
.footer-3__logo {
  width: 104px;
  height: 26px;
  margin-bottom: 0.2em;
}
.footer-3__caption {
  margin-top: 0;
  font-size: 0.75em;
}
@media only screen and (max-width: 768px) {
  .footer-3__caption br {
    display: none;
  }
}
.footer-3__title, .footer-3__link {
  margin: 0 0 0.3em;
  color: #222222;
  font-size: 0.8em;
}
.footer-3__title {
  font-weight: 600;
}
.footer-3__title a:link {
  color: #222222;
}
.footer-3__list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer-3__link {
  display: block;
}
.footer-3__link:not(:hover) {
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .footer-3__head {
    grid-column: 1/3;
  }
}

.photo-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1002;
  width: 100%;
  height: 100%;
  overflow: hidden;
  animation-duration: var(--photo-modal-duration);
  animation-fill-mode: forwards;
}
.photo-modal[data-open=true] {
  animation-name: modal-photo-open;
}
.photo-modal[data-open=false] {
  animation-name: modal-photo-close;
}
.photo-modal__container {
  max-width: 800px;
  max-height: 80%;
  margin: auto;
  overflow: auto;
}
.photo-modal__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.photo-modal .button-detail__button--next, .photo-modal .button-detail__button--prev, .photo-modal .button-detail__button--back, .photo-modal .button-detail__button, .photo-modal .photo-modal__button--next, .photo-modal .photo-modal__button--prev, .photo-modal .photo-modal__button--close, .photo-modal .photo-modal__button {
  position: absolute;
  width: 4rem;
  height: 4rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.4s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.photo-modal .button-detail__button--next:hover, .photo-modal .button-detail__button--prev:hover, .photo-modal .button-detail__button--back:hover, .photo-modal .button-detail__button:hover, .photo-modal .photo-modal__button--next:hover, .photo-modal .photo-modal__button--prev:hover, .photo-modal .photo-modal__button--close:hover, .photo-modal .photo-modal__button:hover, .photo-modal .button-detail__button--next:focus, .photo-modal .button-detail__button--prev:focus, .photo-modal .button-detail__button--back:focus, .photo-modal .button-detail__button:focus, .photo-modal .photo-modal__button--next:focus, .photo-modal .photo-modal__button--prev:focus, .photo-modal .photo-modal__button--close:focus, .photo-modal .photo-modal__button:focus {
  color: rgb(242.25, 242.25, 242.25);
  outline: none;
}
.photo-modal .button-detail__button--next::before, .photo-modal .button-detail__button--prev::before, .photo-modal .button-detail__button--back::before, .photo-modal .button-detail__button::before, .photo-modal .photo-modal__button--next::before, .photo-modal .photo-modal__button--prev::before, .photo-modal .photo-modal__button--close::before, .photo-modal .photo-modal__button::before {
  font-size: 2.5rem;
}
.photo-modal__button--close {
  top: 0;
  right: 0;
}
.photo-modal__button--close::before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cd";
}
.photo-modal__button--prev {
  top: 50%;
  left: 0;
}
.photo-modal__button--prev::before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cb";
}
.photo-modal__button--next {
  top: 50%;
  right: 0;
}
.photo-modal__button--next::before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5df";
}
.photo-modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.85);
}

.button-guide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  display: flex;
  width: 100%;
  max-width: 26rem;
  padding: 1.6rem;
  border: none;
  background: #5AD1D1;
  color: #ffffff;
  font-weight: 400;
  font-size: 1.6rem;
}
.button-guide:hover, .button-guide:focus {
  background: #2C9A9A;
  color: #ffffff;
}
.button-guide--center {
  margin: 0 auto;
}
.button-guide--left {
  margin: 0 auto 0 0;
}
.button-guide--right {
  margin: 0 0 0 auto;
}

.button-detail {
  display: flex;
  flex-wrap: wrap;
  max-width: 60rem;
  margin: 0 auto;
}
.button-detail .button-detail__button--next, .button-detail .button-detail__button--prev, .button-detail .button-detail__button--back, .button-detail .button-detail__button, .button-detail .photo-modal__button, .button-detail .photo-modal__button--close, .button-detail .photo-modal__button--prev, .button-detail .photo-modal__button--next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  margin-bottom: 2.4rem;
  padding: 1.6rem 2.4rem;
  border-radius: 0.4rem;
  background: #F2F2F2;
  color: #222222;
}
.button-detail .button-detail__button--next:hover, .button-detail .button-detail__button--prev:hover, .button-detail .button-detail__button--back:hover, .button-detail .button-detail__button:hover, .button-detail .photo-modal__button:hover, .button-detail .photo-modal__button--close:hover, .button-detail .photo-modal__button--prev:hover, .button-detail .photo-modal__button--next:hover, .button-detail .button-detail__button--next:focus, .button-detail .button-detail__button--prev:focus, .button-detail .button-detail__button--back:focus, .button-detail .button-detail__button:focus, .button-detail .photo-modal__button:focus, .button-detail .photo-modal__button--close:focus, .button-detail .photo-modal__button--prev:focus, .button-detail .photo-modal__button--next:focus {
  background: #5AD1D1;
  color: #ffffff;
}
.button-detail__button--back {
  width: 100%;
}
.button-detail__button--back:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e896";
  margin-right: 0.8rem;
}
.button-detail__button--prev {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .button-detail__button--prev {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}
.button-detail__button--prev:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cb";
  margin-right: 0.8rem;
}
.button-detail__button--next {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .button-detail__button--next {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}
.button-detail__button--next:after {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5df";
  margin-left: 0.8rem;
}

.arrow-down {
  margin: 0 auto;
  text-align: center;
}

/* 矢印が右に移動する */
.button-arrow {
  position: relative;
  /*形状*/
  display: block;
  padding: 0 20px;
  color: #5AD1D1;
  text-align: center;
  text-decoration: none;
  outline: none;
  font-size: 1.4rem;
  /*矢印と下線の形状*/
  /*hoverした際の移動*/
}
.button-arrow::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  /*下線の形状*/
  width: 90%;
  height: 1px;
  background: #5AD1D1;
  /*アニメーションの指定*/
  transition: all 0.3s;
}
.button-arrow::after {
  content: "";
  position: absolute;
  top: calc(100% - 4px);
  right: 10%;
  width: 6px;
  height: 1px;
  background: #5AD1D1;
  transform: rotate(35deg);
  transition: all 0.3s;
}
.button-arrow:hover::before {
  width: 100%;
}
.button-arrow:hover::after {
  right: 0;
}

/* 下向き三角 */
.button-arrow2 {
  position: relative;
  display: block;
  color: #5AD1D1;
  text-decoration: none;
  outline: none;
  /* 矢印の線（∨の形） */
  /* ホバー時に少し下に動かす */
}
.button-arrow2::after {
  content: "";
  position: absolute;
  top: 100%;
  /* 要素のすぐ下に配置 */
  left: 50%;
  width: 30px;
  height: 30px;
  border-left: 5px solid #5AD1D1;
  border-bottom: 5px solid #5AD1D1;
  transform: translateX(-50%) rotate(-45deg);
  transition: all 0.3s;
}
.button-arrow2:hover::after {
  top: calc(100% + 4px);
}

.pagination__list,
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pagination__list-item,
.pagination .page-numbers > li {
  margin: 0.3rem;
}
.pagination .pagination__link--next, .pagination .pagination__link.next,
.pagination .page-numbers > li > a--next, .pagination .pagination__link--prev, .pagination .pagination__link.prev,
.pagination .page-numbers > li > a--prev, .pagination .pagination__link,
.pagination .page-numbers > li > a {
  transition: background-color 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
.pagination__link,
.pagination .page-numbers > li > a {
  background-color: #F2F2F2;
  color: #222222;
}
.pagination__link:hover, .pagination__link:focus,
.pagination .page-numbers > li > a:hover,
.pagination .page-numbers > li > a:focus {
  background-color: #5AD1D1;
  color: #ffffff;
}
.pagination__link--prev, .pagination__link.prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev {
  min-width: 12rem;
  background-color: #F2F2F2;
  color: #222222;
}
.pagination__link--prev:before, .pagination__link.prev:before,
.pagination .page-numbers > li > a--prev:before,
.pagination .page-numbers > li > a.prev:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cb";
  display: inline-block;
  margin-right: 0.6rem;
  transition: transform 0.2s;
}
.pagination__link--prev:hover, .pagination__link--prev:focus, .pagination__link.prev:hover, .pagination__link.prev:focus,
.pagination .page-numbers > li > a--prev:hover,
.pagination .page-numbers > li > a--prev:focus,
.pagination .page-numbers > li > a.prev:hover,
.pagination .page-numbers > li > a.prev:focus {
  background-color: #5AD1D1;
  color: #ffffff;
}
.pagination__link--prev:hover:before, .pagination__link--prev:focus:before, .pagination__link.prev:hover:before, .pagination__link.prev:focus:before,
.pagination .page-numbers > li > a--prev:hover:before,
.pagination .page-numbers > li > a--prev:focus:before,
.pagination .page-numbers > li > a.prev:hover:before,
.pagination .page-numbers > li > a.prev:focus:before {
  transform: translateX(-4px);
}
.pagination__link--next, .pagination__link.next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
  min-width: 12rem;
  background-color: #F2F2F2;
  color: #222222;
}
.pagination__link--next:after, .pagination__link.next:after,
.pagination .page-numbers > li > a--next:after,
.pagination .page-numbers > li > a.next:after {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5df";
  display: inline-block;
  margin-left: 0.6rem;
  transition: transform 0.2s;
}
.pagination__link--next:hover, .pagination__link--next:focus, .pagination__link.next:hover, .pagination__link.next:focus,
.pagination .page-numbers > li > a--next:hover,
.pagination .page-numbers > li > a--next:focus,
.pagination .page-numbers > li > a.next:hover,
.pagination .page-numbers > li > a.next:focus {
  background-color: #5AD1D1;
  color: #ffffff;
}
.pagination__link--next:hover:after, .pagination__link--next:focus:after, .pagination__link.next:hover:after, .pagination__link.next:focus:after,
.pagination .page-numbers > li > a--next:hover:after,
.pagination .page-numbers > li > a--next:focus:after,
.pagination .page-numbers > li > a.next:hover:after,
.pagination .page-numbers > li > a.next:focus:after {
  transform: translateX(4px);
}
.pagination .pagination__text--dots, .pagination .pagination__text.dots,
.pagination .page-numbers > li > span--dots, .pagination .pagination__text--current, .pagination .pagination__text.current,
.pagination .page-numbers > li > span--current, .pagination .pagination__text,
.pagination .page-numbers > li > span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
.pagination__text,
.pagination .page-numbers > li > span {
  background-color: #F2F2F2;
  color: #222222;
}
.pagination__text--current, .pagination__text.current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current {
  background-color: #5AD1D1;
  color: #ffffff;
}
.pagination__text--dots, .pagination__text.dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
  background-color: #F2F2F2;
  color: #222222;
}

@media screen and (min-width: 992px) {
  .form__form-group {
    display: flex;
  }
}
.form__form-group-title {
  padding: 1rem;
}
@media screen and (min-width: 992px) {
  .form__form-group-title {
    width: 260px;
    padding: 1.6rem;
  }
}
.form__form-group-content {
  padding: 1rem;
  display: flex;
}
@media screen and (min-width: 992px) {
  .form__form-group-content {
    width: calc(100% - 260px);
    padding: 1.6rem;
  }
}
.form .form__label--required, .form .form__label--itemname, .form .form__label {
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
.form__label--itemname {
  color: #222222;
}
.form__label--required {
  margin-left: 0.4rem;
  padding: 0.4em 0.6em;
  border-radius: 3px;
  background: #fafafa;
  color: #aaaaaa;
  font-size: 1.4rem;
}
.form__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.form__list-item {
  margin-bottom: 0.6rem;
}
.form .form__input--check, .form .form__input--radio, .form .form__input--select, .form .form__input--textarea-half, .form .form__input--textarea, .form .form__input--text-half, .form .form__input--text, .form .form__input {
  position: relative;
  width: 100%;
  padding: 0.4rem;
}
.form .form__input--select select, .form__input--select .form select, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--text input, .form__input--text .form input {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0;
  border: 2px solid #efefef;
  background: #ffffff;
  font-weight: 400;
  font-size: 1.6rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 旧Edge対応 */
  /* IE対応 */
}
.form .form__input--select select::-ms-expand, .form__input--select .form select::-ms-expand, .form .form__input--textarea-half textarea::-ms-expand, .form__input--textarea-half .form textarea::-ms-expand, .form .form__input--textarea textarea::-ms-expand, .form__input--textarea .form textarea::-ms-expand, .form .form__input--text-half input::-ms-expand, .form__input--text-half .form input::-ms-expand, .form .form__input--text input::-ms-expand, .form__input--text .form input::-ms-expand {
  display: none;
}
.form .form__input--select select::-moz-placeholder, .form__input--select .form select::-moz-placeholder, .form .form__input--textarea-half textarea::-moz-placeholder, .form__input--textarea-half .form textarea::-moz-placeholder, .form .form__input--textarea textarea::-moz-placeholder, .form__input--textarea .form textarea::-moz-placeholder, .form .form__input--text-half input::-moz-placeholder, .form__input--text-half .form input::-moz-placeholder, .form .form__input--text input::-moz-placeholder, .form__input--text .form input::-moz-placeholder {
  color: #cccccc;
}
.form .form__input--select select::placeholder, .form__input--select .form select::placeholder, .form .form__input--textarea-half textarea::placeholder, .form__input--textarea-half .form textarea::placeholder, .form .form__input--textarea textarea::placeholder, .form__input--textarea .form textarea::placeholder, .form .form__input--text-half input::placeholder, .form__input--text-half .form input::placeholder, .form .form__input--text input::placeholder, .form__input--text .form input::placeholder {
  color: #cccccc;
}
.form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder, .form .form__input--textarea-half textarea::-ms-input-placeholder, .form__input--textarea-half .form textarea::-ms-input-placeholder, .form .form__input--textarea textarea::-ms-input-placeholder, .form__input--textarea .form textarea::-ms-input-placeholder, .form .form__input--text-half input::-ms-input-placeholder, .form__input--text-half .form input::-ms-input-placeholder, .form .form__input--text input::-ms-input-placeholder, .form__input--text .form input::-ms-input-placeholder {
  color: #cccccc;
}
.form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder, .form .form__input--textarea-half textarea:-ms-input-placeholder, .form__input--textarea-half .form textarea:-ms-input-placeholder, .form .form__input--textarea textarea:-ms-input-placeholder, .form__input--textarea .form textarea:-ms-input-placeholder, .form .form__input--text-half input:-ms-input-placeholder, .form__input--text-half .form input:-ms-input-placeholder, .form .form__input--text input:-ms-input-placeholder, .form__input--text .form input:-ms-input-placeholder {
  color: #cccccc;
}
.form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--text input, .form__input--text .form input {
  padding: 0.8rem 1.6rem;
  transition: border-color 0.4s;
}
.form .form__input--text-half input:focus, .form__input--text-half .form input:focus, .form .form__input--text input:focus, .form__input--text .form input:focus {
  border: 2px solid #5AD1D1;
}
.form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--textarea textarea, .form__input--textarea .form textarea {
  padding: 1.6rem;
  transition: border-color 0.4s;
}
.form .form__input--textarea-half textarea:focus, .form__input--textarea-half .form textarea:focus, .form .form__input--textarea textarea:focus, .form__input--textarea .form textarea:focus {
  border: 2px solid #5AD1D1;
}
.form__input--text-half {
  max-width: 50%;
}
.form__input--textarea-half {
  max-width: 50%;
}
.form__input--select {
  max-width: 300px;
}
.form__input--select select {
  padding: 0.8rem 2.4rem 0.8rem 1.6rem;
  cursor: pointer;
}
.form__input--select::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 0;
  margin: auto 0;
  border-width: 6px 4px 0;
  border-style: solid;
  border-color: #cccccc transparent transparent transparent;
  content: "";
  pointer-events: none;
}
.form__input--radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.form__input--radio .radio-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}
.form__input--radio .radio-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 1px solid #cccccc;
  border-radius: 50%;
}
.form__input--radio .radio-icon:before {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  border-radius: 50%;
  background: #5AD1D1;
  content: "";
  transition: opacity 0.4s;
}
.form__input--radio .radio-text {
  color: #cccccc;
  transition: color 0.4s;
}
.form__input--radio .radio-input:checked + .radio-icon {
  border-color: #5AD1D1;
}
.form__input--radio .radio-input:checked + .radio-icon:before {
  opacity: 1;
}
.form__input--radio .radio-input:checked ~ .radio-text {
  color: #5AD1D1;
}
.form__input--check {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.form__input--check .check-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}
.form__input--check .check-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 2px solid #cccccc;
}
.form__input--check .check-icon:after {
  opacity: 0;
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  content: "";
  transition: opacity 0.4s;
}
.form__input--check .check-text {
  color: #cccccc;
  transition: color 0.4s;
}
.form__input--check .check-input:checked + .check-icon {
  border-color: #5AD1D1;
}
.form__input--check .check-input:checked + .check-icon:after {
  opacity: 1;
  transform: rotate(-45deg);
  border-bottom: 2px solid #5AD1D1;
  border-left: 2px solid #5AD1D1;
}
.form__input--check .check-input:checked ~ .check-text {
  color: #5AD1D1;
}

.table-overview {
  width: 100%;
  line-height: 1.8;
  text-align: left;
}
.table-overview tr th {
  width: 10rem;
  padding: 0.8rem;
  vertical-align: top;
}
.table-overview tr td {
  width: calc(100% - 10rem);
  padding: 0.8rem 1.6rem;
  vertical-align: top;
  font-weight: 600;
}

.table-overview-history {
  display: block;
  width: 100%;
  line-height: 1.8;
  text-align: left;
  border-spacing: 5px 9px;
}
.table-overview-history tr {
  display: block;
  margin-bottom: 1rem;
}
.table-overview-history th,
.table-overview-history td {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.8rem;
  background-color: rgba(255, 255, 255, 0.3);
}
.table-overview-history th {
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.3);
}
.table-overview-history td {
  font-weight: normal;
}
@media (min-width: 769px) {
  .table-overview-history {
    display: table;
  }
  .table-overview-history tr {
    display: table-row;
    margin-bottom: 0;
  }
  .table-overview-history th,
  .table-overview-history td {
    display: table-cell;
    width: auto;
    padding: 0.8rem 1.6rem;
    text-align: left;
  }
}

.news-item {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  .news-item {
    flex-wrap: nowrap;
  }
}
.news-item__date {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 3.2rem 1.6rem 0;
}
@media screen and (min-width: 992px) {
  .news-item__date {
    margin: 0 1.6rem 0 0;
  }
}
.news-item__category {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 3.2rem 1.6rem 0;
}
@media screen and (min-width: 992px) {
  .news-item__category {
    margin: 0 1.6rem 0 0;
  }
}
.news-item__category-label {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 12rem;
  padding: 0.3rem 0.6rem;
  border: 2px solid #5AD1D1;
  color: #5AD1D1;
  font-size: 1.4rem;
}
.news-item__title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222222;
}
.news-item__title:hover, .news-item__title:focus {
  text-decoration: underline;
}

.news-content {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
}
.news-content h1 {
  margin-top: 3.6rem;
  margin-bottom: 1.8rem;
  font-size: 3.6rem;
}
.news-content h2 {
  margin-top: 3.2rem;
  margin-bottom: 1.6rem;
  font-size: 3.2rem;
}
.news-content h3 {
  margin-top: 2.8rem;
  margin-bottom: 1.4rem;
  font-size: 2.8rem;
}
.news-content h4 {
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
  font-size: 2.4rem;
}
.news-content h5 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.news-content h6 {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}
.news-content p {
  margin-top: 2em;
  margin-bottom: 2em;
}
.news-content ul {
  margin-top: 2em;
  margin-bottom: 2em;
}
.news-content ol {
  margin-top: 2em;
  margin-bottom: 2em;
}
.news-content .box {
  margin-top: 3.6em;
  margin-bottom: 3.6em;
  padding: 2.4em;
  border: 4px solid #EFEFEF;
}
.news-content .date {
  display: block;
  font-size: 0.8em;
}

.service-feature-item__thumbnail {
  position: relative;
  overflow: hidden;
}
.service-feature-item__thumbnail-image {
  display: block;
  margin: 0 auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-feature-item__caption {
  font-family: "Poppins", sans-serif, "游ゴシック体", "Yu Gothic", sans-serif;
  font-weight: "700";
  font-style: normal;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem;
  background-color: rgba(128, 128, 128, 0.8);
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .service-feature-item__caption {
    font-size: 2rem;
  }
}
.service-feature-item__content {
  padding: 1.6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .service-feature-item__content {
    height: 170px;
    max-height: 200px;
  }
}
.service-feature-item__content-title {
  margin-bottom: 1.6rem;
  font-weight: 300;
  font-size: 3rem;
  text-align: center;
  color: #222222;
  letter-spacing: 0.8rem;
}
.service-feature-item__content-text {
  color: #222222;
  box-sizing: border-box;
  flex-grow: 1;
}

@media screen and (min-width: 992px) {
  .service-content-item {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .service-content-item__thumbnail {
    width: 30rem;
  }
}
.service-content-item__thumbnail-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
}
.service-content-item__content {
  padding: 1.6rem;
}
@media screen and (min-width: 992px) {
  .service-content-item__content {
    width: calc(100% - 30rem);
    padding: 3.2rem;
  }
}
.service-content-item__content-title {
  margin-bottom: 1.6rem;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .service-content-item__content-title {
    font-size: 2.4rem;
    text-align: left;
  }
}
.service-content-item__content-text {
  color: #aaaaaa;
}

.works-item {
  transition: all 0.2s;
  display: block;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  color: #222222;
  cursor: pointer;
}
.works-item__thumbnail {
  overflow: hidden;
}
.works-item__thumbnail-image {
  transition: all 0.2s;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.works-item__content {
  padding: 0.8rem;
}
.works-item__content-title {
  color: #222222;
  font-weight: 400;
  font-size: 1.6rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.works-item:hover .works-item__thumbnail-image {
  transform: scale(1.1);
}
.works-item:hover__content-title {
  color: #5AD1D1;
}

.works-image__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 2.6rem 15px;
}
.works-image__image .works-image__image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.works-image__image--main {
  margin-bottom: 4rem;
}
.works-image__image--right {
  margin-left: auto;
  margin-bottom: 4rem;
}
.works-image__image--left {
  margin-right: auto;
  margin-bottom: 4rem;
}

.width-20 {
  max-width: 20%;
}

.width-40 {
  max-width: 40%;
}

.width-60 {
  max-width: 60%;
}

.width-80 {
  max-width: 80%;
}

.width-100 {
  max-width: 100%;
}

.flex {
  display: flex;
  align-items: baseline;
  gap: 1.5em;
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * トップページ
 * -------------------------------------------------------------------
 */
.top-message__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 9.4rem 15px;
}
.top-message__content {
  max-width: 800px;
  margin: 0 auto;
}
.top-message__heading {
  margin-bottom: 6.4rem;
}
.top-message__text {
  color: #222222;
  font-size: 1.6rem;
  font-weight: 700;
}
.top-message__guide {
  padding-top: 6.4rem;
}

@media screen and (min-width: 992px) {
  .top-message-item {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .top-message-item__thumbnail {
    width: 50rem;
  }
}
.top-message-item__thumbnail-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.8rem;
}
.top-message-item__content {
  padding: 1.6rem;
}
@media screen and (min-width: 992px) {
  .top-message-item__content {
    width: calc(100% - 23rem);
    padding-right: 2.2rem;
  }
}
.top-message-item__content-title {
  margin-bottom: 1.6rem;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
  .top-message-item__content-title {
    font-size: 2.7rem;
    text-align: left;
  }
}
.top-message-item__content-text {
  color: #222222;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}

.top-service__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 0.6rem 15px;
}
@media screen and (min-width: 992px) {
  .top-service__heading {
    display: flex;
    gap: 2%;
    align-items: baseline;
  }
}
.top-service__list {
  background: #fff;
  margin-bottom: 4rem;
}
.top-service__list-item {
  padding: 3rem 0 5rem;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .top-service__list-item:not(:first-child) {
    border-left: 1px dashed #aaaaaa;
  }
}
.top-service__list-item.item1 {
  background: linear-gradient(rgba(80, 80, 80, 0.7), rgba(80, 80, 80, 0.7)), url("../../img/top_demolition.jpg");
  background-size: cover;
}
.top-service__list-item.item2 {
  background: linear-gradient(rgba(80, 80, 80, 0.7), rgba(80, 80, 80, 0.7)), url("../../img/top_construction.jpg");
  background-size: cover;
}
.top-service__list-item.item3 {
  background: linear-gradient(rgba(80, 80, 80, 0.7), rgba(80, 80, 80, 0.7)), url("../../img/top-recycling.jpg");
  background-size: cover;
}
.top-service__guide {
  padding-top: 6.4rem;
}

.top-service-item {
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .top-service-item {
    display: flex;
    align-items: stretch;
  }
}
.top-service-item__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 2.6rem 15px;
}
@media screen and (min-width: 992px) {
  .top-service-item__thumbnail {
    width: 100%;
  }
}
.top-service-item__thumbnail-image {
  display: none;
}
@media screen and (min-width: 600px) {
  .top-service-item__thumbnail-image {
    display: block;
    max-width: 80%;
    margin: 0 auto;
  }
}
.top-service-item__content {
  padding: 1.6rem;
}
@media screen and (min-width: 992px) {
  .top-service-item__content {
    width: calc(100% - 13rem);
    padding: 0 7rem;
  }
}
.top-service-item__content-box {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .top-service-item__content-box {
    height: 100%;
    justify-content: space-between;
    max-width: 41rem;
  }
  .top-service-item__content-box--left {
    margin-left: auto;
  }
  .top-service-item__content-box--right {
    margin-right: auto;
  }
}
.top-service-item__content-title {
  font-family: "Poppins", sans-serif, "游ゴシック体", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 4rem;
  line-height: 1.6;
}
.top-service-item__content-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background-color: #5AD1D1;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 992px) {
  .top-service-item__content-title {
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 1;
  }
}
.top-service-item__content-text {
  color: #ffffff;
}
.top-service-item__text-title {
  font-size: 3rem;
  letter-spacing: 0.5em;
}

.top-service__list-item:hover .top-service-item__content-title::after {
  transform: scaleX(1);
}

.top-works__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 0.6rem 15px;
}
@media screen and (min-width: 992px) {
  .top-works__heading {
    display: flex;
    gap: 2%;
    align-items: baseline;
  }
}
.top-works__list {
  margin: 0 -15px 0 -15px;
  display: flex;
  flex-wrap: wrap;
}
.top-works__list-item {
  margin: 15px 15px 4.8rem 15px;
  width: calc(50% - 30px);
}
@media screen and (min-width: 600px) {
  .top-works__list-item {
    width: calc(25% - 30px);
    margin: 15px;
  }
}

.top-news__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 6.4rem 15px;
}
@media screen and (min-width: 992px) {
  .top-news__heading {
    display: flex;
    gap: 2%;
    align-items: baseline;
  }
}
.top-news__list {
  display: block;
  padding: 0;
  margin: 0 auto;
  max-width: 100rem;
}
.top-news__list-item {
  display: block;
  margin: 0;
  padding: 0;
}
.top-news__list-item:not(:first-child) {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px dashed #222;
}
.top-news__guide {
  padding-top: 6.4rem;
}
.top-news .facebook {
  text-align: center;
}

.top-blog {
  background: #fafafa;
}
.top-blog__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 9.4rem 15px;
}
.top-blog__heading {
  margin-bottom: 6.4rem;
}
.top-blog__list {
  margin: 0;
}
.top-blog__list-item:not(:last-child) {
  margin: 0 0 4.8rem 0;
}
.top-blog__guide {
  padding-top: 6.4rem;
}

.top-aboutus__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 0.6rem 15px;
}
.top-aboutus__message {
  width: 100vw;
  display: block;
  overflow: hidden;
  padding: 5rem 0 10rem;
  background-image: url("../../img/top-aboutus_message_sp.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 992px) {
  .top-aboutus__message {
    max-height: 710px;
    background-image: url("../../img/top-aboutus_message.jpg");
  }
}
.top-aboutus__content {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 2.6rem 15px;
}
@media screen and (min-width: 992px) {
  .top-aboutus__heading {
    display: flex;
    gap: 2%;
    align-items: baseline;
  }
}
.top-aboutus__content-title {
  color: #ffffff;
  margin-bottom: 1.6rem;
  font-weight: 700;
  font-size: 2.6rem;
}
@media screen and (min-width: 992px) {
  .top-aboutus__content-title {
    font-size: 5.5rem;
    text-align: left;
    line-height: 1.2;
  }
}
.top-aboutus__text {
  color: #ffffff;
  font-weight: 700;
  line-height: 2.4;
}
@media screen and (min-width: 992px) {
  .top-aboutus__text {
    font-size: 2rem;
  }
}
.top-aboutus__guide {
  padding-top: 6.4rem;
}

.top-aboutus-item {
  background-color: #5AD1D1;
}
@media screen and (min-width: 992px) {
  .top-aboutus-item__list {
    display: flex;
    padding: 3.2rem;
    justify-content: space-between;
  }
}
.top-aboutus-item__list-item {
  padding: 2.4rem 3.6rem;
  z-index: 2;
}
.top-aboutus-item__item {
  position: relative;
  width: 100%;
  max-height: 280px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.top-aboutus-item__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.top-aboutus-item__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  position: relative;
  height: 100%;
}
.top-aboutus-item__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(255, 255, 255);
  transform: translate(8px, 8px);
  pointer-events: none;
}
.top-aboutus-item__thumbnail {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .top-aboutus-item__thumbnail {
    max-width: 395px;
  }
}
.top-aboutus-item__thumbnail-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
}
.top-aboutus-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 154, 154, 0.5);
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.top-aboutus-item__overlay:hover {
  opacity: 0;
}
.top-aboutus-item .top-aboutus-item__content-title {
  margin: 0 auto;
  padding: 10px;
  background: #2C9A9A;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  width: 80%;
  transition: background-color 0.3s ease;
}
.top-aboutus-item .top-aboutus-item__content-title:hover {
  background-color: #5AD1D1;
}

/*
 * 新着情報
 * -------------------------------------------------------------------
 */
.news-list__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 9.4rem 15px;
}
.news-list__list {
  display: block;
  padding: 0;
  margin: 0 auto;
  max-width: 100rem;
}
.news-list__list-item {
  display: block;
  margin: 0;
  padding: 0;
}
.news-list__list-item:not(:first-child) {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px dashed #222;
}
.news-list__pagination {
  padding-top: 6.4rem;
}

.news-detail__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 9.4rem 15px;
  max-width: 96rem;
  margin: 0 auto 4.8rem auto;
}
.news-detail__title {
  margin-bottom: 4.8rem;
  font-weight: 700;
  font-size: 3.2rem;
}
.news-detail__image {
  margin-bottom: 4.8rem;
}
.news-detail__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.news-detail__body {
  margin-bottom: 4.8rem;
  background: #ffffff;
}
@media screen and (min-width: 992px) {
  .news-detail__body {
    padding: 3.6rem;
  }
}
.news-detail__button {
  padding-top: 3.2rem;
}
@media screen and (min-width: 992px) {
  .news-detail__button {
    padding-top: 6.4rem;
  }
}

/*
 * サービス紹介
 * -------------------------------------------------------------------
 */
.service-feature {
  margin-bottom: 6.4rem;
}
.service-feature__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 9.4rem 15px;
}
.service-feature__heading {
  margin-bottom: 6.4rem;
}
.service-feature__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 0;
  padding: 0;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .service-feature__list {
    gap: 60px;
  }
}
.service-feature__list-item {
  z-index: 2;
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .service-feature__list-item {
    width: calc(33% - 40px);
  }
}
.service-feature__guide {
  margin-top: 6.4rem;
}

.service-content__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 9.4rem 15px;
  padding: 2.4rem 15px;
}
.service-content__heading {
  margin-bottom: 1.8rem;
}
d .service-content__list {
  max-width: 100rem;
  margin: 0 auto;
}
.service-content__list-item {
  margin-bottom: 4.8rem;
}
.service-content__guide {
  margin-top: 6.4rem;
}

/*
 * 制作実績
 * -------------------------------------------------------------------
 */
.works-list__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 6.4rem 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.works-list__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 1;
}
.works-list__list-item {
  width: calc(33.333% - 26.666px);
  flex-shrink: 0;
  box-sizing: border-box;
}
.works-list__list-item:nth-child(3n) {
  margin-right: 0;
}
.works-list__list-item-4rows {
  width: calc(50% - 20px);
  flex-shrink: 0;
  box-sizing: border-box;
}
.works-list__list-item-4rows:nth-child(4n) {
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .works-list__list-item-4rows {
    width: calc(25% - 40px);
  }
}
.works-list__text-main-container {
  width: calc(33.333% - 40px);
  max-width: 227px;
  box-sizing: border-box;
}
.works-list__text-main-container__textbox {
  background-color: #5AD1D1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  max-width: 227px;
  max-height: 120px;
  width: 100%;
  height: auto;
  aspect-ratio: 227/185;
  padding: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .works-list__text-main-container__textbox {
    max-height: 185px;
  }
}
.works-list__text-main-container__text-main {
  text-align: right;
  font-size: 2rem;
  color: #fff;
  line-height: normal;
}
@media screen and (min-width: 992px) {
  .works-list__text-main-container__text-main {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 599px) {
  .works-list__container {
    flex-direction: column;
  }
  .works-list__list {
    gap: 15px;
  }
  .works-list__list-item {
    width: calc(50% - 15px);
    gap: 15px;
  }
  .works-list__text-main-container {
    width: 100%;
  }
}
#const01-1-a,
#const01-1-b,
#const01-2-a,
#const01-2-b,
#const01-2-c {
  scroll-margin-top: 100px;
}

.works-detail__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 2.6rem 15px;
}
.works-detail .thumbnail .slick-track {
  transform: unset !important;
}
.works-detail .thumbnail-img {
  opacity: 0.3;
  transition: opacity 0.3s linear;
  padding: 4% 2%;
}
.works-detail .thumbnail .slick-current {
  opacity: 1;
}
.works-detail .thumbnail_content {
  position: relative;
  background-color: #f8f8f8;
}
.works-detail .thumbnail_content .caption p {
  padding: 0;
  margin: 0;
}
.works-detail .thumbnail_content .caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.6rem 0.8rem;
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  transition: 0.3s ease;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
}
.works-detail__list-item {
  margin: 0 auto;
  margin-bottom: 4rem;
  max-width: 335px;
}
@media screen and (min-width: 600px) {
  .works-detail__list-item {
    max-width: calc(72% - 40px);
  }
}
@media screen and (min-width: 992px) {
  .works-detail__list-item {
    max-width: calc(72% - 40px);
  }
}
.works-detail__list-item article {
  margin-bottom: 5rem;
}
.works-detail__text-main {
  background-color: #5AD1D1;
  color: #fff;
  width: 100%;
  height: auto;
  max-width: 307px;
  max-height: 217px;
  aspect-ratio: 307/217;
  padding: 2rem 1rem 0.5rem;
  font-size: 3rem;
  text-align: right;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .works-detail__text-main {
    padding: 12rem 1rem 0.5rem;
  }
}
.works-detail__text-sub {
  padding: 2rem 0;
  font-size: 2.4rem;
}
@media screen and (min-width: 992px) {
  .works-detail__text-sub {
    font-size: 3rem;
    padding: 0 0 2rem;
  }
}
.works-detail__button {
  padding-top: 3.2rem;
}
@media screen and (min-width: 992px) {
  .works-detail__button {
    padding-top: 6.4rem;
  }
}

/*
 * 会社情報
 * -------------------------------------------------------------------
 */
.about-me__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 9.4rem 15px;
}
@media screen and (min-width: 992px) {
  .about-me__content {
    display: flex;
  }
}
.about-me__content-left {
  margin-bottom: 4.8rem;
}
@media screen and (min-width: 992px) {
  .about-me__content-left {
    width: 50%;
    padding-right: 2.4rem;
    margin-bottom: 0;
  }
}
.about-me__content-right {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .about-me__content-right {
    width: 50%;
  }
}
.about-me__image img {
  display: block;
  max-width: 100%;
  border-radius: 1.6rem;
}

.aboutus {
  background-image: url("../../img/company-back.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  color: #ffffff;
}

.company-philosophy__text-main {
  font-size: 3rem;
}
@media screen and (min-width: 992px) {
  .company-philosophy__text-main {
    font-size: 8rem;
  }
}
.company-philosophy__text-sub {
  font-weight: 600;
  font-size: 3rem;
}
.company-philosophy__content {
  max-width: 90%;
  padding: 6rem 1.6rem 0;
  margin: 0 auto;
}
.company-philosophy__content-title {
  margin-bottom: 1.6rem;
  font-weight: 700;
  font-size: 3.6rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .company-philosophy__content-title {
    font-size: 6.5rem;
  }
}
.company-philosophy__content-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  text-align: left;
  padding-top: 6rem;
}
@media screen and (min-width: 992px) {
  .company-philosophy__content-text {
    font-size: 2.2rem;
  }
}

.company-overview__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 9.4rem 15px;
}
.company-overview__content {
  max-width: 90%;
  padding: 6rem 1.6rem 0;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .company-overview__content-image {
    width: 50%;
  }
}
.company-overview__content-image img {
  border-radius: 1.6rem;
}
.company-overview__content-table {
  padding: 3.2rem 0 0 0;
}
@media screen and (min-width: 992px) {
  .company-overview__content-table {
    padding: 0 0 0 3.2rem;
  }
}
.company-overview__guide {
  padding-top: 6.4rem;
}

.map {
  height: 250px;
}
@media screen and (min-width: 992px) {
  .map {
    height: 518px;
    padding: 0 0 0 3.2rem;
  }
}

.about-info__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 9.4rem 15px;
}
.about-info__heading {
  margin-bottom: 6.4rem;
}
@media screen and (min-width: 992px) {
  .about-info__content {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .about-info__content-image {
    width: 50%;
  }
}
.about-info__content-image img {
  border-radius: 1.6rem;
}
.about-info__content-table {
  padding: 3.2rem 0 0 0;
}
@media screen and (min-width: 992px) {
  .about-info__content-table {
    width: 50%;
    padding: 0 0 0 3.2rem;
  }
}
.about-info__guide {
  padding-top: 6.4rem;
}

/*
 * CONTACT
 * -------------------------------------------------------------------
 */
.contact-form__container {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
  padding: 9.4rem 15px;
}
.contact-form__heading {
  margin-bottom: 3.2rem;
}
.contact-form__content {
  margin: 0 auto;
  padding: 3.2rem 1rem;
  background: #fff;
  border: 4px solid #efefef;
}
@media (min-width: 992px) {
  .contact-form__content {
    padding: 6.4rem 4rem;
  }
}
.contact-form__form {
  max-width: 850px;
  margin: 0 auto 1.6rem auto;
}
@media (min-width: 992px) {
  .contact-form__form {
    margin: 0 auto 6.4rem auto;
  }
}
.contact-form__button {
  text-align: center;
}
.contact-form__button-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  background: #5AD1D1;
  padding: 1em 3em;
  color: #fff;
  border-radius: 50px;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .contact-form__button-submit {
    max-width: 240px;
  }
}
.contact-form__button-submit:hover, .contact-form__button-submit:focus {
  background: rgb(70.0592417062, 203.4407582938, 203.4407582938);
}/*# sourceMappingURL=style.css.map */