@charset "UTF-8";

* {
  box-sizing: border-box;
}
html {
  font-size: 100%;
}
body {
  color: #030303;
  font-family: "Noto Sans", Arial, sans-serif;
  letter-spacing: .1em;
}
a {
  color: #000;
  text-decoration: none;
  transition: ease 0.3s;
}
a:hover {
  opacity: 0.7;
  transition: ease 0.3s;
  text-decoration: none;
}
img {
  max-width: 100%;
  vertical-align: bottom;
	backface-visibility: hidden;
	transform: translateZ(0);
}
li {
  list-style: none;
}
.en {
  font-family: Arial, Helvetica, sans-serif;
}
.wrapper  {
  padding: 0 35px;
  margin: 0 auto;
}
.wrapper-02  {
  width: 100%;
  padding: 0 80px;
  margin: 0 auto;
}
.wrapper-03 {
  width: 100%;
  padding: 0 80px;
  margin: 0 auto;
}
.wrapper-04 {
  max-width: 1600px;
  padding: 0 80px;
  margin: 0 auto;
}
.wrapper-06 {
  width: 100%;
  margin: 0 auto;
}
.contact-link {
  text-align: center;
  margin-bottom: 100px;
}
.contact-link .tel-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #CB5338;
}
.contact-link .tel {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 20px;
}

/* --------------------------------
header
-------------------------------- */
#header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  padding: 30px 0 0 0;
}
#header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .site-title {
  line-height: 1px;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.08rem;
}
#header .site-title a {
  color: #fff;
}
#header .site-title .logo-img {
  max-width: 205px;
}
#nav .menu .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 26px;
}
#nav .menu .item {
  line-height: 20px;
  font-size: 0.95rem;
  color: #FFF;
  font-weight: 400;
  letter-spacing: .1em;
}
#nav .menu .menu-2 {
  display: block;
}
#nav .menu .menu-2 li a {
  padding: 12px 16px;
  display: block;
}
#nav .menu .item:last-child {
  margin-right: 0;
  border-right: 0;
}
#nav .menu .item.no-border {
  border-right: 0
}
#nav .menu .item .sns .sns-logo,
#menu-sp .menu .item .sns-logo {
  height: 15px;
  display: inline-block;
}
#menu-sp .menu .item .sns-logo {
  margin-bottom: 3px;
}
#nav .menu .item .sns {
  display: flex;
}
#nav .menu .item .sns .instagram {
  margin-right: 10px;
}
#nav .menu .item .sns .youtube {
  margin-right: 10px;
}
#nav-sp {
  display: none;
}
#menu-sp {
  display: none;
}
#js-fixed-header {
  height: 80px;
  background-color: #fff;
  position: fixed;
  top: -80px;
  left: 0;
  right: 0;
  z-index: 300;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  padding: 30px 0 0 0;
  color: #000;
}
#js-fixed-header.is-show {
  top: 0;
  visibility: visible;
}
#js-fixed-header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#js-fixed-header .site-title {
  line-height: 1px;
  font-weight: 600;
  font-size: 1.6rem;
  font-family: Arial, Helvetica, sans-serif;
}
#js-fixed-header .site-title a {
  color: #000;
}
#js-fixed-header .site-title .logo-img {
  max-width: 205px;
}
#fixed-nav .menu .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 26px;
}
#fixed-nav .menu .item {
  line-height: 20px;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: .1em;
}
#fixed-nav .menu .menu-2 {
  display: block;
}
#fixed-nav .menu .menu-2 li a {
  padding: 12px 16px;
  display: block;
}
#fixed-nav .menu .item:last-child {
  margin-right: 0;
  border-right: 0;
}
#fixed-nav .menu .item.no-border {
  border-right: 0
}
#fixed-nav .menu .item .sns .sns-logo,
#menu-sp .menu .item .sns-logo {
  height: 15px;
  display: inline-block;
}
#menu-sp .menu .item .sns-logo {
  margin-bottom: 3px;
}
#fixed-nav .menu .item .sns {
  display: flex;
}
#fixed-nav .menu .item .sns .instagram {
  margin-right: 10px;
}
#fixed-nav .menu .item .sns .youtube {
  margin-right: 10px;
}
#fixed-nav-sp {
  display: none;
}
#fixed-menu-sp {
  display: none;
}

/* --------------------------------
loading
-------------------------------- */
#loading .loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 500;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 175px;
}
@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

/* --------------------------------
スクロールダウン
-------------------------------- */
.scroll {
  position: absolute;
  right: 100px;
  bottom: 90px;
  writing-mode: vertical-rl;
  z-index: 9;
  font-size: 0.75rem;
}
.scroll a {
  color: #fff;
}
.scroll::before {
  animation: scroll 3500ms infinite;
  background-color: #000;
  bottom: -40px;
  content: "";
  height: 55px;
  left: 0;
  margin: auto;
  position: absolute;
  right: -40px;
  width: 1px;
  z-index: 2;
}
.scroll::after {
  background-color: #ccc;
  bottom: -40px;
  content: "";
  height: 55px;
  left: 0;
  margin: auto;
  position: absolute;
  right: -40px;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* --------------------------------
animation
-------------------------------- */
.img-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.js-zoom-fade {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15); 
  opacity: 0;
  transition: transform 11s linear, opacity 2s ease-out;
  display: block;
}

