@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@600&display=swap");
:root {
  --noto:"Noto Sans JP", sans-serif;
  --shippori:"Shippori Mincho", serif;
  --inter:"Inter", sans-serif;
  --black:#5d3a32;
  --blue:#809cab;
  color: var(--black);
  font-family: var(--noto);
  line-height: 1.875;
  font-size: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f2ede2;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

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

header {
  height: 150px;
  background-color: #f2ede2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 23px 0;
}

.logo {
  width: 81px;
}
.logo img {
  mix-blend-mode: multiply;
}
.logo a:hover {
  opacity: 1;
}
.logo a:hover img {
  mix-blend-mode: multiply;
}

.header__nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
}
.header__nav-list li a {
  font-size: 15.6px;
  font-weight: 500;
}
.header__nav-list li.insta-link {
  width: 26px;
  line-height: 1;
}

.header__tel a {
  font-family: var(--shippori);
  color: #f39800;
  font-weight: 600;
  font-size: 36.5px;
  line-height: 1;
}
.header__tel a .small {
  display: inline-block;
  font-size: 20.5px;
}

.header__tel-time {
  font-size: 15px;
}

.header__oisogi {
  width: 288px;
}
.header__oisogi a {
  padding: 0 10px 2px;
  background-color: var(--black);
  font-weight: 500;
  font-size: 17.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100%;
}
.header__oisogi a .small {
  font-size: 10.5px;
  display: inline-block;
  margin-right: 5px;
}

.header__mail {
  width: 192px;
  height: 128px;
  background-color: #8f7772;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 7px;
  margin-top: -40px;
  border-radius: 0 0 20px 20px;
  padding-top: 7px;
}
.header__mail .icon {
  width: 39px;
  display: flex;
}
.header__mail .txt {
  font-weight: bold;
  text-align: center;
  font-size: 17.5px;
  line-height: 1.5;
}

.sp-menu__btn-bl {
  display: none;
}

.sp-menu {
  display: none;
}

