@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: unset;
  transition: 0.2s;
}
a img {
  transition: 0.2s;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.pc-none {
  display: none;
}

.inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 15px;
}

.parts-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.parts-title h2 {
  font-weight: 700;
  font-size: 86px;
  line-height: 1;
}
.parts-title small {
  font-size: 12px;
  font-weight: 500;
}
.parts-title .add {
  margin-top: 20px;
  font-size: 18px;
}

.parts-button {
  position: relative;
  max-width: 328px;
  width: 100%;
  height: 45px;
}
.parts-button a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  background-color: #4faa74;
  border: solid 1px #4faa74;
  color: #fff;
  border-radius: 22.5px;
  font-size: 14px;
  font-weight: 700;
  opacity: unset;
}
.parts-button a:hover {
  background-color: #fff;
  color: #4faa74;
}
.parts-button a.arrow:before, .parts-button a.arrow:after {
  position: absolute;
  right: 10px;
  width: 8px;
  height: 2px;
  content: "";
  background-color: #fff;
}
.parts-button a.arrow:before {
  transform: translateY(-2.5px) rotate(45deg);
}
.parts-button a.arrow:after {
  transform: translateY(2.5px) rotate(-45deg);
}
.parts-button a.arrow:hover::before, .parts-button a.arrow:hover:after {
  background-color: #4faa74;
}

.parts-button-w {
  position: relative;
  max-width: 328px;
  width: 100%;
  height: 45px;
}
.parts-button-w a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: solid 1px #4faa74;
  color: #4faa74;
  border-radius: 22.5px;
  font-size: 14px;
  font-weight: 700;
  opacity: unset;
}
.parts-button-w a:hover {
  background-color: #4faa74;
  border: solid 1px #fff;
  color: #fff;
}
.parts-button-w a.pdf:before {
  position: absolute;
  right: 10px;
  width: 25px;
  height: 31px;
  content: "";
  background-image: url(images/icon_pdf-file-c.png);
  background-size: cover;
}
.parts-button-w a.pdf:hover::before {
  background-image: url(images/icon_pdf-file-w.png);
}
.parts-button-w a.arrow:before, .parts-button-w a.arrow:after {
  position: absolute;
  right: 10px;
  width: 8px;
  height: 2px;
  content: "";
  background-color: #4faa74;
}
.parts-button-w a.arrow:before {
  transform: translateY(-2.5px) rotate(45deg);
}
.parts-button-w a.arrow:after {
  transform: translateY(2.5px) rotate(-45deg);
}
.parts-button-w a.arrow:hover::before, .parts-button-w a.arrow:hover:after {
  background-color: #fff;
}

.parts-banner {
  display: flex;
  gap: 20px;
  max-width: 1024px;
  margin: 0 auto 100px;
}
.parts-banner .banner {
  width: calc(25% - 15px);
}

/* header */
.header {
  position: relative;
}
.header__wrapper {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  z-index: 20;
  transition: 0.2s;
}
.header__wrapper.transform {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
}
.header__wrapper.transform .header__menu {
  background-color: #4faa74;
}
.header__wrapper.transform .header__menu .icon-arrow {
  fill: #fff;
}
.header__wrapper.transform .header__logo {
  max-width: 140px;
}
.header__logo {
  max-width: 200px;
  transition: 0.2s;
}
.header__menu {
  flex: 1;
  padding: 5px;
  color: #fff;
}
.header__menu ul {
  display: flex;
  gap: 0 2vw;
}
.header__menu li {
  font-size: clamp(0.75rem, 0.3056rem + 0.9259vw, 1rem);
  padding: 20px 0;
}
.header__menu-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 3vw;
  font-weight: 500;
}
.header__menu-bottom {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
  flex-wrap: wrap;
  font-weight: 500;
}
.header__menu-bottom .parent-menu {
  position: relative;
  padding-right: 25px;
}
.header__menu-bottom .parent-menu-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__menu-bottom .parent-menu-wrap .icon-arrow {
  position: absolute;
  right: 0;
  top: 33%;
  transform: rotate(90deg);
  width: 9px;
  height: 16px;
  margin-top: 5px;
  user-select: none;
  fill: #fff;
}
.header__menu-bottom .parent-menu .sub-menu {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 0;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  color: #000;
  text-align: left;
  white-space: nowrap;
}
.header__menu-bottom .parent-menu .sub-menu li {
  width: 100%;
  margin-left: unset;
  margin-right: unset;
  padding: 20px 0;
}
.header__menu-bottom .parent-menu .sub-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__menu-bottom .parent-menu .sub-menu li .icon-arrow {
  width: 9px;
  height: 16px;
  margin-left: 20px;
  fill: #000;
}
.header__menu-bottom .parent-menu .sub-menu li:not(:last-of-type) {
  border-bottom: solid 1px #cacaca;
}
.header__menu-bottom .parent-menu:hover .sub-menu {
  height: auto;
  padding: 10px 20px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
}
.header-sp-menu {
  display: none;
}
.header .header-button {
  max-width: 200px;
  width: 30%;
}
.header .header-button .contact-wrap {
  height: 60px;
}
.header .header-button .pc-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 10px;
  background-color: #fff;
  border: solid 1px #4faa74;
  border-radius: 30px;
  color: #0d5a00;
  opacity: unset;
}
.header .header-button .pc-btn:hover {
  background-color: #4faa74;
  border: solid 1px #fff;
  color: #fff;
}
.header .header-button .pc-btn:before {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 24px;
  content: "";
  background-image: url(images/icon_calendar-c.png);
  background-size: cover;
}
.header .header-button .pc-btn:hover::before {
  background-image: url(images/icon_calendar.png);
}
.header .header-button .pc-btn small {
  display: block;
  font-size: 10px;
  font-weight: 700;
}

.fix-btn-top {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  background-color: #fff;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  z-index: 15;
}
.fix-btn-top a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 50px;
}
.fix-btn-top a::before, .fix-btn-top a::after {
  position: absolute;
  left: 45%;
  top: 42%;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}
