@charset "UTF-8";
body * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body * :where(p, span, strong, address, a, tr, td, summary, input) {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  font-style: normal;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
* ::-webkit-scrollbar {
  display: none;
}

a:is(:active, :hover, :link, :visited) {
  color: inherit;
  text-decoration: none;
}

@media screen and (max-width: 1200px) {
  .pc_mode {
    display: none !important;
  }
  .sp_mode {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .pc_mode {
    display: block;
  }
  .sp_mode {
    display: none;
  }
}
#header .inner, #header :is(#index, #service, #about, #notfound) #contact .inner, :is(#index, #service, #about, #notfound) #contact #header .inner {
  height: 120px;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
}
@media screen and (max-width: 1200px) {
  #header .inner, #header :is(#index, #service, #about, #notfound) #contact .inner, :is(#index, #service, #about, #notfound) #contact #header .inner {
    max-width: 86vw;
    margin: 0 auto;
    padding: 0;
  }
}
#header .inner h1, #header :is(#index, #service, #about, #notfound) #contact .inner h1, :is(#index, #service, #about, #notfound) #contact #header .inner h1, #header .inner h1 *, #header :is(#index, #service, #about, #notfound) #contact .inner h1 *, :is(#index, #service, #about, #notfound) #contact #header .inner h1 * {
  width: 80px;
  aspect-ratio: 80/81;
  margin: 0;
}
#header .inner h1 + p, #header :is(#index, #service, #about, #notfound) #contact .inner h1 + p, :is(#index, #service, #about, #notfound) #contact #header .inner h1 + p {
  max-width: 990px;
  padding: 0 1.5vw;
}
@media screen and (max-width: 1200px) {
  #header .inner h1 + p, #header :is(#index, #service, #about, #notfound) #contact .inner h1 + p, :is(#index, #service, #about, #notfound) #contact #header .inner h1 + p {
    display: none;
  }
}
#header .inner #nav_toggle {
  cursor: pointer;
  width: 40px;
  height: 20%;
  margin: 0;
  z-index: 1;
  border: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#header .inner #nav_toggle span {
  width: 100%;
  height: 2px;
  background-color: #000000;
}
#header > div:not(.open) > #global_nav {
  display: none;
}
#header .open h1 {
  z-index: 11;
  filter: brightness(0) invert(1);
}
#header .open #nav_toggle {
  width: 40px;
  height: 20px;
  background: none;
  z-index: 11;
  position: relative;
  transition: transform 0.3s ease-in-out, top 0.2s ease;
}
#header .open #nav_toggle span {
  width: 40px;
  height: 2px;
  background-color: #ffffff;
  z-index: 11;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.2s ease;
  top: 50%;
}
#header .open #nav_toggle span:nth-of-type(1) {
  transform: rotate(-45deg);
}
#header .open #nav_toggle span:nth-of-type(2) {
  display: none;
}
#header .open #nav_toggle span:nth-of-type(3) {
  transform: rotate(45deg);
}
#header .open #global_nav {
  display: block;
  background-color: #000000;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#header .open #global_nav ul {
  width: 700px;
  height: 500px;
  margin-top: 150px;
  margin-left: 30vw;
  display: flex;
  align-items: stretch;
}
#header .open #global_nav ul li {
  width: 234px;
  color: #ffffff;
  writing-mode: vertical-rl;
  -moz-text-align-last: left;
       text-align-last: left;
  padding-right: 30px;
  border-right: 2px solid #ffffff;
}
#header .open #global_nav ul li a {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  margin: 20px 0;
}
#header .open #global_nav ul li a::after {
  content: attr(data-subtitle-en);
  color: #808080;
  font-size: 48px;
  font-family: "Cormorant Garamond";
  margin-top: 20px;
}
#header .open #global_nav div {
  padding: 0 0 50px 100px;
}
#header .open #global_nav div .copyright {
  color: #808080;
  font-size: 10px;
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  #header .open #global_nav ul {
    width: 86vw;
    margin: 150px 7vw 0;
    flex-direction: column;
  }
  #header .open #global_nav ul li {
    width: 86vw;
    margin-bottom: 1.5em;
    border-right: none;
    border-bottom: 2px solid #ffffff;
    writing-mode: horizontal-tb;
  }
  #header .open #global_nav ul li a {
    font-size: 24px;
    margin-top: 0.3rem;
    display: flex;
  }
  #header .open #global_nav ul li a::after {
    font-size: 1em;
    -webkit-margin-start: 20px;
            margin-inline-start: 20px;
  }
  #header .open #global_nav div {
    width: 86vw;
    margin: 0 7vw;
    padding: 0;
    word-break: break-all;
  }
  #header .open #global_nav div p:first {
    font-size: 0.8em;
  }
  #header .open #global_nav div .copyright {
    margin: 30px 0;
  }
}

#mainvisual {
  width: 100vw;
  overflow-x: hidden;
  position: relative;
}
#mainvisual [class*=container] {
  padding-bottom: 4vw;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  #mainvisual [class*=container] {
    padding-bottom: 20vw;
  }
}
#mainvisual * :has(img) {
  width: 990px;
}
@media screen and (max-width: 1200px) {
  #mainvisual * :has(img) {
    width: 100vw;
  }
}
#mainvisual h2 {
  text-align: end;
  position: absolute;
  bottom: -2vw;
  right: 4vw;
  writing-mode: vertical-rl;
  font-size: 7vw;
  font-weight: 900;
  -webkit-text-stroke: 1px white;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  #mainvisual h2 {
    font-size: 20vw;
    bottom: -20vw;
  }
}

