@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  --blue: #04308E;
  --pink: #E43065;
  --red: #FF0000;
  --yellow: #FFF700;
  --Oswald: "Oswald", sans-serif;
}

body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: min(3.7vw, 1.6rem);
  letter-spacing: 0.02rem;
  line-height: 1.8;
  text-align: center;
}

.ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.en {
  font-family: var(--Oswald);
  font-weight: 900;
  text-transform: uppercase;
}

h2,
h3,
h4 {
  font-weight: 900
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

.clarity a:hover {
  opacity: 1;
}

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

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.blue {
  color: var(--blue);
}

.pink {
  color: var(--pink);
}

.yellow {
  color: var(--yellow);
}

.red {
  color: var(--red);
}

.white {
  color: #ffffff;
}

.black {
  color: #333333;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.ft_30 {
  font-size: min(5.8vw, 3.0rem);
}

.ft_27 {
  font-size: min(6.2vw, 2.7rem);
}

.ft_24 {
  font-size: min(5.5vw, 2.4rem);
}

.ft_20 {
  font-size: min(4.6vw, 20px);
}

.ft_18 {
  font-size: min(4.1vw, 1.8rem);
}

.ft_16 {
  font-size: min(3.7vw, 1.6rem);
}

.ft_14 {
  font-size: min(3.7vw, 1.4rem);
}

.p_0 {
  padding: 0;
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flex.row {
  flex-direction: row;
}

.fadeInUpTrigger,
.fadeInRightTrigger {
  opacity: 0;
}

/* header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 100;
}

.header_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
  height: 100%;
}

header .logo {
  width: 30%;
  max-width: 126px;
}

/* ham_menu */
.ham_btn {
  position: fixed;
  cursor: pointer;
  width: 55px;
  height: 55px;
  z-index: 999;
  margin: 0;
  top: 10px;
  right: 10px;
  background: var(--blue);
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  background: #ffffff;
  width: 27px;
  top: 28px;
}

.ham_btn span:nth-of-type(1) {
  top: 12px;
}

.ham_btn span:nth-of-type(2) {
  top: 20px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 15px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 26px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 28px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 26px;
}

.ham_btn span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 0px;
  left: -6px;
  color: #fff;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.ham_btn.active span:nth-of-type(3)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 2px;
  left: 7px;
}

/* bottom_nav */
#sp-nav {
  position: fixed;
  bottom: 0;
  display: flex;
  z-index: 99;
  width: 90%;
  left: 5%;
  justify-content: space-evenly;
}

#sp-nav>div {
  width: 20%;
  max-width: 67px;
}

#sp-nav a {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 2px;
}

.nav_wrap {
  position: fixed;
  z-index: 200;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #333333;
  overflow-y: auto;
  padding: 20% 5%;
}

.nav_wrap .sp_nav {
  height: 100%;
}

.nav_wrap ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
  height: 100%;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: min(4.6vw, 2.0rem);
  line-height: 1;
  padding: 12px;
  margin-bottom: 8px;

}

.nav_wrap li span {

  font-size: min(3.2vw, 1.4rem);

}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.nav_wrap.show {
  right: 0;
}

.nav_wrap nav .sp_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tel a p {
  color: #ffffff;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: center;

}

.tel a span {
  padding-bottom: 3px;
}

.inquiry a {
  background-color: var(--pink);
  color: #ffffff;
  padding: 6px 20px;
  display: inline-block;
  width: 100%;
  max-width: 245px;
  margin: 5% auto;
  position: relative;
  text-wrap: nowrap;
  font-size: min(4.1vw, 1.8rem);
}

.inquiry a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s;
}

.inquiry a:hover {
  opacity: 1;
}

.inquiry a:hover:after {
  opacity: 0.3;
}

/* MV */
.MV {
  position: relative;
  max-height: 100vh;
}

.MV_slide {
  margin-inline: auto;
  overflow: hidden;
}