.fix-btn-top a::before {
  transform: translateX(5px) rotate(45deg);
}
.fix-btn-top a::after {
  transform: translateX(-5px) rotate(-45deg);
}

/* MV */
.MV {
  position: relative;
  background-color: #4faa74;
  z-index: 5;
}
.MV .title {
  position: absolute;
  left: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  z-index: 1;
}
.MV .title h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: clamp(2.375rem, 0.375rem + 4.1667vw, 3.5rem);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: 0.15em;
}
.MV .title h1 span {
  padding-left: 5px;
  background-color: #fff;
}
.MV .title p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  font-size: clamp(0.75rem, 0.3056rem + 0.9259vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.2em;
}
.MV .title p span {
  padding-left: 5px;
  background-color: #fff;
}
.MV .title p.pc-none {
  display: none;
}
.MV__slider {
  padding-top: 150px;
  padding-bottom: 100px;
}
.MV .slick-track {
  display: flex;
  align-items: center;
  gap: 20px;
}
.MV .slick-track img {
  width: auto;
  border-radius: 20px;
}
.MV__rotate {
  position: absolute;
  bottom: 20px;
  right: 10vw;
}
.MV__rotate img {
  max-width: 200px;
  animation: rotation 12s linear infinite;
}
.MV__rotate p {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.MV__rotate p::before, .MV__rotate p::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: 5px;
  height: 1px;
  background-color: #fff;
}
.MV__rotate p::before {
  transform: translateX(-3px) rotate(45deg);
}
.MV__rotate p::after {
  transform: translateX(0) rotate(-45deg);
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* our-clients */
.our-clients {
  padding: 0 10px;
  background-color: #4faa74;
}
.our-clients__cont {
  max-width: 1320px;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #fff;
  border-radius: 10px;
}
.our-clients .ttl {
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}
.our-clients .ttl h2 {
  font-size: 26px;
}
.our-clients .ttl small {
  font-size: 16px;
}
.our-clients .slider {
  display: flex;
  margin-bottom: 20px;
}
.our-clients .slick-track {
  display: flex;
  align-items: center;
  gap: 30px;
}
.our-clients .slick-track img {
  width: auto;
}

/* news */
.news {
  padding: 50px 0 80px;
  background-color: #4faa74;
  border-top: solid 1px #4faa74;
  color: #fff;
}
.news .inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news .parts-title {
  align-items: flex-start;
}
.news .parts-title small {
  color: #b5fbd2;
}
.news .parts-button-w {
  width: 130px;
  height: 34px;
  margin-top: 10px;
  border-radius: 17px;
  font-size: 13px;
}
.news__card {
  border-top: solid 1px #7cca9b;
}
.news__card a {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 25px 5px;
}
.news__card .thumb {
  width: 180px;
  border-radius: 5px;
  overflow: hidden;
}
.news__card .cont {
  flex: 1;
  font-size: clamp(0.75rem, 0.3056rem + 0.9259vw, 1rem);
}
.news__card .date {
  font-size: clamp(0.625rem, 0.1806rem + 0.9259vw, 0.875rem);
  color: #c7f0d7;
}
.news__card:last-of-type {
  border-bottom: solid 1px #7cca9b;
}

/* t-about */
.t-about {
  position: relative;
  top: -1px;
  padding: 70px 10px;
  background-color: #4faa74;
  color: #fff;
}
.t-about .parts-title small {
  color: #b5fbd2;
}
.t-about .t-about-sp-ttl {
  display: none;
}
.t-about__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - 10px);
  z-index: 1;
}
.t-about__card .img {
  border-radius: 10px;
  overflow: hidden;
}
.t-about__card h2 {
  flex: 1;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
}
.t-about__card p {
  flex: 1;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.375;
}
.t-about__card .parts-button-w {
  margin-top: auto;
}
.t-about__card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 65px 15px;
  margin-top: 70px;
}
.t-about__card::before {
  position: absolute;
  top: -15px;
  left: -10px;
  font-size: 50px;
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}
.t-about__card:nth-of-type(2)::before {
  content: "01";
}
.t-about__card:nth-of-type(4)::before {
  content: "02";
}
.t-about__card:nth-of-type(6)::before {
  content: "03";
}
.t-about__card:nth-of-type(8)::before {
  content: "04";
}
.t-about__card:nth-of-type(10)::before {
  content: "05";
}
.t-about__card:nth-of-type(12)::before {
  content: "06";
}
.t-about__card:nth-of-type(14)::before {
  content: "07";
}
.t-about__card:nth-of-type(16)::before {
  content: "08";
}
.t-about__card:nth-of-type(18)::before {
  content: "09";
}
.t-about__card::after {
  position: absolute;
  top: -5px;
  right: -3px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 83px;
  height: 29px;
  border: solid 2px #4faa74;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.t-about__card.estimate::after {
  background-color: #7dfeb1;
  content: "見積";
}
.t-about__card.free::after {
  background-color: #ffe400;
  content: "無料";
}
.t-about__card.paid::after {
  background-color: #ffa525;
  content: "有料";
}
.t-about__text {
  position: absolute;
  bottom: 0;
  max-width: 100%;
  color: #5bc285;
  font-size: 260px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.9;
  overflow: hidden;
}
.t-about__text p {
  display: inline-block;
  animation: animetxt 20s linear infinite;
  white-space: nowrap;
}
@keyframes animetxt {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* t-studio */
.t-studio {
  padding: 50px 10px;
}
.t-studio .parts-banner {
  margin-top: 40px;
}
.t-studio .slick-dots li button:before {
  font-size: 16px !important;
}
.t-studio__card {
  width: calc(50% - 1.5vw);
}
.t-studio__card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 3vw;
  margin-bottom: 30px;
}
.t-studio__card .t-studio__slider {
  margin-bottom: 10px;
}
.t-studio__card .t-studio__slider img {
  border-radius: 10px;
}
.t-studio__card h3 {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
}
.t-studio__card p {
  margin-bottom: 20px;
  font-size: 18px;
}
.t-studio__card table {
  width: 100%;
  margin-bottom: 30px;
}
.t-studio__card table tr {
  display: flex;
  align-items: stretch;
  gap: 15px;
}
.t-studio__card table tr:not(:last-of-type) {
  margin-bottom: 10px;
}
.t-studio__card table th {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding: 5px;
  font-size: 14px;
  background-color: #e8e8e8;
  border-radius: 3px;
}
.t-studio__card table td {
  flex: 1;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0 10px;
  font-size: 16px;
}
.t-studio__card table td .large {
  font-size: 36px;
  line-height: 1;
}
.t-studio__card table td a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 110px;
  height: 25px;
  border: solid 1px #000;
  border-radius: 12.5px;
  color: #333;
  font-size: 12px;
}
.t-studio__card table td a:hover {
  background-color: #000;
  color: #fff;
}
.t-studio__card table td a.map::before {
  position: absolute;
  right: 5px;
  width: 9px;
  height: 13px;
  content: "";
  background-image: url(images/icon_pin.png);
  background-size: cover;
}
.t-studio__card table td a.map:hover::before {
  background-image: url(images/icon_pin-w.png);
}
.t-studio__card table td a.pdf {
  font-size: 10px;
}
.t-studio__card table td a.pdf::before {
  position: absolute;
  right: 5px;
  width: 13px;
  height: 16px;
  content: "";
  background-image: url(images/icon_pdf-file.png);
  background-size: cover;
}
.t-studio__card table td a.pdf:hover::before {
  background-image: url(images/icon_pdf-file-w.png);
}
.t-studio__card .button {
  display: flex;
  gap: 15px;
}
.t-studio__card .button .calender:before {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 24px;
  content: "";
  background-image: url(images/icon_calendar.png);
  background-size: cover;
}
.t-studio__card .button .calender:hover::before {
  background-image: url(images/icon_calendar-c.png);
}
.t-studio__card .button .kitchen:before {
  position: absolute;
  left: 10px;
  width: 23px;
  height: 23px;
  content: "";
  background-image: url(images/icon_kitchen-c.png);
  background-size: cover;
}
.t-studio__card .button .kitchen:hover::before {
  background-image: url(images/icon_kitchen-w.png);
}
.t-studio__eye-catch {
  margin-bottom: 60px;
  padding: 15px;
  background-color: #e3f9ec;
  border-radius: 10px;
  text-align: center;
}
.t-studio__eye-catch p {
  padding: 15px;
  border: dotted 2px #4faa74;
  border-radius: 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}