@media screen and (max-width: 1250px) {
  .header__nav-list {
    gap: 25px;
  }
  header {
    gap: 25px;
  }
}
@media screen and (max-width: 1200px) {
  header {
    height: 67px;
    background-color: #f2ede2;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 0 0 0 20px;
  }
  header .header__nav {
    display: none;
  }
  header .header__tel-bl {
    display: none;
  }
  header .header__mail {
    display: none;
  }
  header .sp-menu__btn-bl {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 201px;
  }
  .sp-menu__btn {
    border-right: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: 1/1;
  }
  #ham {
    position: relative;
    width: 67px;
    aspect-ratio: 1/1;
  }
  #ham .ham__line {
    width: 22px;
    height: 2px;
    background-color: var(--black);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
  }
  #ham .ham__line:nth-child(1) {
    top: 40%;
  }
  #ham .ham__line:nth-child(2) {
    top: 50%;
  }
  #ham .ham__line:nth-child(3) {
    top: 61%;
  }
  #ham.active .ham__line:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
  }
  #ham.active .ham__line:nth-child(2) {
    opacity: 0;
  }
  #ham.active .ham__line:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
  }
  .sp-menu {
    display: block;
    top: 67px;
    right: -402px;
    width: 400px;
    height: calc(100vh - 67px);
    position: fixed;
    background-color: #f2ede2;
    overflow: scroll;
    z-index: 1000;
    max-width: 100%;
    transition: all 0.7s ease-in-out;
  }
  .sp-menu.active {
    right: 0;
  }
  .sp-menu::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .sp-menu::-webkit-scrollbar-thumb {
    display: none;
  }
  .sp-menu::-webkit-scrollbar-track {
    display: none;
  }
  .sp-menu::-webkit-scrollbar-button {
    display: none;
  }
  .sp-menu::-webkit-scrollbar-corner {
    display: none;
  }
  .sp-menu::-webkit-scrollbar {
    display: none;
  }
  .sp-menu .sp-menu__wrapper {
    padding: 50px 0 100px;
  }
  .sp-menu .header__tel-bl {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sp-menu .header__tel a {
    font-size: 32px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .sp-menu .header__tel a .small {
    font-size: 17px;
  }
  .sp-menu .header__mail .icon {
    width: 30px;
  }
  .sp-menu .header__mail .txt {
    font-size: 14px;
  }
  .sp-menu .header__mail .txt br {
    display: none;
  }
  .logo {
    width: 33px;
  }
  .sp-menu__btn:nth-child(1) img {
    width: 20px;
  }
  .sp-menu__btn:nth-child(2) img {
    width: 26px;
  }
  .sp-menu .header__nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 270px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .sp-menu .header__nav-list li a {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 20px;
  }
  .sp-menu .header__nav-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -33%) rotate(-45deg);
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    display: block;
  }
  .header__mail {
    width: 270px;
    height: 50px;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
    border-radius: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .header__oisogi a {
    padding: 0px 10px 1px;
    width: 270px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .header__tel-time {
    font-size: 13.9px;
    margin: 5px auto;
    text-align: center;
  }
}
footer {
  background-color: var(--blue);
  padding-bottom: 100px;
  position: relative;
}

.footer__contact-bl {
  background-color: #fff;
  transform: translateY(-60px);
  padding: 60px 50px 50px;
  margin-bottom: 100px;
}

.footer__contact-ttl {
  font-size: 32px;
  text-align: center;
  color: var(--blue);
  font-weight: 500;
  position: relative;
  margin-bottom: 30px;
}
.footer__contact-ttl::after {
  content: "";
  position: absolute;
  top: -93px;
  left: 50%;
  transform: translateX(-50%);
  width: 283px;
  height: 95px;
  background-image: url(../img/common/contact.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  display: block;
}

.footer__contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.footer__contact-list li {
  border: 1px solid var(--blue);
  padding: 20px 20px 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.footer__contact-ttl-middle {
  font-size: 17px;
  font-weight: 500;
  position: relative;
}
.footer__contact-ttl-middle.footer__contact-ttl-under {
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.footer__contact-ttl-middle.footer__contact-ttl-under::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100px;
  height: 1px;
  background-color: var(--black);
}

.footer__contact-tel {
  font-family: var(--shippori);
  font-size: 38px;
  margin-bottom: 12px;
}
.footer__contact-tel .small {
  font-size: 22px;
}
.footer__contact-tel a {
  color: #f6aa46;
  display: flex;
  align-items: flex-end;
  line-height: 0.9;
  white-space: nowrap;
}

.footer__contact-time {
  font-size: 15px;
}

.footer__oisogi-tel {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 90%;
  transform: translate(-50%, 50%);
  display: block;
}

.footer__contact-mail-icon {
  display: block;
  width: 46px;
  margin: 10px auto 0;
}

.footer__logo {
  display: block;
  width: 81px;
  margin: 0 auto 20px 7%;
}
.footer__logo img {
  mix-blend-mode: color-burn;
}
.footer__logo:hover {
  opacity: 1;
}

.footer__main-flex {
  display: flex;
  padding: 0 7%;
}

.footer__main-cont {
  padding-top: 20px;
}

.footer__main-left {
  width: 320px;
  padding-right: 20px;
  border-right: 1px solid #231815;
  color: #231815;
}

.footer__main-name {
  font-size: 21px;
}

.footer__main-address {
  font-size: 18px;
}

.footer__copy {
  font-size: 18px;
}

.footer__main-right {
  width: calc(100% - 320px);
  padding-left: 40px;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 35px;
}
.footer__nav-list li a {
  color: #231815;
  font-size: 17px;
}
.footer__nav-list li.insta-link {
  width: 100%;
}
.footer__nav-list li.insta-link a {
  display: block;
  width: 21px;
}
.footer__nav-list li:nth-of-type(1) {
  width: 68px;
}

.page-top-link {
  width: 111px;
  height: 75px;
  position: absolute;
  bottom: 100px;
  left: calc(50% + 580px);
  top: auto;
}

@media screen and (max-width: 1400px) {
  .page-top-link {
    width: 80px;
    aspect-ratio: 111/75;
    left: auto;
    right: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .footer__contact-bl {
    padding: 140px 30px 30px;
  }
  .footer__contact-ttl {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .footer__contact-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__main-cont {
    padding-top: 0;
    position: relative;
  }
  .footer__logo {
    display: block;
    width: 40px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .footer__main-flex {
    padding: 0;
    flex-direction: column;
    position: relative;
  }
  .footer__main-left {
    width: 100%;
    padding-right: 0;
    border-right: none;
    color: #231815;
    border-bottom: 1px solid #231815;
    padding-left: 70px;
    padding-top: 16px;
    padding-bottom: 20px;
  }
  .footer__main-name {
    font-size: 14px;
  }
  .footer__main-address {
    font-size: 14px;
  }
  .footer__copy {
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer__main-right {
    width: 100%;
    padding-left: 40px;
    padding: 20px 20px 40px 80px;
  }
  .footer__nav-list li.insta-link {
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    left: 27px;
  }
  .page-top-link {
    display: none;
  }
  .footer__nav-list li a {
    font-size: 13px;
  }
  footer {
    padding-bottom: 30px;
  }
  .footer__nav-list li:nth-of-type(1) {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 640px) {
  .footer__contact-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .footer__contact-bl {
    padding: 110px 25px 30px;
  }
  .footer__contact-ttl::after {
    top: -72px;
    width: 188px;
    height: auto;
    aspect-ratio: 283/95;
  }
  .footer__contact-ttl-middle.footer__contact-ttl-under {
    padding-bottom: 9px;
    margin-bottom: 14px;
    font-size: 15px;
  }
  .footer__contact-tel {
    font-size: 27px;
    margin-bottom: 10px;
  }
  .footer__contact-tel .small {
    font-size: 14px;
  }
  .footer__contact-time {
    font-size: 11px;
  }
  .footer__contact-mail-icon {
    width: 32px;
  }
  .footer__nav-list li:nth-of-type(1) {
    width: 78px;
  }
}
main {
  margin-top: 150px;
}

.top__mv {
  position: relative;
}

.top__mv-ttl {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -52%);
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  width: 10%;
}

#top-concept {
  position: relative;
  padding: 120px 0;
  scroll-margin-top: 150px;
}
#top-concept::before {
  content: "";
  position: absolute;
  top: -9.9vw;
  left: 50%;
  border-left: calc(50vw - 8px) solid transparent;
  border-right: calc(50vw - 8px) solid transparent;
  border-bottom: 10vw solid #f2ede2;
  width: 100%;
  transform: translateX(-50%);
  z-index: 1;
  display: block;
}

.top-concept__bl {
  width: 620px;
  margin: 0 auto;
  position: relative;
}
.top-concept__bl::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -570px;
  width: 510px;
  aspect-ratio: 510/391;
  background-image: url(../img/top/concept-illu.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  display: block;
}
.top-concept__bl::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -570px;
  width: 517px;
  aspect-ratio: 517/355;
  background-image: url(../img/top/concept-illu02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  display: block;
}

.base__ttl {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.base__ttl::after {
  content: "";
  position: absolute;
  top: -97px;
  left: 50%;
  transform: translateX(-50%);
  width: 288px;
  height: 109px;
  background-image: url(../img/top/concept.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  display: block;
}
.base__ttl.top-point__ttl::after {
  top: -80px;
  width: 220px;
  height: 92px;
  background-image: url(../img/top/point.svg);
}
.base__ttl.top-service__ttl::after {
  top: -67px;
  width: 270px;
  height: 75px;
  background-image: url(../img/top/service.svg);
}
.base__ttl.top-work__ttl::after {
  top: -75px;
  width: 214px;
  height: 89px;
  background-image: url(../img/top/work.svg);
}
.base__ttl.top-news__ttl::after {
  transform: translateX(-60%);
  top: -75px;
  width: 193px;
  height: 91px;
  background-image: url(../img/top/news.svg);
}

.base__subttl {
  font-size: 41px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 50px;
  font-weight: 500;
}

.top-concept__txt {
  font-size: 18px;
  text-align: center;
}

.top-point__bl {
  padding: 200px 0 120px;
  background-image: url(../img/top/point-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.top-point__list {
  width: 933px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 3%;
  max-width: 90%;
}
.top-point__list li {
  width: 31.33%;
}

.top-point__comment-bl {
  width: 1100px;
  margin: -50px auto 0;
  border: 2px solid var(--blue);
  position: relative;
  padding: 40px;
  background-color: #fff;
}

.top-point__comment-ttl {
  text-align: center;
  font-weight: 500;
  font-size: 37px;
  margin-bottom: 40px;
  color: var(--blue);
  line-height: 1.5;
}

.top-point__comment-list {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
}
.top-point__comment-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;
  width: 160px;
  aspect-ratio: 160/216;
  background-image: url(../img/top/illu01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  display: block;
}
.top-point__comment-list::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  right: -200px;
  width: 143px;
  aspect-ratio: 143/198;
  background-image: url(../img/top/illu02.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  display: block;
}
.top-point__comment-list li {
  position: relative;
  padding-left: 40px;
  font-size: 29px;
  color: var(--blue);
  margin-bottom: 10px;
}
.top-point__comment-list li:last-of-type {
  margin-bottom: 0;
}
.top-point__comment-list li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 29px;
  height: 29px;
  background-color: var(--blue);
  border-radius: 50%;
}

.sp {
  display: none;
}

#top-point {
  padding: 0 0 120px;
  background-color: #fff;
}

#top-service {
  padding: 200px 0 120px;
}
#top-service .base__link {
  margin: 100px auto 0;
}

.top-service__txt {
  font-size: 18px;
  text-align: center;
}

.top-service__bl {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 110px;
}
.top-service__bl::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -420px;
  width: 250px;
  aspect-ratio: 250/189;
  background-image: url(../img/top/service-illu01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  display: block;
}
.top-service__bl::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -420px;
  width: 247px;
  aspect-ratio: 247/234;
  background-image: url(../img/top/service-illu02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  display: block;
}

.top-service__list {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}
.top-service__list li {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 70px;
  justify-content: flex-end;
}
.top-service__list li .img {
  width: 450px;
  position: relative;
  z-index: 2;
}
.top-service__list li .cont {
  width: 536px;
  padding: 35px 6% 40px;
  background-color: #fff;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  z-index: 1;
}
.top-service__list li .cont::before {
  content: "";
  position: absolute;
  top: 20px;
  left: auto;
  right: -20px;
  width: 120%;
  height: 100%;
  display: block;
  z-index: -1;
  mix-blend-mode: color;
  background: repeating-linear-gradient(-62deg, transparent, transparent 5px, #a48b78 5px, #a48b78 6px);
}
.top-service__list li .cont p {
  font-size: 18px;
}
.top-service__list li:nth-of-type(2n) {
  flex-direction: row;
  justify-content: flex-end;
}
.top-service__list li:nth-of-type(2n) .cont::before {
  left: -20px;
  right: auto;
}

.top-service__subttl {
  font-weight: 500;
  color: var(--blue);
  font-size: 35px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.base__link {
  width: 240px;
  height: 55px;
  border: 1.5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-family: var(--inter);
  position: relative;
  z-index: 1;
}
.base__link::before {
  content: "";
  position: absolute;
  top: 7px;
  right: -7px;
  width: 240px;
  height: 55px;
  background-color: #f6ce9a;
  z-index: -1;
  mix-blend-mode: color;
}
.base__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-20px, -50%);
  width: 40px;
  height: 1px;
  background-color: var(--black);
  z-index: 1;
  display: block;
  transition: all 0.3s ease;
}
.base__link:hover {
  opacity: 1;
}
.base__link:hover::after {
  width: 60px;
}

#top-work {
  padding: 200px 0 120px;
  background-color: #fff;
  overflow: hidden;
}
#top-work .base__link {
  margin: 100px auto 0;
}

.top-work__item {
  display: block;
}

.top-work__item-img {
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #ccc;
  margin-bottom: 15px;
}
.top-work__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-work__swiper {
  position: relative;
}
.top-work__swiper .no-works {
  font-size: 18px;
}

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 26px solid var(--blue);
  border-right: 0;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: auto;
  left: calc(50% + 15vw + 19px);
}

.swiper-button-next,
.swiper-button-prev {
  top: 10vw;
}

.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-right: 26px solid var(--blue);
  border-left: 0;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: calc(50% - 15vw - 45px);
  right: auto;
}

.top-work__item-txt-bl {
  display: flex;
}
.top-work__item-txt-bl time {
  width: 110px;
  font-size: 17px;
  color: var(--blue);
}
.top-work__item-txt-bl p {
  font-size: 17px;
  width: calc(100% - 110px);
}

#top-news {
  padding: 200px 0 250px;
}
#top-news .base__link {
  margin: 100px auto 0;
}