main:not(#contact) section:not(#mainvisual) {
  width: 100%;
  margin: 120px auto 0;
}
@media screen and (max-width: 1200px) {
  main:not(#contact) section:not(#mainvisual) {
    margin: 0 auto 100px;
  }
}
main:not(#contact) section:not(#mainvisual) .inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  main:not(#contact) section:not(#mainvisual) .inner {
    width: 86vw;
  }
}
main:not(#contact) section:not(#mainvisual) .inner h3 {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px 20px;
  display: flex;
  font-family: "Cormorant Garamond";
  flex-direction: column;
  font-size: 110px;
  font-weight: 700;
  border-bottom: 1px solid #000000;
}
@media screen and (max-width: 1200px) {
  main:not(#contact) section:not(#mainvisual) .inner h3 {
    font-size: 60px;
    padding: 0 0 20px;
  }
}
main:not(#contact) section:not(#mainvisual) .inner h3::before {
  content: attr(data-subtitle);
  font-size: 36px;
  font-weight: 700;
  font-family: "Noto Serif JP";
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  main:not(#contact) section:not(#mainvisual) .inner h3::before {
    font-size: 18px;
  }
}
main:not(#contact) section:not(#mainvisual) .inner figcaption {
  width: 100%;
  padding: 50px 50px 0;
}
@media screen and (max-width: 1200px) {
  main:not(#contact) section:not(#mainvisual) .inner figcaption {
    padding: 50px 0 0;
  }
}

.btn {
  width: -moz-fit-content;
  width: fit-content;
  height: 55px;
  padding: 0 20px;
  margin-top: 20px;
  background-color: #ffffff;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
}
.btn:hover {
  background-color: #000000;
  color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .btn {
    margin: 50px auto 0;
  }
}

#youtube .youtube {
  max-width: 800px;
  aspect-ratio: 16/9;
  margin: 60px auto 0;
}
#youtube .youtube iframe {
  width: 100%;
}

#index #about {
  background: no-repeat url(../img/about.png) top right;
  padding: 100px 0;
}
@media screen and (max-width: 1200px) {
  #index #about {
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.5019607843) url(../img/sp/index_about.png) no-repeat bottom right/cover;
    background-blend-mode: lighten;
  }
}

:is(#index, #service, #about, #notfound) #contact {
  background: no-repeat url(../img/contact.png) top center/cover;
  padding: 100px 0;
}
@media screen and (max-width: 1200px) {
  :is(#index, #service, #about, #notfound) #contact {
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.5019607843) url(../img/sp/index_contact.png) no-repeat bottom right/cover;
    background-blend-mode: lighten;
  }
}
.tel {
  width: 1000px;
  margin: 70px 0 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .tel, .tel > * {
    width: -moz-fit-content;
    width: fit-content;
    margin: 70px auto 0;
    flex-direction: column;
    text-align: center;
  }
}
.tel p:first-child {
  display: flex;
  flex-direction: column;
}
.tel p:first-child span {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.tel p a[href^="tel:"] {
  font-size: 36px;
  display: flex;
  align-items: center;
}
.tel p a[href^="tel:"] img {
  width: auto;
  height: 50px;
  margin-right: 30px;
}
@media screen and (max-width: 1200px) {
  .tel p a[href^="tel:"] img {
    display: none;
  }
}

#phone .tel {
  margin: 100px auto 0;
}

#index #group .inner div {
  display: flex;
  justify-content: space-between;
}
#index #group .inner div h3 {
  padding-bottom: 40px;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  #index #group .inner div h3 {
    width: 450px;
  }
}
#index #group .inner div h3 + ul {
  width: 720px;
  display: flex;
  justify-content: space-between;
}
#index #group .inner div h3 + ul li {
  width: 320px;
  height: 210px;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
#index #group .inner div h3 + ul li img {
  margin-bottom: 15px;
}
#index #group .inner > .list {
  margin: 70px auto 0;
  display: flex;
  justify-content: space-between;
}
#index #group .inner > .list li {
  width: calc((100% - 320px) / 5);
  height: 210px;
  align-items: center;
  text-align: center;
}
#index #group .inner > .list li img {
  margin-bottom: 10px;
}
#index #group .inner > .list li:nth-of-type(2)::before {
  display: none;
}
#index #group .inner span {
  font-size: 0.8em;
  line-height: 1.5;
}
#index #group .inner li:not(:nth-of-type(1)) {
  padding-left: 0;
  position: relative;
}
#index #group .inner li:not(:nth-of-type(1))::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60px;
  background-color: #000000;
  transform: rotate(25deg);
}
#index #group .inner .list li:not(:nth-of-type(2)) {
  margin-left: 60px;
}
#index #group .inner .list li:not(:nth-of-type(2))::before {
  left: -30px;
}