.slide img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.MV_text {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  color: #ffffff;
  line-height: 1.1;
  padding-bottom: 2%;
}

.MV_text h2 {
  font-size: min(14.6vw, 100px);
  padding-bottom: 2%;
}

.MV_text p {
  font-size: min(7.4vw, 50px);
}

.MV_text p span {
  font-size: min(6vw, 40px);
}

.js_blue,
.js_pink {
  transition: all 3s;
}

.js_blue.active {
  color: #04308E;
}

.js_pink.active {
  color: #E43065;
}

/* 共通 */
section {
  position: relative;
  padding: 60px 0 80px;
  background-color: #ffffff;
}

.section_inner {

  width: 90%;
  margin: 0 auto;
}

.section_ttl {
  font-size: min(9.5vw, 10.0rem);
  text-align: left;
  line-height: 1;
  gap: 2vw;
  display: flex;
  flex-direction: column;
  margin-bottom: min(10%, 40px);
}

.content_textWrap {
  text-align: left;
}

#top_about {
  background-color: #000000;
  color: #ffffff;
}

#top_about .content_textWrap {
  padding-bottom: 40px;
}

#top_about .content_textWrap p {
  padding-bottom: 20px;
}

#top_about .content_imgWrap {
  gap: 3%;
}

#top_business {
  background-image: url(../img/top_business_bg.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}

#top_business .section_ttl {
  width: 90%;
  margin: 0 auto min(10%, 40px);

}

#top_business a {
  position: relative;
  display: inline-block;
}

#top_business a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 1;
  transition: all 0.3s;
}

#top_business a:hover {
  opacity: 1;
}

#top_business a:hover:after {
  opacity: 0.3;
}

#top_business h3 {
  font-size: min(6.9vw, 4.0rem);
  width: 90%;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
}

.more a {
  display: inline-block;
  padding: 12px 90px 12px 30px;
  background-color: #000000;
  color: #ffffff;
  width: 80%;
  max-width: 240px;
  margin: 20px auto 0;
  position: relative;
}

.more a::before {
  content: "";
  width: 77px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
}

#top_info {
  background-color: #000000;
  color: #ffffff;
}

.info_box {
  background-color: #ffffff;
  padding: 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.info_box ul li {
  padding: 10px 0;
  border-bottom: 2px dotted #707070;
  text-align: left;
}
#top_info img{
	width: 80%;
	margin: 50px auto;
}

#top_gallery {
  background-image: url(../img/top_gallery_bg.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}

#top_gallery .section_ttl {
  width: 90%;
  margin: 0 auto min(10%, 40px);
}

#top_gallery .content {
  width: 90%;
  margin: 12vw auto 0;
}

#top_gallery .content_img {
  margin-top: -3vw;
}

#company {
  background-color: #000000;
  color: #ffffff;
  padding-bottom: 0;
}

#company .section_ttl {
  width: 90%;
  margin: 0 auto min(10%, 40px);
}

#company dl {
  gap: 20px;
  width: 90%;
  margin: 20px auto;
}

#company dl ul li {
  position: relative;
  padding-left: 10px;
}

#company dl ul li::before {
  content: "";
  width: 2px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#company dl a {
  color: #ffffff;
}

#company .map {
  height: 50vw;
  max-height: 450px;
}

#company .map iframe {
  display: block;
  height: 100%;
}

.cr {
  padding: 16px 0;
  background-color: #000000;
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}