.inner-s {
  width: 900px;
  margin: 0 auto;
  max-width: 90%;
}

.news__list li {
  font-size: 20px;
}
.news__list li a {
  display: flex;
  border-bottom: 1px dashed var(--black);
  padding: 20px 0;
}
.news__list li a time {
  display: block;
  width: 30%;
  text-align: center;
  font-size: 20px;
  color: var(--blue);
}
.news__list li a p {
  width: 70%;
  font-size: 20px;
}
.news__list li:first-of-type a {
  border-top: 1px dashed var(--black);
}

.m {
  display: none;
}

@media screen and (max-width: 1900px) {
  .top-concept__bl::before {
    left: -350px;
    width: 300px;
  }
  .top-concept__bl::after {
    right: -350px;
    width: 320px;
  }
}
@media screen and (max-width: 1400px) {
  .top__mv-ttl .obi {
    font-size: 3.5vw;
  }
  .top-concept__bl {
    width: 550px;
  }
  .base__subttl {
    font-size: 32px;
    margin-bottom: 35px;
  }
  .top-concept__bl::before {
    left: -22vw;
    width: 21vw;
  }
  .top-concept__bl::after {
    right: -24vw;
    width: 21vw;
  }
  .top-concept__txt {
    font-size: 16px;
  }
  .top-point__comment-list li::before {
    top: 12px;
    width: 22px;
    height: 22px;
  }
  .top-point__comment-list li {
    padding-left: 32px;
    font-size: 22px;
  }
  .top-point__comment-ttl {
    font-size: 30px;
    margin-bottom: 28px;
  }
  .top-point__comment-list::before {
    left: -157px;
    width: 115px;
  }
  .top-point__comment-list::after {
    right: -140px;
    width: 107px;
  }
  .top-point__comment-bl {
    width: 850px;
  }
  .top-point__list {
    width: 800px;
  }
  .top-service__bl::before {
    left: -325px;
    width: 250px;
  }
  .top-service__bl::after {
    right: -325px;
    width: 247px;
  }
  .top-service__subttl {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1200px) {
  main {
    margin-top: 67px;
  }
  .top__mv {
    margin-top: 67px;
  }
  .top-concept__bl::before {
    left: -19vw;
    width: 21vw;
  }
  .top-concept__bl::after {
    right: -21vw;
    width: 20vw;
  }
  .top-service__bl::after {
    top: 10px;
    right: -22vw;
    width: 18vw;
  }
  .top-service__bl::before {
    left: -22vw;
    width: 18vw;
  }
  #top-news .base__link {
    margin: 60px auto 0;
  }
  #top-work .base__link {
    margin: 70px auto 0;
  }
  #top-service .base__link {
    margin: 70px auto 0;
  }
  #top-news {
    padding: 170px 0 180px;
  }
  #top-work {
    padding: 170px 0 100px;
  }
  #top-service {
    padding: 170px 0 100px;
  }
  #top-point {
    padding: 0 0 100px;
  }
  .top-point__bl {
    padding: 170px 0 120px;
  }
}
@media screen and (max-width: 1000px) {
  .top__mv-ttl .obi {
    font-size: 5.5vw;
    padding: 1.8vw 1.5vw;
  }
  .top__mv-ttl {
    top: 44%;
    left: 50%;
    width: 21%;
  }
  .top-concept__bl::before {
    display: none;
  }
  .top-concept__bl::after {
    width: 80%;
    right: auto;
    left: 50%;
    transform: translate(-50%, 100%);
  }
  .base__subttl {
    font-size: 28px;
    margin-bottom: 28px;
  }
  #top-concept {
    padding: 80px 0 435px;
    scroll-margin-top: 67px;
  }
  .top-point__comment-bl {
    max-width: 90%;
  }
  .top-point__comment-list::before {
    left: -110px;
    top: -134px;
    width: 89px;
  }
  .top-point__comment-list::after {
    right: -84px;
    width: 88px;
    bottom: -132px;
  }
  .m {
    display: inline-block;
  }
  .top-service__bl::before,
  .top-service__bl::after {
    display: none;
  }
  .top-service__list li .cont::before {
    right: -15px;
    width: 100%;
    top: 15px;
  }
  .top-service__list li {
    flex-direction: column-reverse;
    margin-bottom: 70px;
    align-items: center;
  }
  .top-service__list li .img {
    max-width: 75%;
  }
  .top-service__list li .cont {
    padding: 60px 30px 30px;
    margin-top: -38px;
    max-width: 105%;
  }
  .top-service__list li:nth-of-type(2n) {
    flex-direction: column-reverse;
  }
  .top-service__list li:nth-of-type(2n) .cont::before {
    left: auto;
    right: -15px;
    top: 15px;
  }
  .top-work__item-txt-bl p {
    font-size: 14px;
    width: 100%;
  }
  .top-work__item-txt-bl time {
    width: 100%;
    font-size: 14px;
  }
  .news__list li a p {
    width: calc(100% - 90px);
    font-size: 14px;
  }
  .news__list li a time {
    width: 90px;
    text-align: left;
    font-size: 14px;
  }
  .top-point__comment-list li::before {
    top: 12px;
    width: 19px;
    height: 19px;
  }
  .top-point__comment-ttl {
    font-size: 26px;
    margin-bottom: 28px;
  }
  .top-point__comment-list li {
    padding-left: 25px;
    font-size: 20px;
  }
  .base__link::before {
    top: 5px;
    right: -5px;
    width: 210px;
    height: 45px;
  }
  .base__link {
    width: 210px;
    height: 45px;
    font-size: 18px;
  }
  #top-news .base__link {
    margin: 45px auto 0;
  }
  .top-service__bl {
    margin: 0 auto 50px;
  }
  .top-service__subttl {
    font-size: 24px;
    margin-bottom: 7px;
  }
  .top-service__list li .cont p {
    font-size: 16px;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: calc(50% - 29.5vw - 45px);
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    left: calc(50% + 29.5vw + 19px);
  }
  .swiper-button-next, .swiper-button-prev {
    top: 20vw;
  }
  .top-work__item-txt-bl time {
    width: 100px;
    font-size: 14px;
  }
  .top-work__item-txt-bl p {
    font-size: 14px;
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 640px) {
  .base__ttl::after {
    top: -62px;
    width: 190px;
    height: auto;
    aspect-ratio: 288/109;
  }
  .base__ttl {
    font-size: 15px;
  }
  .base__subttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .top-concept__bl {
    max-width: 90%;
  }
  .top-concept__txt {
    font-size: 13px;
  }
  #top-concept {
    padding: 80px 0 calc(55vw + 60px);
  }
  .top-concept__bl::after {
    transform: translate(-50%, 95%);
  }
  .base__ttl.top-point__ttl::after {
    aspect-ratio: 220/92;
    top: -60px;
    width: 148px;
  }
  .top-point__list li {
    width: 47%;
  }
  .top-point__list {
    gap: 20px 5%;
  }
  #top-point .base__subttl {
    margin-bottom: 40px;
  }
  .top-point__comment-bl {
    padding: 40px 30px;
  }
  .top-point__comment-ttl {
    font-size: 19px;
    margin-bottom: 28px;
  }
  .top-point__comment-list li::before {
    top: 8px;
    width: 15px;
    height: 15px;
  }
  .top-point__comment-list li {
    padding-left: 20px;
    font-size: 15px;
  }
  .top-service__txt {
    font-size: 13px;
  }
  .base__ttl.top-service__ttl::after {
    top: -51px;
    aspect-ratio: 270/67;
    width: 217px;
  }
  #top-service {
    padding: 130px 0 100px;
  }
  .top-point__bl {
    padding: 130px 0 100px;
  }
  .base__ttl.top-work__ttl::after {
    top: -57px;
    width: 147px;
    aspect-ratio: 214/89;
    height: auto;
  }
  #top-work {
    padding: 130px 0 100px;
  }
  .base__ttl.top-news__ttl::after {
    top: -49px;
    width: 120px;
    height: auto;
    aspect-ratio: 193/91;
  }
  #top-news {
    padding: 130px 0 130px;
  }
  .top-work__item {
    padding: 0 50px;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: 27vw;
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    left: auto;
    right: 10px;
  }
  .top-service__list li .cont {
    max-width: 95%;
  }
}
@media screen and (max-width: 450px) {
  .top-point__comment-list::before {
    left: -14vw;
    top: -108px;
    width: 16vw;
  }
  .top-point__comment-list::after {
    right: -11vw;
    width: 16vw;
    bottom: -22vw;
  }
  #top-point {
    padding: 0 0 70px;
  }
  .top-service__list li .cont {
    max-width: 95%;
  }
  .top-service__subttl {
    font-size: 20px;
  }
  .top-service__list li .cont p {
    font-size: 13px;
  }
}
.under__mv {
  width: 100%;
  height: 330px;
  background-image: url(../img/work/work-mv.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-page .under__mv {
  background-image: url(../img/service/service-mv.webp);
}

.company-page .under__mv {
  background-image: url(../img/company/company-mv.webp);
}

.contact-page .under__mv {
  background-image: url(../img/contact/contact-mv.webp);
}

.under__mv-ttl {
  padding-top: 60px;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  position: relative;
}
.under__mv-ttl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  height: 75px;
  background-image: url(../img/top/service.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
}

.under-intr {
  padding: 120px 0;
  background-color: #fff;
}

.center-txt {
  text-align: center;
  font-size: 22px;
}

.mb80 {
  margin-bottom: 80px !important;
}

.inner {
  width: 1200px;
  margin: 0 auto;
  max-width: 90%;
}

.service__list {
  width: 1000px;
  margin: 0 auto;
  max-width: 100%;
}
.service__list > li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8%;
  margin-bottom: 100px;
}
.service__list > li .img {
  order: 1;
}
.service__list > li .cont {
  order: 2;
}

.service__list-ttl {
  font-size: 32px;
  font-weight: 500;
  color: var(--blue);
  padding-left: 0.5em;
  border-left: 9px solid var(--blue);
  line-height: 1.5;
  padding-bottom: 2px;
  margin-bottom: 20px;
}

.service__list-txt {
  font-size: 17px;
}

.service__list-ex {
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.service__list-ex-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.service__list-ex-list > li {
  border: 2px dotted var(--black);
  border-radius: 7px;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

#flow-sec {
  padding: 200px 0 120px;
}

.base__ttl.flow-sec-ttl {
  font-size: 46px;
}
.base__ttl.flow-sec-ttl::after {
  top: -55px;
  width: 183px;
  height: 89px;
  background-image: url(../img/service/flow.svg);
}

.w1000 {
  width: 1000px;
  margin: 0 auto;
  max-width: 90%;
}

.flow__list li {
  background-color: #fff;
  display: flex;
  padding: 30px;
  position: relative;
  align-items: center;
  margin-bottom: 100px;
}
.flow__list li::after {
  content: "";
  position: absolute;
  bottom: -75px;
  left: 50%;
  transform: translateX(-50%);
  width: 93px;
  height: 46px;
  background-image: url(../img/service/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  display: block;
}
.flow__list li:last-child {
  margin-bottom: 0;
}
.flow__list li:last-child::after {
  display: none;
}

.flow__list-ttl {
  width: 32%;
  font-size: 30px;
  padding: 30px 5%;
  font-weight: 500;
  line-height: 1.5;
}

.flow__list-txt {
  width: 68%;
  font-size: 18px;
  border-left: dashed 2px var(--black);
  padding-left: 40px;
}

.flow__list-num {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 63px;
  height: 63px;
  background-color: var(--black);
  color: #fff;
  line-height: 1;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 38px;
  font-weight: 500;
}

#faq-sec {
  padding: 200px 0 250px;
  background-color: #fff;
}

.base__ttl.faq-sec-ttl {
  font-size: 46px;
}
.base__ttl.faq-sec-ttl::after {
  top: -75px;
  width: 292px;
  height: 90px;
  background-image: url(../img/service/question.svg);
}

.faq__list li {
  margin-bottom: 50px;
}

.faq__list-ttl {
  background-color: #d9dfe3;
  padding: 25px;
  display: flex;
  border-bottom: 2px dotted #fff;
  align-items: center;
}
.faq__list-ttl .q {
  display: block;
  width: 100px;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  padding-left: 5px;
}
.faq__list-ttl .q-txt {
  font-size: 18px;
  width: calc(100% - 100px);
  font-weight: 400;
}

.faq__list-txt {
  background-color: #d9dfe3;
  padding: 25px;
  display: flex;
  align-items: center;
}
.faq__list-txt .a {
  display: block;
  width: 100px;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  padding-left: 10px;
}
.faq__list-txt .a-txt {
  font-size: 18px;
  width: calc(100% - 100px);
}

@media screen and (max-width: 834px) {
  .under__mv {
    height: 220px;
  }
  .under__mv-ttl {
    padding-top: 42px;
    font-size: 22px;
  }
  .under__mv-ttl::after {
    width: 218px;
    height: auto;
    aspect-ratio: 270/75;
  }
  .sp {
    display: inline-block;
  }
  .center-txt {
    font-size: 19px;
  }
  .under-intr {
    padding: 60px 0 0;
  }
  .smb50 {
    margin-bottom: 50px !important;
  }
  .service__list > li {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  .service__list > li .cont {
    order: 1;
  }
  .service__list > li .img {
    order: 2;
  }
  .service__list-ttl {
    font-size: 26px;
  }
  .service__list-ex-list {
    grid-template-columns: 1fr;
  }
  .service__list-ex-list > li {
    font-size: 18px;
  }
  .service-page .under-intr {
    padding-bottom: 1px;
  }
  #flow-sec {
    padding: 110px 0 60px;
  }
  .base__ttl {
    margin-bottom: 30px;
  }
  .base__ttl.flow-sec-ttl {
    font-size: 32px;
  }
  .flow__list-ttl {
    width: 100%;
    font-size: 24px;
    padding: 0 0 15px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
  }
  .flow__list-num {
    top: 0;
    left: 0;
    transform: translate(-35%, -35%);
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
  .flow__list li {
    padding: 30px;
    margin-bottom: 70px;
    display: block;
  }
  .flow__list li::after {
    bottom: -49px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: auto;
    aspect-ratio: 93/46;
  }
  .flow__list-txt {
    width: 100%;
    font-size: 16px;
    border-top: dashed 2px var(--black);
    padding-left: 0;
    border-left: none;
    padding-top: 15px;
  }
  .pc {
    display: none;
  }
  #faq-sec {
    padding: 110px 0 120px;
  }
  .base__ttl.faq-sec-ttl::after {
    top: -66px;
    width: 259px;
    height: auto;
    aspect-ratio: 292/90;
  }
  .base__ttl.faq-sec-ttl {
    font-size: 32px;
  }
  .faq__list-ttl .q {
    width: 55px;
    font-size: 32px;
    padding-left: 5px;
  }
  .faq__list-ttl .q-txt {
    font-size: 16px;
    width: calc(100% - 55px);
  }
  .faq__list-txt .a {
    width: 55px;
    font-size: 32px;
    padding-left: 6px;
  }
  .faq__list-txt .a-txt {
    font-size: 16px;
    width: calc(100% - 55px);
  }
  .faq__list li {
    margin-bottom: 30px;
  }
}
.under__mv-ttl.company__mv-ttl::after {
  width: 295px;
  height: 93px;
  background-image: url(../img/company/company.svg);
}

.company-profile__subttl {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.3;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.company-profile__subttl::after {
  content: "";
  position: absolute;
  top: -10px;
  left: auto;
  right: -175px;
  width: 125px;
  height: 100px;
  background-image: url(../img/company/pro-i01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 1;
  display: block;
}

.company-profile__ttl {
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 50px;
}

.company-profile__list li {
  border-bottom: 1px solid var(--black);
  padding: 30px 0;
  display: flex;
}
.company-profile__list li:first-of-type {
  border-top: 1px solid var(--black);
}

.company-profile__list-ttl {
  width: 37%;
  font-size: 22px;
  font-weight: 400;
}

.company-profile__list-txt {
  width: 63%;
  font-size: 22px;
}

.company-profile__list-illust-bl {
  position: relative;
}
.company-profile__list-illust-bl::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 30px;
  width: 93px;
  height: 136px;
  background-image: url(../img/company/pro-i02.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}
.company-profile__list-illust-bl::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 25px;
  left: 30px;
  width: 83px;
  height: 115px;
  background-image: url(../img/company/pro-i03.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}

#message-sec {
  padding: 120px 0 250px;
  background-color: #fff;
}
#message-sec .company-profile__subttl::after {
  display: none;
}

.message__bl {
  display: flex;
}
.message__bl .img {
  width: 50%;
}
.message__bl .cont {
  width: 50%;
  padding-left: 60px;
}
.message__bl .cont p {
  font-size: 16px;
  margin-bottom: 20px;
}

.message__name {
  width: 143px;
  margin: 0 0 0 auto;
}
.message__name .add {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 17px;
}
.message__name .name {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  font-size: 22px;
  line-height: 1.4;
}

@media screen and (max-width: 834px) {
  .under__mv-ttl {
    padding-top: 42px;
    font-size: 20px;
  }
  .under__mv-ttl.company__mv-ttl::after {
    width: 216px;
    height: auto;
    aspect-ratio: 295/93;
  }
  .company-profile__subttl {
    font-size: 32px;
  }
  .company-profile__ttl {
    font-size: 15px;
    margin-bottom: 35px;
  }
  .company-profile__subttl::after {
    top: -3px;
    left: auto;
    right: -117px;
    width: 95px;
    height: auto;
    aspect-ratio: 125/100;
  }
  .company-profile__list-ttl {
    width: 35%;
    font-size: 18px;
  }
  .company-profile__list-txt {
    width: 65%;
    font-size: 18px;
  }
  .company-profile__list li {
    padding: 20px 0;
  }
  .company-profile__list-illust-bl::before {
    bottom: 25px;
    left: 14px;
    width: 65px;
    height: auto;
    aspect-ratio: 83/115;
  }
  .company-profile__list-illust-bl::after {
    top: 82px;
    right: -3px;
    width: 71px;
    height: auto;
    aspect-ratio: 93/136;
  }
  #message-sec {
    padding: 60px 0 120px;
  }
  .message__bl {
    flex-direction: column;
  }
  .message__bl .img {
    width: 250px;
    max-width: 60%;
    margin: 0 auto 30px;
  }
  .message__bl .cont {
    width: 100%;
    padding-left: 0;
  }
  .message__name .name {
    font-size: 20px;
  }
  .message__name {
    width: 115px;
  }
  .message__name .add {
    font-size: 14px;
  }
}
.under__mv-ttl.news__mv-ttl::after {
  width: 165px;
  aspect-ratio: 193/91;
  background-image: url(../img/top/news.svg);
  transform: translate(-65%, 10px);
}

.news__flex {
  display: flex;
  gap: 70px;
  margin: 120px auto;
}

.news__main {
  width: calc(100% - 370px);
  position: relative;
  padding-bottom: 100px;
}

.news__sub {
  width: 300px;
}

.news__sub-ttl {
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: 3px solid var(--black);
}
.news__sub-ttl .en {
  font-family: var(--mont);
  font-size: 2.5rem;
  font-weight: 900;
}
.news__sub-ttl .ja {
  font-size: 1.85rem;
}

.news__sub-list li a {
  border-bottom: dashed 2px var(--black);
  display: block;
  padding: 15px 0;
  font-size: 1.5rem;
  color: var(--black);
}

.news__sub-bl {
  margin-bottom: 70px;
}

.news__main-option-flex {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--black);
}
.news__main-option-flex .cat {
  font-size: 1.85rem;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid var(--black);
  line-height: 1.4;
}
.news__main-option-flex .date {
  font-size: 1.85rem;
  line-height: 1.4;
  display: block;
}