@media screen and (max-width: 1200px) {
  #index #group .inner > * > * {
    max-width: 86vw;
    margin: 0 auto;
  }
  #index #group .inner h3 + ul {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
  }
  #index #group .inner div {
    display: block;
    flex-direction: column;
  }
  #index #group .inner div h3 {
    padding-bottom: 20px;
  }
  #index #group .inner div h3 + ul li {
    width: 86vw;
    margin-top: 70px;
  }
  #index #group .inner div h3 + ul li:first-child {
    width: 70vw;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0 auto 30px;
    display: block;
  }
  #index #group .inner div h3 + ul li h3 + ul > li:first-child + li {
    display: none;
  }
  #index #group .inner .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0;
  }
  #index #group .inner .list li {
    width: 50%;
    height: -moz-fit-content;
    height: fit-content;
    margin: 0 !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  #index #group .inner .list li a {
    width: 100%;
    aspect-ratio: 1/1;
  }
  #index #group .inner .list li.sp_mode img {
    margin: 6.25vw 0 calc(6.25vw + 10px);
  }
  #index #group .inner .list li span {
    font-size: clamp(12px, 0.8em, 0.9em);
  }
  #index #group .inner li::before {
    display: none;
  }
}
footer .inner, footer :is(#index, #service, #about, #notfound) #contact .inner, :is(#index, #service, #about, #notfound) #contact footer .inner {
  width: 1100px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  footer .inner, footer :is(#index, #service, #about, #notfound) #contact .inner, :is(#index, #service, #about, #notfound) #contact footer .inner, footer .inner *, footer :is(#index, #service, #about, #notfound) #contact .inner *, :is(#index, #service, #about, #notfound) #contact footer .inner * {
    max-width: 86vw;
    display: block;
    padding: 0;
  }
}
footer .inner ul, footer :is(#index, #service, #about, #notfound) #contact .inner ul, :is(#index, #service, #about, #notfound) #contact footer .inner ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 122px;
}
footer .inner ul li a, footer :is(#index, #service, #about, #notfound) #contact .inner ul li a, :is(#index, #service, #about, #notfound) #contact footer .inner ul li a {
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  footer .inner ul, footer :is(#index, #service, #about, #notfound) #contact .inner ul, :is(#index, #service, #about, #notfound) #contact footer .inner ul {
    display: none;
  }
}
footer .inner h1 a, footer :is(#index, #service, #about, #notfound) #contact .inner h1 a, :is(#index, #service, #about, #notfound) #contact footer .inner h1 a {
  font-size: 36px;
  font-weight: bold;
  padding-bottom: 20px;
  display: flex;
  line-height: 1;
}
footer .inner h1 a::before, footer :is(#index, #service, #about, #notfound) #contact .inner h1 a::before, :is(#index, #service, #about, #notfound) #contact footer .inner h1 a::before {
  content: "";
  align-items: center;
  width: 120px;
  height: 122px;
  margin-right: 50px;
  background: url(../img/e-pro_logo.svg) no-repeat top center/contain;
}
@media screen and (max-width: 1200px) {
  footer .inner h1 a, footer :is(#index, #service, #about, #notfound) #contact .inner h1 a, :is(#index, #service, #about, #notfound) #contact footer .inner h1 a {
    font-size: 22px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .inner h1 a::before, footer :is(#index, #service, #about, #notfound) #contact .inner h1 a::before, :is(#index, #service, #about, #notfound) #contact footer .inner h1 a::before {
    margin: 0 auto 25px;
  }
}
footer .inner address, footer :is(#index, #service, #about, #notfound) #contact .inner address, :is(#index, #service, #about, #notfound) #contact footer .inner address {
  margin-top: -80px;
  margin-left: 170px;
}
@media screen and (max-width: 1200px) {
  footer .inner address, footer :is(#index, #service, #about, #notfound) #contact .inner address, :is(#index, #service, #about, #notfound) #contact footer .inner address {
    margin: 0 auto;
    text-align: center;
    word-break: break-all;
  }
}
footer .inner .copyright, footer :is(#index, #service, #about, #notfound) #contact .inner .copyright, :is(#index, #service, #about, #notfound) #contact footer .inner .copyright {
  margin-top: 50px;
  font-size: 14px;
  margin-left: 170px;
}
@media screen and (max-width: 1200px) {
  footer .inner .copyright, footer :is(#index, #service, #about, #notfound) #contact .inner .copyright, :is(#index, #service, #about, #notfound) #contact footer .inner .copyright {
    margin: 0;
    padding: 20px 0;
    line-height: 1.8;
    font-size: 0.8em;
    text-align: center;
  }
}

.pagetop {
  width: 26px;
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .pagetop {
    display: none !important;
  }
}

main.service {
  width: 100vw;
  margin: 30px auto 0;
  overflow: hidden;
}
main.service .title {
  height: -moz-fit-content;
  height: fit-content;
  background: url(../img/service.png) no-repeat left bottom;
  background-size: 50vw;
}
main.service .title div {
  width: 1100px;
  margin: 0 auto;
}
main.service .title div .inner, main.service .title div :is(#index, #service, #about, #notfound) #contact .inner, :is(#index, #service, #about, #notfound) #contact main.service .title div .inner {
  width: calc(45% - 50px);
  aspect-ratio: 9/13;
  margin-right: 0;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-bottom: 1px solid #000000;
}
main.service .title div .inner h2, main.service .title div :is(#index, #service, #about, #notfound) #contact .inner h2, :is(#index, #service, #about, #notfound) #contact main.service .title div .inner h2 {
  writing-mode: vertical-rl;
  font-size: 120px;
  font-weight: 900;
}
main.service .title div .inner figcaption, main.service .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption, :is(#index, #service, #about, #notfound) #contact main.service .title div .inner figcaption {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}
main.service .title div .inner figcaption h3::after, main.service .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption h3::after, :is(#index, #service, #about, #notfound) #contact main.service .title div .inner figcaption h3::after {
  content: attr(data-subtitle);
  font-family: "Cormorant Garamond";
  display: block;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.6;
}
main.service .title div .inner figcaption p, main.service .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption p, :is(#index, #service, #about, #notfound) #contact main.service .title div .inner figcaption p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  height: 300px;
  line-height: 1.6;
  display: flex;
  align-items: flex-end;
}

main.about {
  width: 100vw;
  margin: 30px auto 0;
  overflow: hidden;
}
main.about .title {
  height: -moz-fit-content;
  height: fit-content;
  background: url(../img/about.png) no-repeat left bottom;
  background-size: 50vw;
}
main.about .title div {
  width: 1100px;
  margin: 0 auto;
}
main.about .title div .inner, main.about .title div :is(#index, #service, #about, #notfound) #contact .inner, :is(#index, #service, #about, #notfound) #contact main.about .title div .inner {
  width: calc(45% - 50px);
  aspect-ratio: 9/13;
  margin-right: 0;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-bottom: 1px solid #000000;
}
main.about .title div .inner h2, main.about .title div :is(#index, #service, #about, #notfound) #contact .inner h2, :is(#index, #service, #about, #notfound) #contact main.about .title div .inner h2 {
  writing-mode: vertical-rl;
  font-size: 120px;
  font-weight: 900;
}
main.about .title div .inner figcaption, main.about .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption, :is(#index, #service, #about, #notfound) #contact main.about .title div .inner figcaption {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}
main.about .title div .inner figcaption h3::after, main.about .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption h3::after, :is(#index, #service, #about, #notfound) #contact main.about .title div .inner figcaption h3::after {
  content: attr(data-subtitle);
  font-family: "Cormorant Garamond";
  display: block;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.6;
}
main.about .title div .inner figcaption p, main.about .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption p, :is(#index, #service, #about, #notfound) #contact main.about .title div .inner figcaption p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  height: 300px;
  line-height: 1.6;
  display: flex;
  align-items: flex-end;
}

main.contact {
  width: 100vw;
  margin: 30px auto 0;
  overflow: hidden;
}
main.contact .title {
  height: -moz-fit-content;
  height: fit-content;
  background: url(../img/contact.png) no-repeat left bottom;
  background-size: 50vw;
}
main.contact .title div {
  width: 1100px;
  margin: 0 auto;
}
main.contact .title div .inner, main.contact .title div :is(#index, #service, #about, #notfound) #contact .inner, :is(#index, #service, #about, #notfound) #contact main.contact .title div .inner {
  width: calc(45% - 50px);
  aspect-ratio: 9/13;
  margin-right: 0;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-bottom: 1px solid #000000;
}
main.contact .title div .inner h2, main.contact .title div :is(#index, #service, #about, #notfound) #contact .inner h2, :is(#index, #service, #about, #notfound) #contact main.contact .title div .inner h2 {
  writing-mode: vertical-rl;
  font-size: 120px;
  font-weight: 900;
}
main.contact .title div .inner figcaption, main.contact .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption, :is(#index, #service, #about, #notfound) #contact main.contact .title div .inner figcaption {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}
main.contact .title div .inner figcaption h3::after, main.contact .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption h3::after, :is(#index, #service, #about, #notfound) #contact main.contact .title div .inner figcaption h3::after {
  content: attr(data-subtitle);
  font-family: "Cormorant Garamond";
  display: block;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.6;
}
main.contact .title div .inner figcaption p, main.contact .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption p, :is(#index, #service, #about, #notfound) #contact main.contact .title div .inner figcaption p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  height: 300px;
  line-height: 1.6;
  display: flex;
  align-items: flex-end;
}

main.notfound {
  width: 100vw;
  margin: 30px auto 0;
  overflow: hidden;
}
main.notfound .title {
  height: -moz-fit-content;
  height: fit-content;
  background: url(../img/notfound.png) no-repeat left bottom;
  background-size: 50vw;
}
main.notfound .title div {
  width: 1100px;
  margin: 0 auto;
}
main.notfound .title div .inner, main.notfound .title div :is(#index, #service, #about, #notfound) #contact .inner, :is(#index, #service, #about, #notfound) #contact main.notfound .title div .inner {
  width: calc(45% - 50px);
  aspect-ratio: 9/13;
  margin-right: 0;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-bottom: 1px solid #000000;
}
main.notfound .title div .inner h2, main.notfound .title div :is(#index, #service, #about, #notfound) #contact .inner h2, :is(#index, #service, #about, #notfound) #contact main.notfound .title div .inner h2 {
  writing-mode: vertical-rl;
  font-size: 120px;
  font-weight: 900;
}
main.notfound .title div .inner figcaption, main.notfound .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption, :is(#index, #service, #about, #notfound) #contact main.notfound .title div .inner figcaption {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}
main.notfound .title div .inner figcaption h3::after, main.notfound .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption h3::after, :is(#index, #service, #about, #notfound) #contact main.notfound .title div .inner figcaption h3::after {
  content: attr(data-subtitle);
  font-family: "Cormorant Garamond";
  display: block;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.6;
}
main.notfound .title div .inner figcaption p, main.notfound .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption p, :is(#index, #service, #about, #notfound) #contact main.notfound .title div .inner figcaption p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  height: 300px;
  line-height: 1.6;
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 1200px) {
  main.service {
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
  }
  main.service .title {
    background: url(../img/sp/service.png) no-repeat top center/contain;
  }
  main.service .title div {
    width: 86vw;
    margin: 0 auto;
  }
  main.service .title div .inner, main.service .title div :is(#index, #service, #about, #notfound) #contact .inner, :is(#index, #service, #about, #notfound) #contact main.service .title div .inner {
    width: 100%;
    height: auto;
    margin-right: 0;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border-bottom: none;
  }
  main.service .title div .inner h2, main.service .title div :is(#index, #service, #about, #notfound) #contact .inner h2, :is(#index, #service, #about, #notfound) #contact main.service .title div .inner h2 {
    writing-mode: vertical-rl;
    font-size: 20vw;
    font-weight: 900;
    -webkit-text-stroke: 1px white;
    margin-left: 66vw;
    -webkit-margin-start: clamp(1em, 10px, 20px);
            margin-inline-start: clamp(1em, 10px, 20px);
  }
  main.service .title div .inner figcaption, main.service .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption, :is(#index, #service, #about, #notfound) #contact main.service .title div .inner figcaption {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  main.service .title div .inner figcaption h3, main.service .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption h3, :is(#index, #service, #about, #notfound) #contact main.service .title div .inner figcaption h3 {
    margin-bottom: 50px;
    border-bottom: 1px solid #000000;
  }
  main.service .title div .inner figcaption h3::after, main.service .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption h3::after, :is(#index, #service, #about, #notfound) #contact main.service .title div .inner figcaption h3::after {
    content: attr(data-subtitle);
    font-family: "Cormorant Garamond";
    display: block;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.6;
  }
  main.service .title div .inner figcaption p, main.service .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption p, :is(#index, #service, #about, #notfound) #contact main.service .title div .inner figcaption p {
    writing-mode: horizontal-tb;
    text-orientation: upright;
    height: auto;
    line-height: 1.6;
    display: flex;
    align-items: flex-end;
  }
  main.about {
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
  }
  main.about .title {
    background: url(../img/sp/about.png) no-repeat top center/contain;
  }
  main.about .title div {
    width: 86vw;
    margin: 0 auto;
  }
  main.about .title div .inner, main.about .title div :is(#index, #service, #about, #notfound) #contact .inner, :is(#index, #service, #about, #notfound) #contact main.about .title div .inner {
    width: 100%;
    height: auto;
    margin-right: 0;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border-bottom: none;
  }
  main.about .title div .inner h2, main.about .title div :is(#index, #service, #about, #notfound) #contact .inner h2, :is(#index, #service, #about, #notfound) #contact main.about .title div .inner h2 {
    writing-mode: vertical-rl;
    font-size: 20vw;
    font-weight: 900;
    -webkit-text-stroke: 1px white;
    margin-left: 66vw;
    -webkit-margin-start: clamp(1em, 10px, 20px);
            margin-inline-start: clamp(1em, 10px, 20px);
  }
  main.about .title div .inner figcaption, main.about .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption, :is(#index, #service, #about, #notfound) #contact main.about .title div .inner figcaption {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  main.about .title div .inner figcaption h3, main.about .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption h3, :is(#index, #service, #about, #notfound) #contact main.about .title div .inner figcaption h3 {
    margin-bottom: 50px;
    border-bottom: 1px solid #000000;
  }
  main.about .title div .inner figcaption h3::after, main.about .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption h3::after, :is(#index, #service, #about, #notfound) #contact main.about .title div .inner figcaption h3::after {
    content: attr(data-subtitle);
    font-family: "Cormorant Garamond";
    display: block;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.6;
  }
  main.about .title div .inner figcaption p, main.about .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption p, :is(#index, #service, #about, #notfound) #contact main.about .title div .inner figcaption p {
    writing-mode: horizontal-tb;
    text-orientation: upright;
    height: auto;
    line-height: 1.6;
    display: flex;
    align-items: flex-end;
  }
  main.contact {
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
  }
  main.contact .title {
    background: url(../img/sp/contact.png) no-repeat top center/contain;
  }
  main.contact .title div {
    width: 86vw;
    margin: 0 auto;
  }
  main.contact .title div .inner, main.contact .title div :is(#index, #service, #about, #notfound) #contact .inner, :is(#index, #service, #about, #notfound) #contact main.contact .title div .inner {
    width: 100%;
    height: auto;
    margin-right: 0;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border-bottom: none;
  }
  main.contact .title div .inner h2, main.contact .title div :is(#index, #service, #about, #notfound) #contact .inner h2, :is(#index, #service, #about, #notfound) #contact main.contact .title div .inner h2 {
    writing-mode: vertical-rl;
    font-size: 20vw;
    font-weight: 900;
    -webkit-text-stroke: 1px white;
    margin-left: 66vw;
    -webkit-margin-start: clamp(1em, 10px, 20px);
            margin-inline-start: clamp(1em, 10px, 20px);
  }
  main.contact .title div .inner figcaption, main.contact .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption, :is(#index, #service, #about, #notfound) #contact main.contact .title div .inner figcaption {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  main.contact .title div .inner figcaption h3, main.contact .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption h3, :is(#index, #service, #about, #notfound) #contact main.contact .title div .inner figcaption h3 {
    margin-bottom: 50px;
    border-bottom: 1px solid #000000;
  }
  main.contact .title div .inner figcaption h3::after, main.contact .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption h3::after, :is(#index, #service, #about, #notfound) #contact main.contact .title div .inner figcaption h3::after {
    content: attr(data-subtitle);
    font-family: "Cormorant Garamond";
    display: block;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.6;
  }
  main.contact .title div .inner figcaption p, main.contact .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption p, :is(#index, #service, #about, #notfound) #contact main.contact .title div .inner figcaption p {
    writing-mode: horizontal-tb;
    text-orientation: upright;
    height: auto;
    line-height: 1.6;
    display: flex;
    align-items: flex-end;
  }
  main.notfound {
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
  }
  main.notfound .title {
    background: url(../img/sp/notfound.png) no-repeat top center/contain;
  }
  main.notfound .title div {
    width: 86vw;
    margin: 0 auto;
  }
  main.notfound .title div .inner, main.notfound .title div :is(#index, #service, #about, #notfound) #contact .inner, :is(#index, #service, #about, #notfound) #contact main.notfound .title div .inner {
    width: 100%;
    height: auto;
    margin-right: 0;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border-bottom: none;
  }
  main.notfound .title div .inner h2, main.notfound .title div :is(#index, #service, #about, #notfound) #contact .inner h2, :is(#index, #service, #about, #notfound) #contact main.notfound .title div .inner h2 {
    writing-mode: vertical-rl;
    font-size: 20vw;
    font-weight: 900;
    -webkit-text-stroke: 1px white;
    margin-left: 66vw;
    -webkit-margin-start: clamp(1em, 10px, 20px);
            margin-inline-start: clamp(1em, 10px, 20px);
  }
  main.notfound .title div .inner figcaption, main.notfound .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption, :is(#index, #service, #about, #notfound) #contact main.notfound .title div .inner figcaption {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  main.notfound .title div .inner figcaption h3, main.notfound .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption h3, :is(#index, #service, #about, #notfound) #contact main.notfound .title div .inner figcaption h3 {
    margin-bottom: 50px;
    border-bottom: 1px solid #000000;
  }
  main.notfound .title div .inner figcaption h3::after, main.notfound .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption h3::after, :is(#index, #service, #about, #notfound) #contact main.notfound .title div .inner figcaption h3::after {
    content: attr(data-subtitle);
    font-family: "Cormorant Garamond";
    display: block;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.6;
  }
  main.notfound .title div .inner figcaption p, main.notfound .title div :is(#index, #service, #about, #notfound) #contact .inner figcaption p, :is(#index, #service, #about, #notfound) #contact main.notfound .title div .inner figcaption p {
    writing-mode: horizontal-tb;
    text-orientation: upright;
    height: auto;
    line-height: 1.6;
    display: flex;
    align-items: flex-end;
  }
}
main:is(#about, #contact, #notfound) > .inner, :is(#index, #service, #about, #notfound) #contact main:is(#about, #contact, #notfound) > .inner,
main#service #Price.inner {
  width: 1100px;
  margin: 150px auto;
}
@media screen and (max-width: 1200px) {
  main:is(#about, #contact, #notfound) > .inner, :is(#index, #service, #about, #notfound) #contact main:is(#about, #contact, #notfound) > .inner,
  main#service #Price.inner {
    width: 86vw;
    margin: 100px auto;
  }
}

main#service .title + .inner, main#service #contact .title + .inner {
  width: 1100px;
  margin: 0 auto;
}
main#service .title + .inner > div, main#service #contact .title + .inner > div {
  width: 1100px;
  height: 340px;
  margin: 150px 0;
  display: flex;
  position: relative;
}
main#service .title + .inner > div[id*=graphic], main#service #contact .title + .inner > div[id*=graphic], main#service .title + .inner > div[id*=web], main#service #contact .title + .inner > div[id*=web] {
  flex-direction: row-reverse;
}
main#service .title + .inner > div[id*=graphic] figcaption, main#service #contact .title + .inner > div[id*=graphic] figcaption, main#service .title + .inner > div[id*=web] figcaption, main#service #contact .title + .inner > div[id*=web] figcaption {
  margin-left: 0;
  margin-right: 50px;
}
main#service .title + .inner > div figure, main#service #contact .title + .inner > div figure {
  width: 550px;
}
main#service .title + .inner > div figcaption, main#service #contact .title + .inner > div figcaption {
  width: 500px;
  margin-left: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000000;
  display: flex;
  align-items: flex-end;
}
main#service .title + .inner > div figcaption h4, main#service #contact .title + .inner > div figcaption h4 {
  font-size: 100px;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