#go_top {
  width: 60px;
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 900;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  #sp-nav {
    display: none;
  }

  .flex {
    display: flex;
    flex-direction: row;
    gap: 5%;
  }

  header {
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 120px;
  }

  .header_inner {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 2vw 0 4px;
  }

  .header_inner .logo {
    width: 14%;
    max-width: 260px;
  }

  .header_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-evenly;
    width: 100%;
    min-width: 600px;
    max-width: 1000px;
  }

  .header_right--upper {
    display: flex;
    align-items: flex-end;
    gap: 40px;
  }

  .header_right--bottom {
    display: flex;
    align-items: flex-end;
    gap: 40px;
  }

  .pc_nav {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .pc_nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding-bottom: 0px;
  }

  .U_line {
    position: relative;
    padding: 0 1.6vw;

  }

  .U_line>a {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #ffffff;
    line-height: 1;
    font-size: 2.0rem;
    position: relative;
  }

  .U_line>a span {

    font-size: 1.4rem;
  }

  .U_line>a::after {
    content: "";
    width: 80%;
    height: 1px;
    background-color: var(--pink);
    position: absolute;
    bottom: -4px;
    left: 10%;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
  }

  .U_line>a:hover {
    opacity: 1;
    ;
  }

  .U_line>a:hover:after {
    transform: scale(1, 1);
  }

  .MV_text {
    position: absolute;
    left: 5%;
    top: 65%;

    transform: translateY(-50%);
  }

  .MV_text h2 {
    font-size: min(5.2vw, 100px);
    line-height: 1.4;
    padding-bottom: 2%;

  }

  .MV_text p {
    font-size: min(2.6vw, 50px);


  }

  .MV_text p span {
    font-size: min(2.1vw, 40px);
  }

  section {
    padding: min(10vw, 140px) 0;
  }

  .section_inner {
    width: 92%;
    max-width: 1770px;
  }

  .section_ttl {
    font-size: min(5.2vw, 100px);
    gap: 10px;
  }

  .animate__delay-05s {
    animation-delay: calc(var(--animate-delay) * 0.5);
  }

  .animate__delay-10s {
    animation-delay: calc(var(--animate-delay) * 1.0);
  }

  #top_about .section_inner {
    align-items: center;

  }

  #top_about .flex {
    align-items: center;
  }

  #top_about .content_textWrap {
    width: 100%;
    max-width: 540px;
  }

  #top_about .content_imgWrap {
    width: 100%;
    justify-content: space-between;
  }

  #top_about .content_img {
    width: 100%;
    height: 100%;
  }

  #top_business {
    background-size: cover;
  }

  #top_business .section_ttl {
    width: 92%;
    max-width: 1770px;
    margin: 0 auto 80px;
  }

  #top_business .content {
    gap: 1%;
  }

  #top_business .content_item {
    width: 100%;
  }

  #top_business .content_item h3 {
    font-size: min(2vw, 4.0rem);
  }

  #top_business .content_img {
    width: 100%;
  }

  #top_info .section_ttl {
    width: 92%;
    max-width: 1770px;
    margin: 0 auto 80px;
  }

  .info_box {
    padding: 40px 5% 60px;
  }

  .info_box ul li a dl {
    display: flex;
  }

  .info_box ul li a dt {
    margin-left: 3%;
  }

  .info_box ul li a dd {
    margin-left: 10%;
  }
#top_info img{
	width: 50%;
	margin: 50px auto;
}
  #top_gallery {
    overflow: hidden;
  }

  #top_gallery .section_ttl {
    width: 92%;
    max-width: 1770px;
    margin: 0 auto 80px;
  }

  #top_gallery .content {
    width: 110%;
    display: flex;
    flex-direction: row;
    gap: 1vw;
    margin: 0 0 40px -5%;
  }

  #top_gallery .content_img {
    margin: 0;
    width: 100%;
  }

  #company {
    padding: min(10vw, 140px) 0 0;
  }

  #company .section_ttl {
    width: 92%;
    max-width: 1770px;
    margin: 0 auto 80px;
  }

  #company .content {
    width: 92%;
    max-width: 1770px;
    margin: 0 auto;
    align-items: center;
  }

  #company dl {
    flex-direction: column;
    gap: 40px;
  }

  #company dl .description-item {
    display: flex;
  }

  #company dl .description-item dt {
    width: 130px;
  }

  #company dl .description-item dd {
    width: calc(100% - 130px);
  }

  footer {
    background-color: #000000;

  }

  .footer_nav {
    border-top: none;
    padding: 80px 0 100px;
    max-width: 700px;
    margin: 0 auto;
  }

  .footer_nav ul {
    justify-content: center;
    justify-content: space-between;
  }

  .footer_nav ul li a {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-size: 2.0rem;
  }

  #go_top {
    width: 60px;
    bottom: 40px;
    right: 20px;
  }

  /* pcスタイル */
  @media screen and (max-width: 1279px) {
    #top_about .content.flex {
      flex-direction: column;
    }

    #top_about .content_textWrap {
      width: 100%;
      max-width: none;
    }

    #company .content.flex {
      flex-direction: column;
      gap: 40px;
    }

    #company .content dl {
      max-width: 600px;
      margin: 0 auto;
    }

  }
}