.t-studio__eye-catch p span {
  display: block;
  font-size: 36px;
  color: #4faa74;
}
.t-studio .row2-ttl {
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}
.t-studio__row2 {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.t-studio__row2 .left {
  min-height: 0;
  min-width: 0;
  width: 45%;
}
.t-studio__row2 .left__badge {
  width: calc(33.3333333333% - 6.6666666667px);
  padding: 5px;
  border: solid 2px #4faa74;
  border-radius: 10px;
  color: #4faa74;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.t-studio__row2 .left__badge p {
  margin: 0;
  padding: 10px 2px;
  border: dotted 2px #4faa74;
  border-radius: 10px;
}
.t-studio__row2 .left__badge-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 40px;
}
.t-studio__row2 .cont {
  flex: 1;
}
.t-studio__row2 .t-studio__slider {
  margin-bottom: 10px;
}
.t-studio__row2 .t-studio__slider img {
  border-radius: 10px;
}
.t-studio__row2 h3 {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
}
.t-studio__row2 p {
  margin-bottom: 20px;
  font-size: 16px;
}
.t-studio__row2 p .color {
  color: #148202;
}
.t-studio__row2 table {
  width: 100%;
  margin-bottom: 30px;
}
.t-studio__row2 table tr {
  display: flex;
  align-items: stretch;
  gap: 15px;
}
.t-studio__row2 table tr:not(:last-of-type) {
  margin-bottom: 10px;
}
.t-studio__row2 table th {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding: 5px;
  font-size: 14px;
  background-color: #e8e8e8;
  border-radius: 3px;
}
.t-studio__row2 table td {
  flex: 1;
  font-size: 16px;
}
.t-studio__row2 table td .large {
  font-size: 36px;
}
.t-studio__row2 table td a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 110px;
  height: 25px;
  border: solid 1px #000;
  border-radius: 12.5px;
  color: #333;
  font-size: 12px;
}
.t-studio__row2 table td a:hover {
  background-color: #000;
  color: #fff;
}
.t-studio__row2 table td a.map::before {
  position: absolute;
  right: 5px;
  width: 9px;
  height: 13px;
  content: "";
  background-image: url(images/icon_pin.png);
  background-size: cover;
}
.t-studio__row2 table td a.map:hover::before {
  background-image: url(images/icon_pin-w.png);
}
.t-studio__row2 .button {
  display: flex;
  gap: 15px;
}