main#service .title + .inner > div figcaption p, main#service #contact .title + .inner > div figcaption p {
  margin: 0 50px;
}
main#service .title + .inner > div[id*=web] figcaption, main#service #contact .title + .inner > div[id*=web] figcaption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
main#service .title + .inner > div[id*=web] figcaption h4, main#service #contact .title + .inner > div[id*=web] figcaption h4 {
  font-family: "Cormorant Garamond";
  writing-mode: horizontal-tb;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}
main#service .title + .inner > div[id*=web] figcaption h4 a, main#service #contact .title + .inner > div[id*=web] figcaption h4 a {
  font-family: "Noto Serif JP";
  margin: 0;
}
main#service .title + .inner > div[id*=web] figcaption p, main#service #contact .title + .inner > div[id*=web] figcaption p {
  margin: 0;
}

@media screen and (max-width: 1200px) {
  main#service .title + .inner, main#service #contact .title + .inner {
    width: 100%;
  }
  main#service .title + .inner > div, main#service #contact .title + .inner > div {
    height: auto;
    width: 100vw;
    margin: 100px 0;
    display: flex;
    flex-direction: column !important;
    align-items: flex-start;
    position: relative;
  }
  main#service .title + .inner > div figure, main#service #contact .title + .inner > div figure {
    max-width: 100%;
    display: flex;
  }
  main#service .title + .inner > div figure img, main#service #contact .title + .inner > div figure img {
    width: 45vw;
    aspect-ratio: 55/34;
  }
  main#service .title + .inner > div figcaption, main#service #contact .title + .inner > div figcaption {
    width: 86vw;
    display: block;
    margin: 50px auto 0 !important;
  }
  main#service .title + .inner > div figcaption h4, main#service #contact .title + .inner > div figcaption h4 {
    font-size: 48px;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: upright;
    position: absolute;
    top: 0;
  }
  main#service .title + .inner > div figcaption p, main#service #contact .title + .inner > div figcaption p {
    margin: 0;
  }
  main#service .title + .inner :is(#graphic, #web) figure {
    justify-content: flex-end;
    align-self: flex-end;
  }
  main#service .title + .inner #movie figure {
    justify-content: flex-start;
  }
  main#service .title + .inner #movie h4 {
    right: 7vw;
  }
  main#service .title + .inner #web h4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