.news__main-ttl {
  font-size: 3rem;
  line-height: 1.5;
  padding: 20px 0;
  border-bottom: 1px solid var(--black);
  margin-bottom: 30px;
}

.news__post-bl p {
  font-size: 1.9rem;
  margin-bottom: 30px;
}
.news__post-bl img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin-bottom: 30px;
}
.news__post-bl h2 {
  font-weight: 900;
  font-size: 2.6rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 5px;
}
.news__post-bl h3 {
  font-weight: 900;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.news__post-bl h4 {
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 20px;
}

a[rel=prev], a[rel=next] {
  font-size: 4rem;
  color: var(--black);
  font-weight: 100;
}

a[rel=prev] {
  position: absolute;
  left: 0;
  bottom: 0;
}

a[rel=next] {
  position: absolute;
  right: 0;
  bottom: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  margin: 50px auto -100px;
}
.nav-links .page-numbers {
  color: var(--black);
}
.nav-links .page-numbers.current {
  color: var(--blue);
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .news__flex {
    gap: 40px;
    margin: 80px auto;
  }
  .news__sub {
    width: 200px;
  }
  .news__main {
    width: calc(100% - 240px);
  }
  .news__sub-ttl .ja {
    font-size: 1.4rem;
  }
  .news__sub-ttl {
    gap: 5px;
  }
  .news__post-bl p {
    font-size: 1.7rem;
  }
  .news__post-bl h2 {
    font-size: 2.4rem;
  }
  .news__post-bl h3 {
    font-size: 2rem;
  }
  .news__post-bl h4 {
    font-size: 1.8rem;
  }
  .news__main-ttl {
    font-size: 2.6rem;
    padding: 15px 0;
  }
  .news__main-option-flex .cat {
    font-size: 1.5rem;
    padding-right: 8px;
    margin-right: 8px;
  }
  .news__main-option-flex .date {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .nav-links {
    margin: 40px auto -80px;
  }
  .news__flex {
    gap: 60px;
    margin: 60px auto;
    flex-direction: column;
  }
  .news__main {
    padding-bottom: 0;
    width: 100%;
  }
  .news__sub {
    width: 100%;
    padding-bottom: 20px;
  }
  .news__sub-bl {
    margin-bottom: 40px;
  }
  .news__post-bl p {
    font-size: 1.5rem;
  }
  .news__post-bl h2 {
    font-size: 2.2rem;
  }
  .news__post-bl h3 {
    font-size: 1.9rem;
  }
  .news__post-bl h4 {
    font-size: 1.7rem;
  }
  .news__main-ttl {
    font-size: 2.4rem;
    padding: 12px 0;
  }
  .nav-links {
    font-size: 1.6rem;
  }
}
.contact-page {
  background-color: #fff;
}
.contact-page + footer {
  padding-top: 70px;
}

.privacy-page {
  background-color: #fff;
}
.privacy-page + footer {
  padding-top: 70px;
}

.under__mv-ttl.contact__mv-ttl {
  padding-top: 68px;
}

.under__mv-ttl.contact__mv-ttl::after {
  width: 283px;
  aspect-ratio: 283/95;
  height: auto;
  background-image: url(../img/common/contact.svg);
}

.contact-page .under-intr {
  background-color: transparent;
}

#contact-bl {
  width: 950px;
}

#contact {
  padding-bottom: 100px;
}