.U_ttl {
  position: absolute;
  width: 80%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: min(12vw, 10.0rem);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2vw;
}

.U_ttl span {
  font-size: min(4.6vw, 4.0rem);
}

#about_company {
  background-color: #000000;
  color: #ffffff;
  padding-bottom: 0;
}

#about_company .section_ttl {
  width: 90%;
  margin: 0 auto min(10%, 40px);
}

#about_company dl {
  gap: 20px;
  width: 90%;
  margin: 20px auto;
}

#about_company dl ul li {
  position: relative;
  padding-left: 10px;
}

#about_company dl ul li::before {
  content: "";
  width: 2px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);

}

#about_company dl a {
  color: #ffffff;
}

#about_company .map {
  height: 50vw;
  max-height: 450px;
}

#about_company .map iframe {
  display: block;
  height: 100%;
}

#about_greeting p {
  font-size: min(4.1vw, 2.0rem);
}

#about_greeting p {
  font-size: min(4.1vw, 2.0rem);
  padding-bottom: 40px;
}

#about_greeting .name {
  font-size: min(4.6vw, 2.0rem);
}

#about_recruit {
  background-color: #000000;
  color: #ffffff;
  padding: 0;
}

#about_recruit .content_textWrap--inner {
  width: 90%;
  margin: 0 auto;
  padding: 60px 0 40px;
}

#about_recruit .section_lead {
  font-size: min(5.4vw, 3.5rem);
  padding-bottom: 20px;
}

#about_contact {
  background-color: #ECECEC;
}

#about_contact .section_ttl {
  align-items: center;
}

#about_contact .content_textWrap {
  padding-bottom: 60px;
}

#about_contact h4 {
  font-size: min(5.4vw, 4.1rem);
  font-weight: 500;
  position: relative;
  padding-left: min(5%, 20px);
  line-height: 1;
  margin-bottom: 20px;
}

#about_contact h4::before {
  content: "";
  width: 10px;
  height: 100%;
  background-color: var(--blue);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

form {
  margin: 20px auto;
  max-width: 700px;
  text-align: left;
  line-height: 3;
  container-type: inline-size;
  container-name: form;
  font-size: 1.8rem
}

.form_item--ttl {
  line-height: 2;
  font-size: min(4.8vw, 2.5rem);
  font-weight: 500;
}

.form_item--ttl .must {
  padding-left: 5%;
  color: var(--red);
}

.form_item--input {
  padding: 0;
  margin-bottom: 1%;
}

.form_item--input span {
  color: #BCBCBC;
  line-height: 1;
  display: block;
  padding: 8px 0;
}

label {
  display: inline-block;
  font-size: 1.8rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  display: block;
  height: 48px;
  width: 100%;
  font-size: 2.0rem;
  padding: 6px;
  background-color: #f4f3f3;
  border: 1px solid #C6C6C6;
}

input[id="postal_code"],
select {
  max-width: 272px;
}

input[type="tel"] {
  max-width: 400px;
}

textarea {
  height: 252px;
  resize: vertical;
  background-color: #f4f3f3;
}