main#service #Price .HowToPrice {
  margin-bottom: 100px;
}
main#service #Price details summary {
  font-size: 24px;
  line-height: 1.3;
  display: block;
}
main#service #Price details summary::-webkit-details-marker {
  display: none;
}
main#service #Price details summary::after {
  content: url(../img/arrow.svg);
  margin-left: 24px;
}
main#service #Price details label {
  display: flex;
  /*チェックボックスがチェックされた時に動作する内容*/
}
main#service #Price details label:first-of-type {
  margin-top: 30px;
}
main#service #Price details label input[type=checkbox] {
  display: none;
}
main#service #Price details label span {
  border-bottom: 1px solid #808080;
  display: block;
}
main#service #Price details label span:nth-of-type(1) {
  box-sizing: border-box;
  width: 680px;
  padding: 10px 0 10px 150px;
  display: block;
  position: relative;
}
main#service #Price details label span:nth-of-type(1)::before {
  content: "選択中";
  background-color: #000000;
  color: #ffffff;
  padding: 0 20px;
  line-height: 1.8;
  position: absolute;
  left: 16px;
  opacity: 0;
}
main#service #Price details label span:nth-of-type(2) {
  width: 420px;
  padding: 10px 0 10px 150px;
  text-align: right;
  position: relative;
}
main#service #Price details label span:nth-of-type(2)::before {
  content: "￥";
}
main#service #Price details label input[type=checkbox]:checked + span:nth-of-type(1)::before {
  opacity: 1;
}
main#service #Price .total_price {
  background-color: #e6e6e6;
  padding: 10px 150px;
  height: -moz-fit-content;
  height: fit-content;
  width: 1100px;
  margin-top: 100px;
  align-items: center;
  bottom: 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  display: flex;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
}
main#service #Price .total_price strong {
  font-size: 36px;
  display: flex;
  align-items: center;
  width: calc(100% - 5em);
}
main#service #Price .total_price strong input {
  font-size: 36px;
  border: none;
  background-color: inherit;
  padding: 0;
  margin-right: 10px;
  width: calc(100% - 0rem);
  height: -moz-fit-content;
  height: fit-content;
  text-align: right;
}
main#service #Price .total_price strong input:focus {
  outline: none;
}