.contact__form-bl {
  font-size: 1.6rem;
}

.contact__thanks-txt {
  width: 650px;
  max-width: 100%;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  display: none;
  text-align: center;
  font-size: 15px;
}

.contact__form-caution p {
  text-align: center;
  color: var(--black);
  line-height: 1.8;
  font-size: 1.8rem;
}
.contact__form-caution p.caution-txt {
  font-size: 1.6rem;
  text-align: right;
  margin-top: 45px;
}

.bold {
  font-weight: bold;
}

.contact__ttl {
  color: var(--black);
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.9rem;
}

.contact__table {
  padding: 10px 0;
  display: flex;
}

.contact__table dt {
  width: 215px;
  padding-right: 20px;
  padding-left: 1em;
  position: relative;
  padding-top: 7px;
  font-size: 20px;
}
.contact__table dt .caution-mark {
  position: absolute;
  top: 9px;
  left: 0;
  font-size: 120%;
}

.contact__table dd {
  width: calc(100% - 215px);
}
.contact__table dd .wpcf7-not-valid-tip {
  text-align: left;
  font-size: 14px;
}

.contact__table input,
.contact__table textarea {
  background-color: #fff;
  width: 100%;
  padding: 7px;
  resize: none;
  border: 1px solid #424242;
  font-size: 20px;
}