/* t-equipment */
.t-equipment {
  padding: 50px 10px;
  background-color: #f2f2f2;
}
.t-equipment .parts-title h2 {
  margin-bottom: 15px;
}
.t-equipment__card {
  border: solid 1px #4faa74;
  margin-bottom: 10px;
  break-inside: avoid;
  border-radius: 5px;
  overflow: hidden;
}
.t-equipment__card h3 {
  padding: 5px 5px 5px 20px;
  background-color: #4faa74;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.t-equipment__card h3.s {
  font-size: 16px;
}
.t-equipment__card p {
  padding: 5px 5px 5px 20px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.t-equipment__card p:not(:last-of-type) {
  border-bottom: solid 1px #4faa74;
}
.t-equipment__card-wrapper {
  margin-top: 25px;
  column-count: 3;
  column-gap: 15px;
}

/* t-flow */
.t-flow {
  padding: 50px 0;
  background-color: #4faa74;
}
.t-flow .parts-title {
  margin-bottom: 30px;
  color: #fff;
}
.t-flow__card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 25px;
  padding: 20px 25px;
  background-color: #fff;
  border-radius: 10px;
}
.t-flow__card:not(:last-of-type)::before {
  position: absolute;
  left: 110px;
  top: 80px;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #8fd1a9;
  z-index: 1;
}
.t-flow__card .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 163px;
  aspect-ratio: 1;
  background-color: #f3f3f3;
  border-radius: 50%;
  z-index: 1;
}
.t-flow__card .icon img {
  width: 45%;
}
.t-flow__card .cont {
  flex: 1;
}
.t-flow__card .ttl {
  margin: 10px;
  font-weight: 700;
}
.t-flow__card .ttl small {
  color: #4faa74;
  font-size: 18px;
}
.t-flow__card .ttl h3 {
  font-size: 28px;
  line-height: 1.2;
}
.t-flow__card .detail {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}
.t-flow__card .detail p:not(:last-of-type) {
  margin-bottom: 10px;
}
.t-flow__card .button {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin-bottom: 20px;
}
.t-flow__card .button .parts-button-w {
  width: calc(50% - 5px);
}
.t-flow__card .button p {
  font-size: 16px;
  font-weight: 500;
}
.t-flow__card .button .calender:before {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 24px;
  content: "";
  background-image: url(images/icon_calendar.png);
  background-size: cover;
}
.t-flow__card .button .calender:hover::before {
  background-image: url(images/icon_calendar-c.png);
}
.t-flow__card .button.center {
  justify-content: center;
  margin: 0 auto 20px;
}
.t-flow__card .t-flow-accordion {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(50% - 5px);
  padding: 10px 10px 10px 50px;
  border: solid 1px #4faa74;
  border-radius: 5px;
  color: #4faa74;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}
.t-flow__card .t-flow-accordion img {
  position: absolute;
  left: 10px;
  width: 25px;
  height: 25px;
}
.t-flow__card .t-flow-accordion:before, .t-flow__card .t-flow-accordion::after {
  position: absolute;
  right: 20px;
  content: "";
  width: 10px;
  height: 2px;
  background-color: #4faa74;
  transition: transform 0.1s;
}
.t-flow__card .t-flow-accordion:before {
  transform: translateX(-3px) rotate(45deg);
}
.t-flow__card .t-flow-accordion::after {
  transform: translateX(3px) rotate(-45deg);
}
.t-flow__card .t-flow-accordion.open:before {
  transform: translateX(-3px) rotate(-45deg);
}
.t-flow__card .t-flow-accordion.open::after {
  transform: translateX(3px) rotate(45deg);
}
.t-flow__card .t-flow-accordion-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.t-flow__card .t-flow-accordion-inner {
  display: none;
  padding: 30px 20px;
  border: solid 1px #4faa74;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
}
.t-flow__card .t-flow-accordion-inner h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}
.t-flow__card .t-flow-accordion-inner h5 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}
.t-flow__card .t-flow-accordion-inner .red {
  color: #e10202;
}
.t-flow__card .t-flow-accordion-inner p {
  margin-bottom: 20px;
  font-size: 18px;
}
.t-flow__card .t-flow-accordion-inner p .large {
  font-size: 30px;
  font-weight: 700;
}
.t-flow__card .t-flow-accordion-inner small {
  display: block;
  margin-bottom: 30px;
  font-size: 12px;
}
.t-flow__card .t-flow-accordion-inner .parts-button {
  margin: 30px auto;
  max-width: 480px;
  height: 50px;
}
.t-flow__card .t-flow-accordion-inner ul {
  border: solid 3px #037e00;
  font-size: 18px;
  font-weight: 500;
}
.t-flow__card .t-flow-accordion-inner ul li {
  padding: 20px 10px;
}
.t-flow__card .t-flow-accordion-inner ul li:not(:last-of-type) {
  border-bottom: solid 1px #333;
}
.t-flow__card .t-flow-accordion-inner table.cancel {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.t-flow__card .t-flow-accordion-inner table.cancel tr {
  border: solid 1px #333333;
  font-size: 18px;
  font-weight: 500;
}
.t-flow__card .t-flow-accordion-inner table.cancel th {
  padding: 5px 5px 5px 30px;
  background-color: #e0e0e0;
  border-right: solid 1px #333;
  text-align: left;
}
.t-flow__card .t-flow-accordion-inner table.cancel td {
  padding: 5px 5px 5px 30px;
}
.t-flow__card .t-flow-accordion-inner table.price-rental {
  width: 100%;
}
.t-flow__card .t-flow-accordion-inner table.price-rental tr {
  border-top: solid 1px #4faa74;
}
.t-flow__card .t-flow-accordion-inner table.price-rental tr:last-of-type {
  border-bottom: solid 1px #4faa74;
}
.t-flow__card .t-flow-accordion-inner table.price-rental th {
  padding: 5px;
  background-color: #4faa74;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  vertical-align: middle;
}
.t-flow__card .t-flow-accordion-inner table.price-rental td {
  padding: 20px;
  border-left: solid 1px #4faa74;
  font-size: 16px;
  font-weight: 500;
  vertical-align: middle;
}
.t-flow__card .t-flow-accordion-inner table.price-rental td:first-of-type {
  width: 380px;
}
.t-flow__card .t-flow-accordion-inner table.price-rental td:last-of-type {
  border-right: solid 1px #4faa74;
}
.t-flow__card .t-flow-accordion-inner table.price-rental td .large {
  font-size: 24px;
}
.t-flow__card .t-flow-accordion-inner table.price-rental td small {
  display: block;
}
.t-flow__card .t-flow-accordion.discount {
  padding: unset;
}
.t-flow__card .t-flow-accordion.discount:before {
  transform: translateY(-3px) rotate(45deg);
}
.t-flow__card .t-flow-accordion.discount::after {
  transform: translateY(3px) rotate(-45deg);
}
.t-flow__card .t-flow-accordion.discount.open:before {
  transform: translateY(-3px) rotate(45deg) !important;
}
.t-flow__card .t-flow-accordion.discount.open::after {
  transform: translateY(3px) rotate(-45deg) !important;
}
.t-flow__card .t-flow-accordion.discount a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 10px 10px 50px;
}
.t-flow .sp-arrow {
  display: none;
}