@media screen and (max-width: 1200px) {
  main#service #Price form > details {
    display: flex !important;
    flex-direction: column;
    align-items: flex-end !important;
    justify-content: center;
  }
  main#service #Price form > details summary {
    font-size: 18px;
  }
  main#service #Price form > details > label {
    max-width: 100%;
    display: block;
    border-bottom: 1px solid #808080;
  }
  main#service #Price form > details > label span {
    width: 100% !important;
    padding: 10px !important;
    border-bottom: none;
  }
  main#service #Price form > details > label span:nth-of-type(1) {
    padding-left: 120px;
    text-align: right;
    font-size: 16px;
  }
  main#service #Price form > details > label input[type=checkbox]:checked + span:nth-of-type(1)::before {
    content: url(../img/sp/checked.png);
    background-color: rgba(255, 255, 255, 0);
    padding: 0 16px 0 0;
  }
  main#service #Price .total_price {
    width: 86vw;
    padding: 0 20px;
    font-size: 14px;
    bottom: 15px;
  }
  main#service #Price .total_price strong {
    font-size: 24px;
  }
  main#service #Price .total_price strong input {
    width: 120px;
    font-size: 24px;
  }
}
main#about dl {
  border-bottom: 1px #000000 solid;
  width: 100%;
  display: flex;
}
main#about dl:first-of-type {
  border-top: 1px #000000 solid;
}
main#about dl dt {
  width: 340px;
  padding: 20px;
}
main#about dl dt p {
  font-weight: 700;
}
main#about dl dd {
  width: 760px;
  padding: 20px 0;
}
@media screen and (max-width: 1200px) {
  main#about dl {
    display: block;
  }
  main#about dl > * {
    max-width: 86vw;
  }
  main#about dl dt {
    padding: 20px 0 0;
  }
  main#about .map {
    margin-bottom: 150px;
  }
}