/* --------------------------------
mainvisual
-------------------------------- */
#mainvisual {
  height: 100vh;
  background-image: url(../img/top/top-img1.jpg);
  background-size: cover;
  background-position: center;
}
#mainvisual .concept-title {
  text-align: left;
  position: absolute;
  bottom: 48px;
  right: 0;
  left: 35px;
  color: #fff;
  font-weight: normal;
  padding-right: 35px;
}
#mainvisual .concept-title .jp {
  display: block;
  font-size: 2.2rem;
  letter-spacing: 0.4rem;
  line-height: 48px;
  margin-bottom: 24px;
  font-weight: 400;
  font-family: ryo-text-plusn,serif;
  font-feature-settings: "palt";
}
#mainvisual .concept-title .en {
  display: block;
  font-size: 1.125rem;
  line-height: 22.48px;
  letter-spacing: 0.09rem;
}

/* --------------------------------
about-us
-------------------------------- */
#about-us {
  padding: 80px 0 0 0;
  margin: -80px 0 100px 0;
}
#about-us .section-flex {
  display: flex;
  flex-direction: row-reverse;
  gap: 0 155px;
  margin: 100px 119px 195px 119px;
  justify-content: center;
}
#about-us .section-flex .right {
  display: flex;
  flex-direction: row-reverse;
}
#about-us .section-flex .right .pc-none {
  display: none;
}
#about-us .section-flex .right .title  {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  margin-left: 110px;
  font-size: 1.6rem;
  line-height: 60px;
  font-family: ryo-text-plusn,serif;
}
#about-us .section-flex .right .text {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 1rem;
  line-height: 80px;
  margin-top: 70px;
  letter-spacing: .1em;
}
#about-us .section-flex .left {
  margin: auto 0 0 0;
}

#about-us .company {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  margin: 0 0 70px 0;
  gap: 0 25px;
}
#about-us .company .logo img {
  width: 141px;
}
#about-us .company .name {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.09rem;
}
#about-us .link {
  font-size: 0.95rem;
  margin-bottom: -95px;
  letter-spacing: 0.05rem;
}

#about-us .tb-flex {
  display: none;
}
#about-us .link a {
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
}
#about-us .img img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 630px;
}
#about-us .link.pc-none {
  display: none;
}
#about-us .link.tb-only {
  display: none;
}
#about-us .sp-box {
  display: none;
}
#about-us .secGreeting {
  margin: 100px auto 100px auto;
  transform: scale(1);
  transform-origin: top center;
  transition: transform 0.3s ease;
}
#about-us .secGreeting .indexbox {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  margin: auto 119px auto auto;
}
#about-us .secGreeting .indexbox .title {
  margin-left: 145px;
  font-size: 1.875rem;
  line-height: 60px;
  letter-spacing: 0.2rem;
}
#about-us .secGreeting .indexbox .text {
  margin-top: 70px;
  font-size: 1.125rem;
  margin-left: 155px;
  line-height: 80px;
}
#about-us .secGreeting .indexbox .boxOwner {
  display: flex;
  flex-direction: column;
  gap: 25px 0px;
  margin: auto 0 0 0;
  height: 180px;align-items: flex-end;
}
#about-us .secGreeting .indexbox .boxOwner .boxLogo img {
  width: 141px;
}
#about-us .secGreeting .indexbox .boxOwner .ownerName {
  font-size: 1.2319rem;
}
#about-us .secGreeting .box {
  display: flex;
  gap: 0px 40px;
  flex-direction: row;
}
#about-us .secGreeting .box .link {
  writing-mode: horizontal-tb;
  text-orientation: inherit;
}

.arrow img{
	width: 0.35rem;
  line-height: 1;
  vertical-align: unset;
  transform: translateY(3%);
  margin-left: 5px;
}

/* --------------------------------
service
-------------------------------- */
#service {
  margin-bottom: 100px;
}
#service .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 80px;
}
#service .flex .left,
#service .flex .right {
  width: 50%;
}
#service .flex .left .img img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 600px;
}
#service .flex .right .service {
  border-bottom: 1px solid #CBCBCB;
  padding-bottom: 18px;
  margin-bottom: 38px;
  font-size: 1.1rem;
}
#service .flex .right .title {
  margin-bottom: 33px;
  font-size: 1.5rem;
  font-weight: 400;
	font-family: ryo-text-plusn,serif;
} 
#service .flex .right .comment {
  margin-bottom: 33px;
  line-height: 1.8;
  font-size: 0.875rem;
}
#service .flex .right .link a {
  color: #000;
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
}

/* --------------------------------
works
-------------------------------- */
#works .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 80px;
}
#works .flex .left,
#works .flex .right {
  width: 50%;
}
#works .flex .right .img img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 600px;
}
#works .flex .left .works {
  border-bottom: 1px solid #CBCBCB;
  padding-bottom: 18px;
  margin-bottom: 38px;
  font-size: 1.1rem;
}
#works .flex .left .title {
  margin-bottom: 33px;
  font-size: 1.5rem;
  font-weight: 400;
	font-family: ryo-text-plusn,serif;
} 
#works .flex .left .comment {
  margin-bottom: 33px;
  font-size: 0.875rem;
  line-height: 23px;
}
#works .flex .left .link a {
  color: #000;
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
}