.page_wrapper.contact-page {
  padding: 180px 0 0;
}

.contact__privacy-txt {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 18px;
}

.contact__privacy-txt a {
  text-decoration: underline;
  color: var(--black);
}

.wpcf7-submit {
  background-color: #5d3a32;
  width: 310px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 70px;
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  font-size: 2rem;
  letter-spacing: 3px;
}

.wpcf7-form-control-wrap {
  position: relative;
  text-align: center;
  display: block;
}

[data-name=check-detail].wpcf7-form-control-wrap {
  text-align: left;
}
[data-name=check-detail].wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 0;
}
[data-name=check-detail].wpcf7-form-control-wrap .wpcf7-list-item input {
  width: -moz-fit-content;
  width: fit-content;
}
[data-name=check-detail].wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-list-item-label {
  margin-right: 20px;
  font-size: 20px;
}

/*リセット */
input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックスデザイン */
input[type=checkbox] {
  cursor: pointer;
  padding-left: 30px; /*label手前にチェックボックス用の余白を開ける*/
  vertical-align: middle;
  position: relative;
}

input[type=checkbox]::before,
input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}

input[type=checkbox]::before {
  background-color: transparent;
  border-radius: 0%;
  border: 1px solid #222222;
  width: 24px;
  height: 24px;
  transform: translateY(0);
  top: -14px;
  left: 0;
}