@media screen and (min-width: 1200px) {
  main#contact .title {
    background-size: cover;
    background-position: top right;
  }
  main#contact .title .inner, :is(#index, #service, #about, #notfound) main#contact .title .inner {
    margin-left: 0;
  }
}
main#contact #phone {
  padding: 50px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

:is(input, select, textarea) {
  width: inherit;
  min-height: 65px;
  padding: 20px;
  border: 1px solid #000000;
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  accent-color: #000000;
  background-color: #ffffff;
}
:is(input, select, textarea):-webkit-autofill {
  background-color: #ffffff;
}
:is(input, select, textarea):autofill {
  background-color: #ffffff;
}

main#contact form {
  margin: 150px 0;
  padding: 50px;
}
main#contact form dl {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
main#contact form dl dt {
  width: 250px;
  display: flex;
  justify-content: space-between;
  padding: 23px 10px 0;
}
main#contact form dl dt.must::after {
  content: "必須";
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px;
  margin-top: -10px;
  background-color: black;
  color: white;
  font-size: 12px;
}
main#contact form dl dd {
  width: 700px;
}
main#contact form dl dd > *:has(+ *) {
  margin-bottom: 40px;
}
main#contact form [type=submit] {
  width: 700px;
  padding: 15px 0;
  float: right;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}