/* --------------------------------
contact
-------------------------------- */
#contact {
  text-align: center;
  padding: 186px 0 120px 0;
}
#contact .title {
  font-size: 1.25rem;
  margin-bottom: 18px;
}
#contact .comment {
  font-size: 1rem;
  margin-bottom: 46px;
}
#contact .adress {
  letter-spacing: 0.1rem;
  line-height: 24px;
  font-size: 0.9375rem;
}

/* --------------------------------
footer
-------------------------------- */
#footer {
  padding: 0 0 30px 0; 
}
#footer .company {
  margin-bottom: 70px;
}
#footer .company .company-name {
  font-size: 1.004375rem;
  margin-bottom: 16px;
  font-weight: 400;
}
#footer .company .adress {
  font-size: 0.8125rem;
  line-height: 21.76px;
}
#footer .flex {
  display: flex;
  justify-content: space-between;
}
#footer .flex .menu {
  display: flex;
  gap: 0 5%;
  font-weight: bold;
  font-size: 0.95rem;
	font-weight: 400;
  letter-spacing: .1em;
}
#footer .flex .menu .item {
  color: #000;
}
#footer .flex .sns {
  display: flex;
  gap: 0 41px;
  font-size: 0.95rem;
}
#footer .flex .sns .instagram {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
#footer .flex .sns .instagram .img {
  width: 17px;
}

/* --------------------------------
fade
-------------------------------- */
.js-fadeUp {
  transition: 1.8s;
  opacity: 0;
  transform: translate(0,10px);
  -webkit-transform: translate(0,10px);
}
.js-fadeUp.is-inview {
  opacity: 1.0;
  transform: translate(0,0);
  -webkit-transform: translate(0,0);
  transition-delay: 3.0s;
}

/* --------------------------------
フェードイン
-------------------------------- */
.js-scroll-fade {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1.8s cubic-bezier(.25,.8,.25,1) ,
              transform 1.8s cubic-bezier(.25,.8,.25,1) ;
  will-change: opacity, transform;
}
.js-scroll-fade.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --------------------------------
works-page
-------------------------------- */
#header .site-title .bk {
  color: #000;
}
#nav .menu .list .item.bk {
  color: #000;
}

/* --------------------------------
sec-title
-------------------------------- */
.sec-title {
  /* margin: 196px 0 80px 0; */
  margin: 130px 0 80px 0;
  font-weight: 500;
  font-size: 1.5rem;
}
.sec-title .title .text {
  display: block;
  max-width: 412px;
  font-size: 1.3rem;
	font-family: ryo-text-plusn,serif;
}
.sec-title .title .text.en {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #CBCBCB;
  font-size: 1.1rem;
	font-family: Arial, Helvetica, sans-serif;
}

/* --------------------------------
works-page
-------------------------------- */
#header.wh {
  background-color: #FFF;
  color: #000;
}
#work-results {
  margin-bottom: 60px;
}
#work-results .performance {
  margin-bottom: 100px;
}
#work-results .works-img .slider img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 670px;
}
#work-results .works-img {
  margin-bottom: 54px;
}
#work-results .works-number {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 19px;
  border-bottom: 1px solid #CBCBCB;
  margin-bottom: 61px;
  font-size: 0.875rem;
}
#work-results .works-number .en {
  margin-right: 33px;
	font-size: 0.9rem;
}
#work-results .works-number .works {
	font-size: 1rem;
}
#work-results .section-title {
  margin-bottom: 52px;
}
#work-results .section-title .jp,
#work-results .section-title .en {
  display: block;
  font-size: 1.05rem;
  font-weight: normal;
}
#work-results .section-title .jp {
  margin-bottom: 6px;
  font-size: 1.4rem;
	font-family: ryo-text-plusn,serif;
}
#work-results .content .flex {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  gap: 0px 60px;
}
#work-results .content .flex .left,
#work-results .content .flex .right {
  width: 50%;
}
#work-results .content .flex .text {
  line-height: 1.8;
  font-size: 0.875rem;
}
#work-results .content .flex .right .text {
  display: none;
}
#work-results .content .description {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  font-size: 0.875rem;
}
#work-results .content .description dt {
  width: 30%;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #CBCBCB
}
#work-results .content .description dt:last-of-type {
  border: none;
}
#work-results .content .description dd {
  width: 70%;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #CBCBCB
}
#work-results .content .description dd:last-child {
  border: none;
}