.form_submit button {
  width: 100%;
  max-width: 345px;
  background-color: var(--blue);
  padding: 14px;
  margin: 40px auto 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.form_submit button:hover {
  opacity: 0.5;
}

.form_submit button p {
  font-size: 2.2rem;
  color: #ffffff;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .U_ttl {
    font-size: min(6vw, 10.0rem);
    top: 65%;
    gap: 16px;
  }

  .U_ttl span {
    font-size: min(2vw, 4.0rem);
  }

  #about_company {
    padding: min(10vw, 140px) 0;
  }

  #about_company .section_ttl {
    width: 92%;
    max-width: 1770px;
    margin: 0 auto 80px;
  }

  #about_company .content {
    width: 92%;
    max-width: 1770px;
    margin: 0 auto;
    align-items: center;



  }

  #about_company dl {
    flex-direction: column;
    gap: 40px;
  }

  #about_company dl .description-item {
    display: flex;

  }

  #about_company dl .description-item dt {
    width: 130px;

  }

  #about_company dl .description-item dd {
    width: calc(100% - 130px);

  }

  #about_greeting p {
    padding: 60px 0 40px;
  }

  #about_recruit .content_textWrap {
    width: 100%;
    padding-left: 5vw;
  }

  #about_recruit .content_textWrap--inner {
    width: 100%;
    padding: 120px 0 40px
  }

  #about_contact {
    padding-bottom: 0;
  }

  #about_contact .section_ttl {
    align-items: flex-start;
  }

  #about_contact .content_textWrap {
    padding: 40px 0 60px;
  }

  #about_contact .wrap02 h4 {
    margin-bottom: 80px;
  }

  form {
    max-width: 1100px;
    padding-top: 20px;
  }

  .form_outer {
    position: relative;
  }

  .form_outer::before {
    content: "";
    width: 100%;
    height: calc(100% - 120px);
    background-color: #F8F8F8;
    position: absolute;
    top: 0;
    left: 0;
  }

  .form_item {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .form_item--ttl {
    padding: 30px 10px;
    width: 40%;
    margin: 0;
    height: 80px;
    line-height: 1;
  }

  .form_item--input {
    width: calc(100% - 300px);
    margin: 0;
    padding: 20px 60px 20px 30px;
    line-height: 1;

    height: 80px;
  }

  .form_item:nth-of-type(10) .form_item--input {
    padding: 0 60px 0 30px;

  }

  .form_item--input label {
    line-height: 1;
  }

  .form_item:nth-of-type(2) .form_item--ttl {
    height: 100px;
    line-height: 1.5;
  }

  .form_item:nth-of-type(2) .form_item--input {
    height: 100px;
  }

  .form_item:nth-of-type(11) .form_item--ttl {
    border-bottom: none;
    margin: 0 0 auto;
  }

  .form_item:nth-of-type(11) .form_item--input {
    height: 300px;
  }

  .form_submit button {
    margin: 80px auto 0;
  }

  /* pcスタイル */
  @media screen and (max-width: 1279px) {



    #about_company .content.flex {
      flex-direction: column;
      gap: 40px;
    }

    #about_company .content dl {
      max-width: 600px;
      margin: 0 auto;
    }

  }

}

#cleaning_wrapper section {
  padding: 40px 0;
}

#cleaning_lead {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 0 20px;
}

#cleaning_lead .content_textWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#cleaning_lead p {
  font-size: min(4vw, 2.5rem);
  word-break: keep-all;
  line-height: 1.5;
  text-wrap: nowrap;
  text-align: center;
}

#cleaning_lead p.sub {
  font-size: min(3.2vw, 1.4rem);
  line-height: 1.8
}

.bg_type01 {
  background-color: #ECECEC;
}

.bg_type02 {
  background-color: #DFDFDF;
}

#cleaning_01 h4 {
  font-size: min(5.5vw, 2.4rem);
  font-weight: 500;
  padding-bottom: 10px;
}