/* t-qa */
.t-qa {
  padding: 50px 0;
  background-color: #4faa74;
}
.t-qa .parts-title {
  margin-bottom: 25px;
  color: #fff;
}
.t-qa .parts-title h2 {
  margin-bottom: 15px;
}
.t-qa .parts-title small {
  color: #b5fbd2;
}
.t-qa__card {
  position: relative;
  margin-bottom: 10px;
  padding: 20px;
  background-color: #fff;
  line-height: 1.3;
  border-radius: 10px;
}
.t-qa__card h3 {
  position: relative;
  padding-left: 70px;
  padding-right: 50px;
  font-size: clamp(1rem, 0.5556rem + 0.9259vw, 1.25rem);
  font-weight: 500;
}
.t-qa__card h3::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
  padding-bottom: 5px;
  background-color: #4faa74;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
}
.t-qa__card p {
  position: relative;
  display: none;
  margin-top: 20px;
  padding-left: 70px;
  padding-right: 70px;
  font-size: clamp(0.75rem, 0.0833rem + 1.3889vw, 1.125rem);
}
.t-qa__card .arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  padding: 10px;
  cursor: pointer;
}
.t-qa__card .arrow span {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #333;
  transition: transform 0.1s;
}
.t-qa__card .arrow .arrow02 {
  transform: rotate(90deg);
}
.t-qa__card .arrow.accordion-open .arrow02 {
  transform: rotate(0deg);
}
.t-qa .accordion {
  display: none;
}
.t-qa .accordion-category__title {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 20px 10px 20px 30px;
  background-color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 26px;
  font-weight: 700;
}
.t-qa .accordion-category__title:before, .t-qa .accordion-category__title::after {
  position: absolute;
  right: 20px;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
  transition: transform 0.1s;
}
.t-qa .accordion-category__title:before {
  transform: translateX(-5px) rotate(45deg);
}
.t-qa .accordion-category__title::after {
  transform: translateX(5px) rotate(-45deg);
}
.t-qa .accordion-category__title.open:before {
  transform: translateX(-5px) rotate(-45deg);
}
.t-qa .accordion-category__title.open::after {
  transform: translateX(5px) rotate(45deg);
}