/* --------------------------------
about-service-page
-------------------------------- */
#asp-about {
  margin-bottom: 100px;
}
#asp-about .wrapper-03.pc-none {
  padding: 0;;
}
#asp-about .img {
  margin-bottom: 70px;
}
#asp-about .img img {
  margin: auto;
  width: 142px;
  display: block;
}
#asp-about .pr-text {
  text-align: center;
  margin-bottom: 100px;
	line-height: 1.8;
  font-size: 0.875rem;
}
#asp-about .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
  gap: 0 80px;
}
#asp-about .flex .flex-img,
#asp-about .flex .flex-text {
  width: 50%;
}
#asp-about .flex .flex-img img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 600px;
}
#asp-about .flex .flex-text .text-title {
  margin-bottom: 30px;
	font-size: 1.6rem;
  font-weight: 500;
  font-family: ryo-text-plusn,serif;
}
#asp-about .flex .flex-text .text {
  margin-bottom: 23px;
  line-height: 1.8;
  font-size: 0.875rem;
}
#prize {
  background-image: url(../img/about/prize-dark.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 320px;
  background-position: center;
  margin-bottom: 174px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#prize .prize-text {
  color: #fff;
  font-weight: 400;
}
#prize .prize-text .title  {
  font-size: 1.5rem;
  margin-bottom: 20px;
	font-family: ryo-text-plusn,serif;
}
#prize .text-box .text {
  text-align: left;
  line-height: 1.8;
  font-size: 0.8175rem; 
  font-weight: 400;
}
#prize .text-box .text .sp {
  display: none;
}
#mortal {
  background-image: url(../img/about/mortal.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 530px;
  position: relative;
	background-position: bottom;
}
#mortal .img {
  display: none;
}
#mortal .text-box {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 32px 47px 40px 54px;
  background-color: #fff;
  height: 490px;
  position: absolute;
  top: -74px;
  right: 138px;
}
#mortal .text-box .title {
  margin-left: 44px;
  font-size: 1.5rem;
	font-family: ryo-text-plusn,serif;
	line-height: 50px;
}
#mortal .text-box .text {
  margin-left: 25px;
  font-size: 0.95rem;
}
#mortal .text-box .text:last-child {
  margin-left: 0;
}
.color-box {
  background-color: #F8F8F6;
}
#asp-service {
  padding: 100px 0 50px 0;
}
#asp-service .sec-title {
  margin: 0;
}
#asp-service .sec-title .title {
  margin-bottom: 69px;
}
#asp-service .sec-title .text.en {
  font-size: 1.1rem;
}
#asp-service .service-title {
  margin-bottom: 32px;
  font-size: 1.5rem;
  font-weight: 500;
	font-family: ryo-text-plusn,serif;
}
#asp-service .service-text {
  margin-bottom: 58px;
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.8;
}
#asp-service .service-text:last-child {
  margin-bottom: 0;
}
#asp-company {
  padding: 100px 0 100px 0;
  margin-top: -50px;
}
#asp-company .sec-title .text.en {
  font-size: 1.1rem;
}
#asp-company .sec-title {
  margin: 0 0 73px 0;
}
#asp-company .pr {
  text-align: center;
  font-size: 1.2em;
  line-height: 37.5px;
  font-weight: 300;
  margin-bottom: 28px;
	font-family: ryo-text-plusn,serif;
}
#asp-company .company-name {
  text-align: center;
  margin-bottom: 106px;
  font-size: 1.1rem;
  font-weight: 600;
}
#asp-company .company-info {
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.004375rem;
}
#asp-company .company-info dt {
  width: 30%;
}
#asp-company .company-info dd {
  width: 70%;
}
#asp-company .company-info dt,
#asp-company .company-info dd {
  margin-bottom: 27px;
}
#asp-company .company-info dt,
#asp-company .company-info dd:last-child {
  margin-bottom: 0;
}

/*-------------------------------------------
TB
-------------------------------------------*/
@media screen and (max-width: 1450px) {
  #about-us .section-flex {
    flex-direction: column;
    gap: 0 155px;
    margin: 100px 119px 100px 119px;
    align-items: center;
  }
  #about-us .section-flex .right .inner-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #about-us .section-flex .right .text {
    margin-bottom: 100px;
  }
  #about-us .section-flex .right .inner-flex .company .logo img {
    width: 141px;
  }
  #about-us .section-flex .right .pc-none {
    display: block;
  }
  #about-us .section-flex .right .inner-flex .company {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    margin: 0 0 70px 30px;
    gap: 0 25px;
  }
  #about-us .section-flex .right .inner-flex .company .name {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-size: 1.2319rem;
  }
  #about-us .link.tb-only {
    display: block;
    margin-bottom: 0;
    margin-left: 30px;
  }

  #about-us .section-flex .left .company {
    flex-direction: row-reverse;
    align-items: flex-end;
    margin: 100px 0 70px 0;
    gap: 0 25px;
    justify-content: flex-end;
  }
  #about-us .section-flex .left.tb-none-01 {
    display: none;
  }
  #about-us .section-flex .left .link {
    margin-bottom: 0px;
  }
  #about-us .section-flex .right {
    flex-direction: row-reverse;
    /* justify-content: center; */
  }
}