#cleaning_01 .anchor_wrap {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px 40px;
}

#cleaning_01 .anchor_wrap a {
  text-decoration: underline;
  font-size: min(4.1vw, 1.8rem);
}

#cleaning_wrapper .section_inner {
  gap: 20px;
}

#cleaning_wrapper .content h5 {
  text-align: left;
  font-size: min(4vw, 2.9rem);
  padding: 10px 0;
}

#cleaning_wrapper .content table {
  width: 100%;
  text-align: center;
  margin-bottom: 3%;
}

#cleaning_wrapper .content td {
  background-color: #ffffff;
  padding: 4px 2%;
  vertical-align: middle
}

#cleaning_wrapper .content tr {
  border-bottom: 1.5px solid #E2E2E2;
}

#cleaning_wrapper .content td:first-of-type {
  border-right: 1.5px solid #E2E2E2;
  width: 40%;
  max-width: 120px;
}

#cleaning_wrapper .content th:first-of-type {
  border-right: 1.5px solid #E2E2E2;
  width: 40%;
  max-width: 120px;
}

#cleaning_wrapper .content table.small_text td {
  font-size: min(2.4vw, 2rem);
  padding: 2% 1%
}

#cleaning_wrapper .content table.small_text td:first-of-type {
  width: 60%;
}

#cleaning_wrapper .content table.type_blue th {
  background-color: var(--blue);
  color: #ffffff;
  padding: 1%;
}

#cleaning_wrapper .content table.type_pink th {
  background-color: var(--pink);
  color: #ffffff;
}

#cleaning_wrapper .description {
  gap: 10px;
  align-items: flex-start;
  text-align: justify;
}

#cleaning_wrapper .description .bg {
  background-color: #333333;
  color: #ffffff;
  padding: 4px 12px;
}

.accordion {
  background-color: #ffffff;
  border: 3px solid #333333;
}

.toggle {
  display: none;
}

.Label {
  /*タイトル*/
  padding: 4px 40px 4px 10px;
  display: block;
  text-align: left;
}

.Label::before {
  content: "";
  width: 21px;
  height: 21px;
  background-image: url(../img/accordion_open.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s;
}

.Label,
.a_content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.a_content {
  /*本文*/
  height: 0;
  padding: 0 20px 0 10px;
  overflow: hidden;
  text-align: left;
}

.a_content ul {
  padding-bottom: 20px;
}

.a_content ul.pb_none {
  padding-bottom: 0;
}

.a_content li {
  position: relative;
  padding-left: 20px;
}

.a_content li::before {
  content: "・";
  position: absolute;
  top: 12px;
  left: 0;
  transform: translateY(-50%);
}

.a_content h5 {
  font-size: min(4.6vw, 20px);
  position: relative;
  padding-left: 30px;

}

.a_content h5::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.a_content .attention {
  padding-left: 30px;
  display: block;
  position: relative;
}

.a_content .attention::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/attention.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 15px;
  left: 0;
  transform: translateY(-50%);
}

.toggle:checked+.Label+.a_content {
  /*開閉時*/
  height: auto;
  padding: 20px 20px 20px 10px;
  transition: all .3s;
}

.toggle:checked+.Label::before {
  background-image: url(../img/accordion_close.png);
}

#item06 table.type_pink td:first-of-type {
  width: 60%;
  word-break: keep-all;

}

#item07 table.type_pink td:first-of-type,
#item10 table.type_pink td:first-of-type {
  width: 55%;
  word-break: keep-all;

}

#item07 table.type_pink td:first-of-type span {
  display: block;
  font-size: min(2.2vw, 1.5rem);
  text-wrap: nowrap;
}

#item11 .content h5 {
  text-align: center;
  font-size: 3.5rem;
}

#item16 .section_inner {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  font-size: min(4vw, 2.9rem);
}

#calendar {
  background-color: var(--blue);
}