main#contact form [type=submit]:hover {
  background: #000000;
  color: #ffffff;
}
main#contact form textarea {
  resize: vertical;
}

@media screen and (max-width: 1200px) {
  main#contact #phone {
    padding: 50px 20px;
  }
  main#contact #phone .tel {
    margin-top: 0;
  }
  main#contact #phone .tel p span {
    font-size: 1.3em;
  }
  main#contact #phone .tel p:last-child {
    margin-top: 50px;
  }
  main#contact form, main#contact form > *, main#contact form > * * {
    max-width: 86vw;
    min-width: 86vw;
    margin: 0 auto;
  }
  main#contact form {
    margin: 100px auto;
    padding: 0;
  }
  main#contact form dl {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  main#contact form dl :is(input, select, textarea) {
    padding: 10px;
    font-size: 0.85em;
    min-height: 42px;
  }
  main#contact form dl dd > *:has(+ *) {
    margin-bottom: 15px;
  }
  main#contact form .btn {
    padding: 0;
  }
}
@-moz-document url-prefix() {
  #mainvisual .swiper-slide {
    width: 990px;
  }
  @media screen and (max-width: 1200px) {
    #mainvisual .swiper-slide {
      width: 100%;
    }
  }
  #contact form dd > * + * {
    margin-top: 40px;
  }
  @media screen and (max-width: 1200px) {
    #contact form dd > * + * {
      margin-top: 15px;
    }
  }
}/*# sourceMappingURL=common.css.map */

/*2025追加スマチェク　河合*/

#SMA-CHECK{
  background: linear-gradient(90deg,rgb(88,187,174),rgb(162,203,85));
  color: white;
}
#SMA-CHECK p{
  margin-bottom: 1vh;
}
#SMA-CHECK a:hover{
  opacity: 0.7;
}
.SMA-CHECK_inner{
  text-align: center;
  padding-bottom: 2vh;
  padding-top: 1.5vh;
}
@media screen and (min-width: 1200px) {
  .SMA-CHECK_inner{
    text-align: center;
    padding-bottom: 2vh;
    padding-top: 1vh;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.SMA-CHECK_box{
  background-color: white;
}
.SMA-CHECK_box img{
  margin: 2vw;
  width: 40vw;
  min-width: 200px;
  max-width: 800px;
}
@media screen and (min-width: 1200px) {
  .SMA-CHECK_box img{
    min-width: 470px;
  }
}

/*2025追加スマチェク　河合 END*/