/*-------------------------------------------
TB
-------------------------------------------*/
@media screen and (max-width: 1370px) {
  #about-us .secGreeting {
    transform: scale(0.85);
  }
  #about-us .secGreeting {
    margin-bottom: 0;
  }
  #about-us .secGreeting .indexbox {
    margin: auto 119px auto auto;
  }
}
@media screen and (max-width: 1200px) {
  #about-us .secGreeting {
    transform: scale(0.75);
  }
  #about-us .secGreeting {
    margin-bottom: -50px;
  }
}
@media screen and (max-width: 1024px) {
  .wrapper-03 {
    padding: 0 40px;
  }
  .wrapper-04 {
    padding: 0 40px;
  }

  /* --------------------------------
  [TB]header
  -------------------------------- */
  #header {
    padding: 40px 0 0 0;
  }
  #header .wrapper {
    padding: 0 40px;
  }
  #header .site-title {
  font-size: 2rem;
  }
  #header .site-title .logo-img {
    max-width: 150px;
  }
  #nav.pc {
    display: none;
  }
  #nav-sp {
    display: block;
  }
  #header .hamburger {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 27px;
    right: 40px;
    cursor: pointer;
    transition: 0.5s;
    z-index: 100;
  }
  #header .hamburger span {
    width: 30px;
    height: 1px;
    border-radius: 4px;
    background-color: #fff;
    position: absolute;
    left: 0px;
    transition: 0.5s;
  }
  #header .hamburger.bk span {
    background-color: #000;
  }
  #header .hamburger span:nth-child(1) {
    top: 5px;
  }
  #header .hamburger span:nth-child(2) {
    top: 15px;
  }
  #header .hamburger span:nth-child(3) {
    bottom: 5px;
  }
  #header.open .hamburger {
    position: fixed;
  }
  #header.open .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
    background-color: #000;
  }
  #header.open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #header.open .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
    background-color: #000;
  }
  #menu-sp {
    display: block;
    width: 100%;
    background-color: #fff;
    padding: 140px 30px 0 30px;
    position: fixed;
    top: 0;
    right: -1000px;
    bottom: 0;
    opacity: 0;
    overflow-y: auto;
    z-index: 20;
    transition: 0.8s;
  }
  #menu-sp .menu .item {
    margin-bottom: 20px;
    font-size: 1rem;
  }
  #menu-sp .menu .item.u-cottage {
    margin-bottom: 5px;
  }
  #menu-sp .menu .cottage.under-text {
    margin-bottom: 15px;
  }
  #menu-sp .menu .cottage {
    display: block;
    margin-bottom: 8px;
    margin-left: 25px;
    position: relative;
  }
  #menu-sp .menu .cottage::before {
    content: "";
    width: 6px;
    height: 1px;
    background-color: #00807F;
    position: absolute;
    top: 13px;
    left: -10px;
  }
  .open #menu-sp {
    right: 0;
    opacity: 1;
  }
  #mask {
    display: none;
  }
  .open #mask {
    width: 100%;
    height: 100%;
    background-color: #000;
    cursor: pointer;
    display: block;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  #js-fixed-header {
    padding: 40px 0 37px 0;
  }
  #js-fixed-header .wrapper {
    padding: 0 40px;
  }
  #js-fixed-header .site-title {
  font-size: 2rem;
  }
  #js-fixed-header .site-title .logo-img {
    max-width: 150px;
  }
  #fixed-nav.pc {
    display: none;
  }
  #fixed-nav-sp {
    display: block;
  }
  #js-fixed-header .hamburger {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 27px;
    right: 40px;
    cursor: pointer;
    transition: 0.5s;
    z-index: 100;
  }
  #js-fixed-header .hamburger span {
    width: 30px;
    height: 1px;
    border-radius: 4px;
    background-color: #000;
    position: absolute;
    left: 0px;
    transition: 0.5s;
  }
  #js-fixed-header .hamburger.bk span {
    background-color: #000;
  }
  #js-fixed-header .hamburger span:nth-child(1) {
    top: 5px;
  }
  #js-fixed-header .hamburger span:nth-child(2) {
    top: 15px;
  }
  #js-fixed-header .hamburger span:nth-child(3) {
    bottom: 5px;
  }
  #js-fixed-header.open .hamburger {
    position: fixed;
  }
  #js-fixed-header.open .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
    background-color: #000;
  }
  #js-fixed-header.open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #js-fixed-header.open .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
    background-color: #000;
  }
  #fixed-menu-sp {
    display: block;
    width: 100%;
    background-color: #fff;
    padding: 140px 30px 0 30px;
    position: fixed;
    top: 0;
    right: -1000px;
    bottom: 0;
    opacity: 0;
    overflow-y: auto;
    z-index: 20;
    transition: 0.8s;
  }
  #fixed-menu-sp .menu .item {
    margin-bottom: 20px;
    font-size: 1rem;
	  font-family: Arial, Helvetica, sans-serif;
  }
  #fixed-menu-sp .menu .item .sns-logo {
  height: 15px;
  display: inline-block;
  line-height: 1;
}	
  #fixed-menu-sp .menu .item.u-cottage {
    margin-bottom: 5px;
  }
  #fixed-menu-sp .menu .cottage.under-text {
    margin-bottom: 15px;
  }
  #fixed-menu-sp .menu .cottage {
    display: block;
    margin-bottom: 8px;
    margin-left: 25px;
    position: relative;
  }
  #fixed-menu-sp .menu .cottage::before {
    content: "";
    width: 6px;
    height: 1px;
    background-color: #00807F;
    position: absolute;
    top: 13px;
    left: -10px;
  }
  .open #fixed-menu-sp {
    right: 0;
    opacity: 1;
  }
  #fixed-mask {
    display: none;
  }
  .open #fixed-mask {
    width: 100%;
    height: 100%;
    background-color: #000;
    cursor: pointer;
    display: block;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }

  /* --------------------------------
  [TB]mainvisual
  -------------------------------- */
  #mainvisual {
    height: 100vh;
  }
  #mainvisual .concept-title {
    font-size: 2.5rem;
  }

  /* --------------------------------
  [TB]about-us
  -------------------------------- */
  #about-us .section-contents {
    display: none;
    padding: 0 20px;
    margin-top: 32.5px;
  }
  #about-us .section-contents .title {
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    margin: 0 0 30px 0;
    display: none;
  }
  #about-us .section-contents .comment {
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    margin-left: 0;
    display: none;
  }
  #about-us .section-contents .comment .text {
    margin-left: 0;
    display: none;
  }
  #about-us .section-contents .company {
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    display: none;
  }
  #about-us .tb-flex {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
    margin-top: 32.5px;
    gap: 0 10px;
  }
  #about-us .tb-flex .right {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 0 25px;
    margin-bottom: 65px;
  }
  #about-us .tb-flex .left {
    margin-bottom: 65px;
  }
  #about-us .tb-flex .left .comment {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
  #about-us .tb-flex .logo-img img {
    margin: auto;
    width: 141px;
  }
  #about-us .tb-flex .title {
    margin-bottom: 30px;
    font-size: 1.5625rem;
  }
  #about-us .tb-flex .company {
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-size: 1.2319rem;
  }
  #about-us .link {
    margin: auto 0 0 0;
    /* padding-left: 20px; */
  }
  #about-us .link.sp-none {
    display: none;
  }
  #about-us .link.pc-none {
    display: block;
  }
  #about-us .sp-box {
    display: block;
    margin: 0 auto;
  }
  #about-us .link.tb-only {
    margin-left: 0px;
  }
  #about-us .sp-box .company {
    justify-content: center;
  }
  #about-us .secGreeting .indexbox {
    writing-mode: horizontal-tb;
    text-orientation: inherit;
    margin: auto;
  }
  #about-us .wrapper-06 {
    margin: 0 auto;
    padding: 0 20px;
  }
  #about-us .secGreeting {
    transform: scale(1);
    margin: 65px auto 65px auto;
  }
  #about-us .secGreeting .indexbox .title {
    font-size: 1.5625rem;
    line-height: 40px;
    margin: auto auto 60px auto;
    letter-spacing: 0rem;
  }
  #about-us .secGreeting .indexbox .text {
    margin: auto auto 53px auto;
    font-size: 0.9375rem;
    line-height: 35px;
  }
  #about-us .secGreeting .indexbox .boxOwner {
    flex-direction: column;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  #about-us .secGreeting .indexbox .box {
    margin: 65px auto;
    flex-direction: column;
    align-items: center;
  }
  #about-us .section-flex {
    gap: 0 0px;
    margin: 65px 0px 65px 0px;
    justify-content: center;
    align-items: flex-start;
  }
  #about-us .section-flex .right {
    flex-direction: column;
  }
  #about-us .section-flex .right .title  {
    writing-mode: horizontal-tb;
    text-orientation: inherit;
    margin: auto auto 40px auto;
    font-size: 1.5rem;
    line-height: 40px;
    letter-spacing: 0rem;
  }
  #about-us .section-flex .right .text {
    writing-mode: horizontal-tb;
    text-orientation: inherit;
    margin: 0 0 25px 0;
    font-size: 0.9rem;
    line-height: 2.1;
  }
  #about-us .section-flex .right .inner-flex .company.pc-none {
    display: none;
  }

  /*-------------------------------------------
  [TB]aboutus-page
  -------------------------------------------*/
  #aboutus-page {
    margin-top: 60px;
  }
  #aboutus-page #top {
    position: relative;
    margin-bottom: 60
  }
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 768px) {
  html {
    font-size: 100%;
  }
  .wrapper-02  {
    padding: 0 20px;
  }
  .wrapper-03 {
    padding: 0 20px;
  }
  .wrapper-03.sp-none {
    padding: 0;
  }
  .wrapper-04 {
    padding: 0 20px;
  } 
  .page-title {
    margin-bottom: 60px;
    font-size: 1.5rem;
  }
  .page-sec-title {
    font-size: 1.3rem;
    border-left: 8px solid #137180;
    padding-left: 15px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .contact-link .btn {
    font-size: 1rem;
    margin-bottom: 10px;
    padding: 10px 40px 10px 10px;
  }
  .contact-link .btn::after {
    width: 10px;
    height: 10px;
    top: 17px;
    right: 23px;
  }
  .contact-link .btn:hover::after {
    right: 30px;
  }
  .contact-link .tel-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #CB5338;
  }
  .contact-link .tel {
    font-size: 1rem;
  }
    .br-pc {
    display: none;
  }
	
	.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 100px;
}

  /* --------------------------------
  [SP]header
  -------------------------------- */
  #header .site-title {
    font-size: 1.5rem;
  }
  #header .wrapper {
    padding: 0 20px;
  }
  #header .hamburger {
    right: 20px;
  }
  #js-fixed-header .hamburger {
    right: 20px;
  }

  /* --------------------------------
  [SP]スクロールダウン
  -------------------------------- */
  .scroll {
    right: 40px;
  }

  /* --------------------------------
  [SP]mainvisual
  -------------------------------- */
  #mainvisual {
    background-position: center top;
  } 
  #mainvisual .br-sp {
    display: block;
  }
  #mainvisual .concept-title {
    bottom: 32.5px;
    left: 20px;
  }
  #mainvisual .concept-title .jp {
    font-size: 1.5rem;
    line-height: 36px;
    margin-bottom: 10px;
  }
  #mainvisual .concept-title .en {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* --------------------------------
  [SP]about-us
  -------------------------------- */
  #about-us {
    margin-bottom: 65px;
  }
  #about-us .section-contents {
    margin-top: 32.5px;
  }
  #about-us .section-flex {
    margin: 45px 0px 50px 0px;
  }
  #about-us .section-contents .title {
    font-size: 1rem;
    line-height: 30px;
  }
  #about-us .section-contents .comment {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  #about-us .section-contents .link a {
    font-size: 1rem;
  }
  #about-us .img img {
    object-fit: cover;
    height: 180px;
  }
  #about-us .company {
    margin-bottom: 65px;
  }
	#about-us .company .name{
		font-size: 0.9rem;
	}
	#about-us .company .logo img {
  width: 120px;
}
	
  /* --------------------------------
  [SP]service
  -------------------------------- */
  #service {
    margin-bottom: 0;
  }
    #service .flex {
    flex-direction: column;
  }
  #service .flex .left,
  #service .flex .right {
    width: 100%;
  }
  #service .flex .left .img img {
    height: 351px;
  }
  #service .flex .right {
    padding: 32.5px 0 32.5px 0; 
  }
  #service .flex .right .service {
    padding-bottom: 9px;
    margin-bottom: 19px;
  }
  #service .flex .right .title {
    margin-bottom: 20px;
  } 
  #service .flex .right .comment {
    line-height: 1.8;
    margin-bottom: 20px;
  }
  #service .flex .right .link a {
    font-size: 0.875rem;
  }

  /* --------------------------------
  [SP]works
  -------------------------------- */
  #works .flex {
    flex-direction: column-reverse;
  }
  #works .flex .left,
  #works .flex .right {
    width: 100%;
  }
  #works .flex .right .img img {
    height: 351px;
  }
  #works .flex .left {
    padding: 32.5px 0 0 0;   
  }
  #works .flex .left .works {
    padding-bottom: 9px;
    margin-bottom: 19px;
  }
  #works .flex .left .title {
    margin-bottom: 20px;
  } 
  #works .flex .left .comment {
    line-height: 1.8;
    margin-bottom: 16.5px;
  }
  #works .flex .left .link a {
    font-size: 0.875rem;
  }

  /* --------------------------------
  [SP]contact
  -------------------------------- */
  #contact {
    padding: 80px 0 80px 0;
  }
  #contact .title {
    margin-bottom: 9px;
  }
  #contact .comment {
    margin-bottom: 23px;
	  font-size: 0.9rem;
  }

  /* --------------------------------
  [SP]footer
  -------------------------------- */
  #footer {
    padding: 0 0 32.5px 0; 
  }
  #footer .flex {
    flex-direction: column;
  }
  #footer .company {
    margin-bottom: 50px;
  }
  #footer .company .company-name {
    margin-bottom: 8px;
  }
  #footer .copyright {
    font-size: 0.85rem;
    margin-bottom: 30px;
  }
  #footer .flex .sns {
    flex-direction: column;
    gap: 15px 0;
	  font-size: 0.85rem;
  }
  #footer .flex .menu {
    margin-bottom: 30px;
	  font-size: 0.85rem;
  }
  #footer .flex .sns .instagram p {
    padding-top: 5px;
  }
	#footer .flex .sns .instagram .img {
  width: 11px;
}

  /* --------------------------------
  [SP]works-page-title
  -------------------------------- */
  #works-page-title .title .text {
    width: 100%;
  }

  /* --------------------------------
  [SP]sec-title
  -------------------------------- */
  .sec-title {
    font-size: 1.1rem;
    /* margin: 99px 0 35px 0; */
    margin: 118px 0 17.5px 0;
  }
  .sec-title .title .text.en {
    margin-bottom: 11px;
    padding-bottom: 15px;
    border-bottom: 1px solid #CBCBCB;
    font-size: 1.1rem;
  }

  /* --------------------------------
  [SP]work-results
  -------------------------------- */
  #work-results {
    margin-bottom: 32.5px;
  }
  #work-results .performance {
    margin-bottom: 42px;
  }
  #work-results .works-number {
    width: 100%;
    font-size: 0.875rem;
  }
  #work-results .section-title {
    font-size: 1.1rem;
    margin-bottom: 26px;
  }
  #work-results .works-img .slider img {
    height: 230px;
  }
  #work-results .content .flex {
    flex-direction: column;
    font-size: 0.875rem;
    line-height: 1.8;
  }
  #work-results .content .flex .left,
  #work-results .content .flex .right {
    width: 100%;
  }
  #work-results .content .flex .text {
    display: none;
    line-height: normal;
  }
  #work-results .content .flex .right .text {
    display: block;
	  line-height: 1.8;
	  font-size: 0.85rem;
  }
  #work-results .content .description {
    margin-bottom: 26px;
	  font-size: 0.8rem;
  }
  #work-results .content .description dt {
    margin-bottom: 9px;
    padding-bottom: 9px;
	  width: 45%;
  }
  #work-results .content .description dd {
    margin-bottom: 9px;
    padding-bottom: 9px;
	  width: 55%;
  }
  #work-results .content .description dt:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #work-results .content .description dd:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #work-results .works-img {
    margin-bottom: 48px;
  }
  #work-results .works-number {
    padding-bottom: 9.5px;
    margin-bottom: 30.5px;
  }
  #work-results .works-number .en {
    margin-right: 16.5px;
  }
  #work-results .section-title .jp {
    margin-bottom: 0px;
	  font-size: 1.3rem;
  }
	#work-results .section-title .en {
  font-size: 1rem;
}

  /* --------------------------------
  [SP]about-service-page
  -------------------------------- */
  #asp-about {
    margin-bottom: 40px;
  }
  #asp-about .sec-title {
    margin-bottom: 42px;
  }
  #asp-about .wrapper-03.pc-none {
    padding: 0 20px;
  }
  #asp-about .img {
    margin-bottom: 45px;
  }
  #asp-about .img img {
    width: 110px;
  }
  #asp-about .flex {
    flex-direction: column; 
    margin-bottom: 40px; 
  } 
  #asp-about .flex.reverse {
    flex-direction: column-reverse;
  }
  #asp-about .flex .flex-img,
  #asp-about .flex .flex-text {
    width: 100%;
  }
  #asp-about .flex .flex-img {
    padding-left: 20px;
  }
  #asp-about .flex .flex-img img {
    height: 350px;
  }
  #asp-about .flex .flex-text {
    padding: 32.5px 20px 0 20px;
  }
  #asp-about .pr-text {
    font-size: 0.875rem;
    margin-bottom: 32.5px;
  }
  #asp-about .flex .flex-text .text-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  #asp-about .flex .flex-text .text {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 11.5px;
  }
  #asp-about .flex .flex-text .text:last-child {
    margin-bottom: 0;
  }
  #prize {
    background-image: url(../img/about/sp/prize-dark.jpg);
    height: 240px;
    margin-bottom: 50px;
	  padding: 0 20px;
  }
  #prize .prize-text .title  {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  #prize .prize-text {
    max-width: 400px;
  }
  #prize .text-box .text {
    font-size: 0.85rem; 