#calendar .content {
  max-width: 860px;
  margin: 0 auto;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #cleaning_lead {
    padding: 120px 0 60px;
  }

  #cleaning_lead .content_textWrap {
    gap: 10px;
  }

  #cleaning_wrapper .section_inner {
    flex-direction: column;
  }

  #cleaning_01 .anchor_wrap {

    gap: 20px 60px;
  }

  #cleaning_wrapper .content {
    width: 100%;
  }

  #cleaning_wrapper table {
    font-size: 2.5rem;
  }

  #cleaning_wrapper .description {
    gap: min(5%, 20px);
  }

  #cleaning_wrapper .description .bg {
    background-color: #333333;
    color: #ffffff;
    padding: 6px 20px;
    width: 189px;
  }

  .Label {
    padding: 12px 32px;
    display: block;
    text-align: left;
    font-size: 2.5rem;
  }

  .Label::before {
    content: "";
    width: 40px;
    height: 40px;
    right: 20px;
  }

  .a_content {
    padding: 0 40px 0 40px;
    font-size: 2.0rem;
  }

  .toggle:checked+.Label+.a_content {

    height: auto;
    padding: 0px 40px 80px 40px;
    transition: all .3s;
  }

  .a_content h5 {
    font-size: 2.5rem;
  }

  #item11 table {
    max-width: 1020px;
    margin: 0 auto;
    font-size: min(4vw, 2.9rem);
  }

  #item15 .content {
    max-width: 870px;
    margin: 0 auto;

  }

  #item16 .section_inner {
    flex-direction: row;
    justify-content: center;
    font-size: min(4vw, 2.9rem);
    gap: 10%;
  }

  #calendar {
    padding: 80px 0;
  }

  /* pcスタイル */
  @media screen and (min-width: 1200px) {
    #cleaning_wrapper .content_wrap {
      display: flex;
      width: 100%;
      gap: 3%;
    }
  }
}

#event_cm,
#event_event,
#event_planning {
  padding: 0;
}

#event_wrapper .section_head {
  aspect-ratio: 430/192;
}

#event_wrapper .section_head h3 {
  font-size: min(5.8vw, 5.0rem);
  color: #ffffff;
  font-weight: 500
}

#event_cm .section_head {
  background-image: url(../img/sp_cm_head.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

#event_event .section_head {
  background-image: url(../img/sp_event_head.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

#event_planning .section_head {
  background-image: url(../img/sp_planning_head.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #event_wrapper .section_head {
    aspect-ratio: auto;
    height: 350px;

  }

  #event_cm .section_head {
    background-image: url(../img/cm_head.png);
    background-position: center center;

  }

  #event_event .section_head {
    background-image: url(../img/event_head.png);
    background-position: center center;

  }

  #event_planning .section_head {
    background-image: url(../img/planning_head.png);
    background-position: center center;

  }
}



#fab_01 {
  padding: 0;
  background-color: #45484E;
  aspect-ratio: 430 / 338;
  display: flex;
  align-items: center;
  justify-content: center;
}

#fab_01 h3 {
  align-items: center;
  color: #ffffff;
}

#gallery_01 {
  background-color: #000000;
  color: #ffffff;
}

#gallery_wrapper .content_imgWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 5%;
  justify-content: flex-start;
}

#gallery_03 {
  background-color: #303030;
  color: #ffffff;
}

/* pcスタイル */
@media screen and (min-width: 600px) {
  #gallery_wrapper .content_img {
    width: calc(95% / 2);
  }
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #gallery_wrapper .content_imgWrap {
    gap: 20px 40px;
  }

  #gallery_wrapper .content_img {
    width: calc((100% - 80px) / 3);
  }
}

/* pcスタイル */
@media screen and (min-width: 1200px) {
  #gallery_wrapper .content_imgWrap {
    gap: 20px 40px;
  }

  #gallery_wrapper .content_img {
    width: calc((100% - 160px) / 5);
  }
}