/* footer */
.footer {
  padding-top: 130px;
  background-color: #4faa74;
  background-image: url(images/footer_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  border-top: solid 1px #e0e0e0;
  color: #fff;
}
.footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.footer__cont {
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer__cont .logo {
  max-width: 150px;
}
.footer__cont .company .name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  font-size: 14px;
}
.footer__cont .company .name a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 20px;
  padding: 0 25px 0 15px;
  background-color: #fff;
  border-radius: 10px;
  color: #333;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.footer__cont .company .name a::before {
  position: absolute;
  right: 10px;
  width: 10px;
  height: 10px;
  content: "";
  background-image: url(images/icon_external-link.png);
  background-size: cover;
}
.footer__cont .company .name a:hover {
  background-color: #333;
  color: #fff;
  opacity: unset;
}
.footer__cont .company .name a:hover::before {
  background-image: url(images/icon_external-link-w.png);
}
.footer__cont .company .address {
  margin-bottom: 15px;
  font-size: 14px;
}
.footer__cont .company .mail,
.footer__cont .company .tel {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  font-size: 16px;
}
.footer__cont .company .mail span,
.footer__cont .company .tel span {
  width: 41px;
  background-color: #fff;
  border-radius: 2px;
  color: #4faa74;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.footer__sns {
  display: flex;
  align-items: center;
}
.footer__sns .icon {
  text-align: right;
}
.footer__sns .icon img {
  width: 50%;
}
.footer__location-goo {
  display: flex;
  justify-content: center;
  padding-bottom: 140px;
  border-bottom: solid 1px #e0e0e0;
}
.footer__location-goo .banner {
  max-width: 200px;
}
.footer__right {
  max-width: 1024px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
.footer__right small {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .pc-none {
    display: unset;
  }
  .sp-none {
    display: none;
  }
  .inner {
    padding: 0 10px;
  }
  .parts-title h2 {
    font-size: 48px;
  }
  .parts-title small {
    font-size: 10px;
  }
  .parts-title .add {
    margin-top: 10px;
    font-size: 13px;
  }
  .parts-button {
    max-width: 200px;
    height: 35px;
  }
  .parts-button a {
    gap: 10px;
    border-radius: 17.5px;
    font-size: 10px;
  }
  .parts-button-w {
    max-width: 200px;
    height: 35px;
  }
  .parts-button-w a {
    gap: 10px;
    border-radius: 17.5px;
    font-size: 10px;
  }
  .parts-button-w a.pdf:before {
    width: 19px;
    height: 23px;
  }
  .parts-button-w a.arrow:before, .parts-button-w a.arrow:after {
    right: 10px;
    width: 8px;
  }
  .parts-banner {
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 50px;
  }
  .parts-banner .banner {
    width: calc(50% - 5px);
  }
  /* header sp */
  .header__wrapper.transform {
    box-shadow: unset;
  }
  .header__wrapper.transform .header__menu {
    background-color: unset;
  }
  .header__wrapper.transform .header__menu .icon-arrow {
    fill: #000;
  }
  .header__wrapper.transform .header__logo {
    max-width: 100px;
  }
  .header__logo {
    max-width: 100px;
    z-index: 20;
  }
  .header__menu {
    flex: 1;
    padding: unset;
  }
  .header__menu ul {
    display: none;
  }
  .header-sp-menu {
    position: fixed;
    left: 110%;
    display: unset;
    width: 100%;
    height: 100%;
    padding-top: 130px;
    padding-bottom: 80px;
    background-color: #4faa74;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    overflow-y: scroll;
    transition: 0.2s;
    z-index: -1;
  }
  .header-sp-menu ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding-left: 10vw;
    padding-right: 10vw;
  }
  .header-sp-menu li {
    width: 100%;
    padding-bottom: 15px;
  }
  .header-sp-menu li.small {
    position: relative;
    border-bottom: solid 1px #7cca9b;
    font-size: 0.8em;
  }
  .header-sp-menu li.small.last {
    border: unset;
  }
  .header-sp-menu li.small a {
    display: flex;
    align-items: center;
  }
  .header-sp-menu li.small a .icon-arrow {
    position: absolute;
    right: 0;
    width: 9px;
    height: 16px;
    user-select: none;
    fill: #fff;
  }
  .header-sp-menu .parent-menu.sp {
    width: 100%;
  }
  .header-sp-menu .parent-menu.sp .parent-menu-wrap {
    width: 100%;
  }
  .header-sp-menu .parent-menu.sp .parent-menu-wrap a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-sp-menu .parent-menu.sp .parent-menu-wrap .icon-arrow {
    width: 9px;
    height: 16px;
    fill: #fff;
    transition: transform 0.3s;
    rotate: 90deg;
  }
  .header-sp-menu .parent-menu.sp .sub-menu {
    height: 0;
    overflow: hidden;
    margin: unset;
    padding-left: 15px;
    transition: all 0.3s ease;
  }
  .header-sp-menu .parent-menu.sp.is-open .sub-menu {
    height: auto;
    margin-top: 30px;
  }
  .header-sp-menu .parent-menu.sp.is-open .icon-arrow {
    transform: rotate(180deg);
  }
  .header-sp-menu .sp-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 90%;
    height: 40px;
    margin: 0 auto;
    padding-left: 10px;
    background-color: #fff;
    border: solid 1px #4faa74;
    border-radius: 30px;
    color: #0d5a00;
    opacity: unset;
  }
  .header-sp-menu .sp-btn:hover {
    background-color: #4faa74;
    border: solid 1px #fff;
    color: #fff;
  }
  .header-sp-menu .sp-btn:before {
    position: absolute;
    left: 10px;
    width: 16px;
    height: 16px;
    content: "";
    background-image: url(images/icon_calendar-c.png);
    background-size: cover;
  }
  .header-sp-menu .sp-btn:hover::before {
    background-image: url(images/icon_calendar.png);
  }
  .header-sp-menu .sp-btn small {
    font-size: 10px;
    font-weight: 700;
  }
  .header .header-button {
    max-width: unset;
    width: auto;
    display: flex;
    align-items: center;
  }
  .header .header-button .contact-wrap {
    width: 150px;
    height: 40px;
  }
  .header .header-button .pc-btn {
    padding-left: 10px;
    border-radius: 20px;
    font-size: 12px;
  }
  .header .header-button .pc-btn:before {
    left: 10px;
    width: 16px;
    height: 16px;
  }
  .header .header-button .pc-btn small {
    font-size: 8px;
  }
  .header .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    margin-left: 5px;
    background-color: #2e9357;
    cursor: pointer;
    z-index: 20;
  }
  .header .hamburger span {
    width: 50%;
    height: 1px;
    background-color: #fff;
    transition: 0.1s;
  }
  .header .hamburger .middle {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .open {
    overflow: hidden;
  }
  .open .header__menu .hamburger .top {
    transform: translateY(9px) rotate(45deg);
  }
  .open .header__menu .hamburger .middle {
    opacity: 0;
  }
  .open .header__menu .hamburger .bottom {
    transform: translateY(-9px) rotate(-45deg);
  }
  .open .header-sp-menu {
    left: 0;
  }
  .fix-btn-top {
    width: 70px;
    height: 70px;
    font-size: 8px;
  }
  .fix-btn-top a {
    padding-top: 30px;
  }
  .fix-btn-top a::before, .fix-btn-top a::after {
    top: 40%;
    width: 10px;
    height: 2px;
  }
  .fix-btn-top a::before {
    transform: translateX(3px) rotate(45deg);
  }
  .fix-btn-top a::after {
    transform: translateX(-3px) rotate(-45deg);
  }
  #cta {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: calc(100% - 70px);
    height: 70px;
    background-color: #2e9357;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    z-index: 15;
  }
  #cta .button {
    width: 95%;
    height: 50px;
    margin: 10px auto 0;
    background-color: #fee403;
    border-radius: 25px;
    color: #0d5901;
  }
  #cta a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
    padding-left: 20px;
    white-space: nowrap;
  }
  #cta a img {
    position: absolute;
    left: 10px;
    width: 25px;
  }
  #cta a small {
    font-size: 10px;
  }
  /* MV sp */
  .MV {
    height: 550px;
  }
  .MV .title {
    left: 15px;
    bottom: 80px;
    justify-content: flex-end;
    white-space: nowrap;
  }
  .MV .title h1 {
    gap: 5px;
    margin-bottom: 10px;
    font-size: 6.5vw;
  }
  .MV .title p {
    font-size: 2.5vw;
  }
  .MV .title p.pc-none {
    display: flex;
  }
  .MV .title p.sp-none {
    display: none;
  }
  .MV__slider {
    padding-top: 70px;
  }
  .MV .slick-track {
    gap: 10px;
  }
  .MV .slick-track img {
    border-radius: 10px;
  }
  .MV__rotate {
    bottom: 30px;
    right: 15px;
    z-index: 2;
  }
  .MV__rotate img {
    max-width: 130px;
  }
  .MV__rotate p {
    font-size: 12px;
  }
  /* news sp */
  .news {
    padding: 50px 0 0;
  }
  .news .inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .news .parts-title {
    position: relative;
    align-items: flex-start;
    width: 100%;
  }
  .news .parts-button-w {
    position: absolute;
    right: 0;
    width: 115px;
    height: 30px;
    border-radius: 15px;
    font-size: 10px;
  }
  .news__card a {
    padding: 15px 5px;
  }
  .news__card .thumb {
    display: none;
  }
  .news__card .cont {
    font-size: 13px;
  }
  .news__card .date {
    font-size: 10px;
  }
  /* our-clients sp */
  .our-clients__cont {
    padding: 30px 0;
  }
  .our-clients .ttl h2 {
    font-size: 18px;
  }
  .our-clients .ttl small {
    font-size: 10px;
  }
  .our-clients .slick-track {
    gap: 20px;
  }
  /* t-about sp */
  .t-about {
    padding: 50px 0;
  }
  .t-about .t-about-sp-ttl {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    padding: 15px 10px 40px;
    background-color: #4faa74;
    border: solid 2.5px #fff;
    border-radius: 5px;
    font-weight: 700;
  }
  .t-about .t-about-sp-ttl .num {
    font-size: 30px;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1;
  }
  .t-about .t-about-sp-ttl h2 {
    font-size: 18px;
  }
  .t-about .t-about-sp-ttl .more {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    bottom: 10px;
    right: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }
  .t-about .t-about-sp-ttl .more .arrow {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border-radius: 50%;
  }
  .t-about .t-about-sp-ttl .more .arrow::before, .t-about .t-about-sp-ttl .more .arrow::after {
    content: "";
    width: 10px;
    height: 1.5px;
    background-color: #4faa74;
  }
  .t-about .t-about-sp-ttl .more .arrow::before {
    transform: translateX(1.5px) rotate(45deg);
  }
  .t-about .t-about-sp-ttl .more .arrow::after {
    transform: translateX(-1.5px) rotate(-45deg);
  }
  .t-about .t-about-sp-ttl.open .more .arrow::before {
    transform: translateX(1.5px) rotate(-45deg);
  }
  .t-about .t-about-sp-ttl.open .more .arrow::after {
    transform: translateX(-1.5px) rotate(45deg);
  }
  .t-about__card {
    width: 100%;
    display: none;
  }
  .t-about__card h2 {
    display: none;
  }
  .t-about__card p {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .t-about__card-wrapper {
    gap: 20px;
    margin-top: 30px;
  }
  .t-about__card::before {
    display: none;
  }
  .t-about__card::after {
    top: -2px;
    right: -2px;
    width: 65px;
    height: 25px;
    font-size: 12px;
  }
  .t-about__card .parts-button-w {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .t-about__text {
    font-size: 130px;
  }
  .t-about__text p {
    animation: animetxt 15s linear infinite;
  }
  /* t-studio sp */
  .t-studio {
    padding: 50px 0;
  }
  .t-studio .slick-dots li button:before {
    font-size: 12px !important;
  }
  .t-studio__card {
    width: 100%;
  }
  .t-studio__card-wrapper {
    gap: 60px;
  }
  .t-studio__card h3 {
    font-size: 18px;
  }
  .t-studio__card p {
    font-size: 13px;
  }
  .t-studio__card table {
    margin-bottom: 20px;
  }
  .t-studio__card table tr {
    gap: 10px;
  }
  .t-studio__card table th {
    font-size: 10px;
  }
  .t-studio__card table td {
    font-size: 12px;
  }
  .t-studio__card table td .large {
    font-size: 25px;
  }
  .t-studio__card table td a {
    gap: 5px;
    width: 85px;
    height: 18px;
    border-radius: 9px;
    font-size: 8px;
  }
  .t-studio__card table td a.map::before {
    width: 6px;
    height: 9px;
  }
  .t-studio__card table td a.pdf {
    font-size: 8px;
  }
  .t-studio__card table td a.pdf::before {
    width: 10px;
    height: 12px;
  }
  .t-studio__card .button {
    gap: 5px;
  }
  .t-studio__card .button .calender:before {
    left: 5px;
    width: 14px;
    height: 14px;
  }
  .t-studio__card .button .kitchen:before {
    left: 5px;
    width: 16px;
    height: 17px;
  }
  .t-studio__eye-catch {
    margin-bottom: 30px;
    padding: 10px;
  }
  .t-studio__eye-catch p {
    padding: 10px;
    font-size: 13px;
  }
  .t-studio__eye-catch p span {
    font-size: 18px;
  }
  .t-studio .row2-ttl {
    font-size: 16px;
  }
  .t-studio__row2 {
    flex-direction: column-reverse;
  }
  .t-studio__row2 .left {
    width: 100%;
  }
  .t-studio__row2 .left__badge {
    width: 100%;
  }
  .t-studio__row2 .left__badge p {
    padding: 5px 2px;
    font-size: 12px;
  }
  .t-studio__row2 .left__badge-wrapper {
    flex-direction: column;
  }
  .t-studio__row2 h3 {
    font-size: 18px;
  }
  .t-studio__row2 p {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .t-studio__row2 table {
    margin-bottom: 20px;
  }
  .t-studio__row2 table tr {
    gap: 10px;
  }
  .t-studio__row2 table th {
    font-size: 10px;
  }
  .t-studio__row2 table td {
    font-size: 12px;
  }
  .t-studio__row2 table td .large {
    font-size: 25px;
  }
  .t-studio__row2 table td a {
    gap: 5px;
    width: 85px;
    height: 18px;
    border-radius: 9px;
    font-size: 8px;
  }
  .t-studio__row2 table td a.map::before {
    width: 6px;
    height: 9px;
  }
  .t-studio__row2 table td a.pdf {
    font-size: 8px;
  }
  .t-studio__row2 table td a.pdf::before {
    width: 10px;
    height: 12px;
  }
  .t-studio__row2 .button {
    gap: 5px;
  }
  /* t-equipment sp */
  .t-equipment {
    padding: 50px 0;
  }
  .t-equipment .parts-title h2 {
    margin-bottom: 10px;
  }
  .t-equipment__card h3 {
    padding: 5px;
    font-size: 13px;
  }
  .t-equipment__card h3.s {
    font-size: 11px;
  }
  .t-equipment__card p {
    padding: 5px;
    font-size: 13px;
  }
  .t-equipment__card-wrapper {
    column-count: 2;
    column-gap: 10px;
  }
  /* t-flow sp */
  .t-flow {
    padding: 50px 0;
  }
  .t-flow .parts-title {
    margin-bottom: 20px;
  }
  .t-flow__card {
    padding: 20px 20px 40px;
  }
  .t-flow__card:not(:last-of-type)::before {
    display: none;
  }
  .t-flow__card .sp-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 45%;
    top: 97%;
    width: 55px;
    height: 55px;
    background-color: #3a8f5c;
    border-radius: 50%;
    z-index: 1;
  }
  .t-flow__card .sp-arrow::before, .t-flow__card .sp-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 15px;
    height: 2.5px;
    background-color: #fff;
  }
  .t-flow__card .sp-arrow::before {
    transform: translateX(-5px) rotate(45deg);
  }
  .t-flow__card .sp-arrow::after {
    transform: translateX(5px) rotate(-45deg);
  }
  .t-flow__card .icon {
    position: absolute;
    width: 80px;
  }
  .t-flow__card .ttl {
    padding: 0 0 30px 90px;
  }
  .t-flow__card .ttl small {
    font-size: 12px;
  }
  .t-flow__card .ttl h3 {
    font-size: 18px;
  }
  .t-flow__card .detail {
    font-size: 12px;
  }
  .t-flow__card .button {
    margin-bottom: 20px;
  }
  .t-flow__card .button .parts-button-w {
    width: 100%;
    max-width: unset;
  }
  .t-flow__card .button .parts-button {
    max-width: unset;
  }
  .t-flow__card .button p {
    font-size: 12px;
  }
  .t-flow__card .button .calender:before {
    width: 18px;
    height: 18px;
  }
  .t-flow__card .t-flow-accordion {
    width: 100%;
    padding: 10px 10px 10px 40px;
    font-size: 14px;
  }
  .t-flow__card .t-flow-accordion img {
    width: 18px;
    height: 18px;
  }
  .t-flow__card .t-flow-accordion-wrapper {
    margin-bottom: 10px;
  }
  .t-flow__card .t-flow-accordion-inner {
    padding: 20px 10px;
  }
  .t-flow__card .t-flow-accordion-inner h4 {
    font-size: 16px;
  }
  .t-flow__card .t-flow-accordion-inner h5 {
    font-size: 16px;
  }
  .t-flow__card .t-flow-accordion-inner p {
    font-size: 14px;
  }
  .t-flow__card .t-flow-accordion-inner p .red {
    font-size: 16px;
  }
  .t-flow__card .t-flow-accordion-inner p .large {
    font-size: 20px;
  }
  .t-flow__card .t-flow-accordion-inner small {
    font-size: 10px;
  }
  .t-flow__card .t-flow-accordion-inner .parts-button {
    margin: 20px auto;
    height: 35px;
  }
  .t-flow__card .t-flow-accordion-inner ul {
    border: solid 2px #037e00;
    font-size: 14px;
  }
  .t-flow__card .t-flow-accordion-inner ul li {
    padding: 15px 10px;
  }
  .t-flow__card .t-flow-accordion-inner table.cancel tr {
    font-size: 13px;
  }
  .t-flow__card .t-flow-accordion-inner table.cancel th {
    padding: 5px;
  }
  .t-flow__card .t-flow-accordion-inner table.cancel td {
    padding: 5px;
  }
  .t-flow__card .t-flow-accordion-inner table.price-rental th {
    font-size: 14px;
  }
  .t-flow__card .t-flow-accordion-inner table.price-rental td {
    padding: 10px;
    font-size: 12px;
  }
  .t-flow__card .t-flow-accordion-inner table.price-rental td:first-of-type {
    width: unset;
  }
  .t-flow__card .t-flow-accordion-inner table.price-rental td .large {
    font-size: 18px;
  }
  .t-flow__card .t-flow-accordion.discount a {
    padding: 10px 10px 10px 40px;
  }
  /* t-qa sp */
  .t-qa {
    padding: 40px 0;
  }
  .t-qa .parts-title {
    margin-bottom: 15px;
  }
  .t-qa .parts-title h2 {
    margin-bottom: 10px;
  }
  .t-qa__card {
    margin-bottom: 10px;
    padding: 15px 10px;
  }
  .t-qa__card h3 {
    padding-left: 40px;
    padding-right: 30px;
    font-size: 13px;
  }
  .t-qa__card h3::before {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .t-qa__card p {
    margin-top: 20px;
    padding-left: 40px;
    padding-right: 30px;
    font-size: 13px;
  }
  .t-qa__card .arrow {
    top: 15px;
    right: 10px;
  }
  .t-qa__card .arrow span {
    width: 15px;
    height: 1px;
  }
  .t-qa__card-wrapper {
    margin-top: 15px;
  }
  .t-qa .accordion-category__title {
    padding: 20px 40px 20px 20px;
    font-size: 15px;
  }
  /* footer sp */
  .footer {
    padding-top: 60px;
    padding-bottom: 70px;
    background-image: url(images/footer_bg_sp.png);
    background-size: contain;
  }
  .footer .inner {
    flex-direction: column;
    justify-content: center;
    gap: 50px;
  }
  .footer__cont {
    flex-direction: column;
  }
  .footer__cont .logo {
    max-width: 120px;
  }
  .footer__cont .company .name {
    font-size: 12px;
  }
  .footer__cont .company .address {
    font-size: 11px;
  }
  .footer__cont .company .mail,
  .footer__cont .company .tel {
    font-size: 13px;
  }
  .footer__cont .company .mail span,
  .footer__cont .company .tel span {
    width: 35px;
    font-size: 10px;
  }
  .footer__sns {
    gap: 30px;
  }
  .footer__sns .icon {
    max-width: 30px;
    text-align: center;
  }
  .footer__sns .icon img {
    width: 100%;
  }
  .footer .parts-banner {
    margin: 0 auto 30px;
    padding: 0 10px;
  }
  .footer__location-goo {
    padding: 0 10px 70px;
  }
  .footer__location-goo .banner {
    width: 60%;
  }
  .footer__right {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer__right small {
    font-size: 8px;
  }
}