line-height: 1.8;
  }
  #prize .text-box .text .sp {
    display: block;
  }
  #mortal {
    background-image: none;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #mortal .img {
    display: block;
    padding: 0 20px;
    width: 100%;
  }
  #mortal .img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 360px;
  }
  #mortal .text-box {
    position: static;
    max-width: 100%;
    margin: auto;
    height: 510px;
    padding: 40px 0px 45px 0px;
  }
  #mortal .text-box .title {
    font-size: 1.45rem;
    margin-left: 25px;
	  line-height: 40px;
  }
  #mortal .text-box .text {
    margin-left: 25px;
    font-size: 0.875rem;
  }
  #asp-service {
    padding: 50px 0 5px 0;
  }
  #asp-service .sec-title .title {
  margin-bottom: 34.5px;
  }
  #asp-company {
    padding-bottom: 50px;
  }
  #asp-company .pr {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 32px;
  }
  #asp-company .company-name {
    margin-bottom: 60px;
	  font-size: 1rem;
  }
  #asp-service .service-title {
    font-size: 1.3rem;
    margin-bottom: 15.5px;
  }
  .sec-title .title .text {
  font-size: 1.1rem;
}
  #asp-service .service-text {
    margin-bottom: 30.5px;
    font-size: 0.875rem;
  }
  #asp-company .sec-title {
    margin: 0 0 35px 0;
  }
  #asp-company .company-info {
    font-size: 0.875rem;
  }
  #asp-company .company-info dt,
  #asp-company .company-info dd {
    margin-bottom: 13.5px;
  }
  #asp-company .company-info dt {
    width: 30%;
  }
  #asp-company .company-info dd {
    width: 70%;
  }
}
@media screen and (max-width: 410px) {
  #about-us .text .sp-none-2 {
    display: none;
  }
}
@media screen and (max-width: 370px) {
  #mortal .text-box {
    padding-left: 15px;
    padding-right: 15px;
  }
  #mortal .text-box .title {
    font-size: 1.1rem;
    margin-left: 20px;
  }
  #mortal .text-box .text {
    margin-left: 15px;
    font-size: 0.87rem;
  }
}
@media screen and (max-width: 340px) {
  #footer .flex .menu {
    font-size: 0.9rem;
  }

}