input[type=checkbox]::after {
  border-bottom: 2px solid var(--black);
  border-left: 2px solid var(--black);
  opacity: 0;
  height: 8px;
  width: 16px;
  transform: rotate(-45deg);
  top: -9px;
  left: 4px;
}

input[type=checkbox]:checked::after {
  opacity: 1; /*チェック後表示*/
}

.contact__privacy-check {
  font-size: 18px;
}

.sent .contact__form-cautio,
.sent .contact__table,
.sent .contact__privacy-txt,
.sent .contact__privacy-check,
.sent input[type=submit],
.sent .contact__form-caution {
  display: none;
}

.sent .contact__thanks-txt {
  display: block;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.sp {
  display: none;
}

.contact__tel-box {
  padding-top: 50px;
  border-top: 2px solid var(--black);
  margin-top: 50px;
}
.contact__tel-box .footer__contact-tel {
  font-size: 56px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: var(--black);
}
.contact__tel-box .footer__contact-tel a {
  color: var(--black);
}
.contact__tel-box .footer__contact-tel .small {
  font-size: 32px;
}
.contact__tel-box .footer__contact-time {
  font-size: 21.5px;
  text-align: center;
}
.contact__tel-box .footer__oisogi-tel {
  position: relative;
  width: 504px;
  margin: 20px auto 0;
  max-width: 100%;
  left: 0;
  transform: translate(0, 0);
}
.contact__tel-box .footer__oisogi-tel img {
  width: 100%;
}
.contact__tel-box .footer__contact-ttl-middle.footer__contact-ttl-under {
  padding-bottom: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 2.9rem;
  font-weight: bold;
}
.contact__tel-box .footer__contact-ttl-middle.footer__contact-ttl-under::after {
  display: none;
}

.contact__tel-ttl {
  text-align: center;
  font-size: 2.9rem;
}

.contact__tel-link {
  font-size: 4.8rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  line-height: 1;
  display: block;
  color: var(--black);
  position: relative;
}
.contact__tel-link::before {
  display: block;
  width: 41px;
  height: 41px;
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: -56px;
  background-image: url(../img/contact/phone.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.contact__tel-info {
  text-align: center;
  font-size: 1.8rem;
}

.w1em {
  display: inline-block;
  width: 1em;
}

.w2em {
  display: inline-block;
  width: 2em;
}

.w5em {
  display: inline-block;
  width: 5em;
}

.sent .contact__tel-box {
  display: none;
}

.privacy-page {
  padding: 120px 0;
  background-color: #fff;
}
.privacy-page p {
  letter-spacing: -0.02em;
}

.w1242 {
  width: 1242px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.w1242.base__ttl-bl {
  display: flex;
  flex-direction: column-reverse;
  padding-bottom: 25px;
  margin-bottom: 70px;
  border-bottom: 4px solid var(--black);
}
.w1242.base__ttl-bl .base__ttl-en {
  font-size: 75px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 5px;
}
.w1242.base__ttl-bl .base__ttl-ja {
  font-size: 19px;
}

#privacy-cont p {
  font-size: 17px;
  margin-bottom: 30px;
}
#privacy-cont .privacy-ttl {
  font-size: 17px;
  font-weight: 400;
}

.wpcf7-not-valid-tip {
  font-size: 14px !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 14px !important;
}

@media screen and (max-width: 834px) {
  .sp {
    display: inline-block;
  }
  .w1em, .w2em, .w5em {
    display: none;
  }
  .contact__form-bl {
    font-size: 1.5rem;
  }
  .page_wrapper.contact-page {
    padding: 60px 0 0;
  }
  .contact__title {
    margin-bottom: 60px;
    font-size: 26px;
  }
  .contact-page .blue-marker {
    background: linear-gradient(transparent 70%, #c4d8f8 30%);
  }
  .contact__tel-flex {
    flex-direction: column;
  }
  .contact__tel-flex-item {
    width: 100%;
    margin-bottom: 50px;
  }
  .contact__tel-bl {
    margin-bottom: 0;
  }
  .contact__line-bl .contact__title {
    margin-bottom: 45px;
  }
  .contact__line-btn {
    width: 470px;
    height: 85px;
  }
  .contact__line-btn a {
    font-size: 26px;
  }
  .contact__line-bl {
    margin-bottom: 70px;
  }
  .contact__form-caution p {
    font-size: 1.5rem;
  }
  .contact__tel-flex-item a {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .contact__tel-hosoku {
    font-size: 16px;
  }
  .contact__table {
    flex-direction: column;
    font-size: 16px;
  }
  .contact__table dt {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  .contact__table dd {
    width: 100%;
  }
  .contact__privacy-txt {
    margin-top: 30px;
    font-size: 1.5rem;
  }
  .wpcf7-form-control-wrap {
    font-size: 1.5rem;
  }
  input[type=checkbox]::before {
    width: 17px;
    height: 17px;
    transform: translateY(-61%);
    top: 50%;
    left: 8px;
  }
  input[type=checkbox]::after {
    height: 7px;
    width: 12px;
    top: -7px;
    left: 10px;
  }
  .wpcf7-submit {
    margin-top: 35px;
    font-size: 1.7rem;
    height: 60px;
  }
  .contact__title.yellow, .contact__title {
    font-size: 26px;
  }
  .sent .contact__thanks-txt {
    display: block;
    font-size: 15px;
    text-align: center;
  }
  .contact__ttl {
    font-size: 1.9rem;
  }
  .contact__form-caution p.caution-txt {
    font-size: 1.4rem;
    margin-top: 30px;
  }
  .contact__table textarea {
    height: 200px;
  }
  .contact__tel-link::before {
    width: 24px;
    height: 24px;
    top: 3px;
    left: -34px;
  }
  .contact__tel-link {
    font-size: 2.6rem;
  }
  .contact__tel-info {
    font-size: 1.5rem;
  }
  .contact__tel-box {
    padding-top: 30px;
    margin-top: 30px;
  }
  .contact__tel-ttl {
    font-size: 1.9rem;
  }
  #contact {
    padding-bottom: 50px;
  }
  .contact-page + footer {
    padding-top: 50px;
  }
  .contact-page {
    padding-bottom: 60px;
  }
  .contact__tel-box .footer__oisogi-tel {
    width: 310px;
  }
  .contact__tel-box .footer__contact-tel .small {
    font-size: 24px;
  }
  .contact__tel-box .footer__contact-tel {
    font-size: 37px;
  }
  .contact__tel-box .footer__contact-ttl-middle.footer__contact-ttl-under {
    margin-bottom: 15px;
    font-size: 1.9rem;
  }
  .contact__tel-box .footer__contact-time {
    font-size: 15.5px;
  }
  .contact__table input, .contact__table textarea {
    font-size: 16px;
  }
  [data-name=check-detail].wpcf7-form-control-wrap .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 15px;
  }
  .contact__privacy-check {
    font-size: 15px;
  }
  .w1242.base__ttl-bl .base__ttl-en {
    font-size: 40px;
  }
  .w1242.base__ttl-bl {
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--black);
  }
  #privacy-cont .privacy-ttl {
    font-size: 15px;
  }
  #privacy-cont p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .privacy-page {
    padding: 60px 0;
  }
  .privacy-page + footer {
    padding-top: 50px;
  }
  .under__mv-ttl.contact__mv-ttl {
    padding-top: 58px;
  }
  .under__mv-ttl.contact__mv-ttl::after {
    width: 223px;
  }
}
.works__list li.no-posts {
  font-size: 18px;
}

.under__mv-ttl.works__mv-ttl::after {
  width: 215px;
  aspect-ratio: 215/89;
  background-image: url(../img/top/work.svg);
}

.works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.works__list .top-work__item-txt-bl {
  flex-direction: column;
}
.works__list .top-work__item-txt-bl time {
  display: block;
  width: 100%;
  font-size: 16px;
}
.works__list .top-work__item-txt-bl p {
  display: block;
  width: 100%;
  font-size: 16px;
}

@media screen and (max-width: 834px) {
  .under__mv-ttl.works__mv-ttl::after {
    width: 132px;
  }
  .works__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .works-page .top-work__item {
    padding: 0;
  }
  .works__list .top-work__item-txt-bl time {
    font-size: 14px;
  }
  .works__list .top-work__item-txt-bl p {
    font-size: 14px;
  }
}
body {
  opacity: 0;
  transition: all 1s ease-in-out;
}
body.loaded {
  opacity: 1;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
}
.js-fadeUp.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpTop {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-52% + 10px));
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -52%);
  }
}
.top__mv-ttl {
  opacity: 0;
  animation: fadeUpTop 1.3s 1.5s ease forwards;
}/*# sourceMappingURL=style.css.map */