/* すべてのページに適応される設定　*/
html {
    font-size: 100%;
    font-family: sans-serif;
}
body {
    margin: 0 0 0 0;
    color: #1f1f1f;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
}
* {
    box-sizing: border-box;
}
p, li,td {
    line-height: 1.7;
}
a {
    color: #1f1f1f;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #1f1f1f;
    text-decoration: underline;
    opacity: 0.7;
}
a:active {
    color: #F07D34;
    text-decoration: underline;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
iframe {
    vertical-align: bottom;
}

/* すべてのページに適応　-ヘッダー */
.nav ul {
    margin: 30px 0 0 0;
    padding: 0;
    list-style-type: none;

    display: flex;
    justify-content: center;
    gap: 40px;
}
.nav a:link {
    color: #195cbf;
}
.nav a:visited {
    color: #154691;
}
.nav a:hover {
    color: #F07D34;
    text-decoration: underline;
}
.nav a:active {
    text-decoration: none;
}

#header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content:space-between;
    background: #fff;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
#header .navi ul {
    list-style-type: none;
}
#header .logo {
    width: 100%;
    max-width:220px;
    line-height: 0;
}
#heafer .logo a {
    display: block;
}
#header .logo img {
    padding: 0;
    margin: 0;
}
#header .navi .menu {
    display: flex;
    align-items: center;
    font-size: 14px;
}
#header .navi .menu > li {
    margin-left: 40px;
}
#header .navi .menu .menu-first {
    position: relative;
}
#header .navi .menu .menu-first span {
    cursor: pointer;
}
#header .navi .menu .menu-first span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 1px #1f1f1f;
    border-right: solid 1px #1f1f1f;
    margin: 0 auto;
    transform: rotate(135deg);
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
}
#hearder .navi .menu .menu-first .menu-second {
    width: 140px;
    background-color: #fff;
    padding: 10px 20px;
    position: absolute;
    top: 50px;
    left: 0;
    display: none;
}
#header .navi .menu .menu-first .menu-second li {
    margin-bottom: 10px;
}
#header .navi .menu .menu-contact a {
    background-color: #1f1f1f;
    border-radius: 30px;
    color: #fff;
    display: block;
    font-weight: 500;
    padding: 8px 30px;
    text-align: center;
}
#header .mask {
    display: none;
}


/* すべてのページに適応　-ヒーロー */
.hero {
    text-align: center;
}
.logo-esthe {
    text-align: center;
}

/* すべてのページに適応　-メイン */
.mainvisual {
    height: 600px;
    margin-bottom: 120px;
    position: relative;
}
.mainvisual .fade-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.mainvisual ul {
    list-style-type: none;
}
.mainvisual .fade-img li {
    width: 70%;
    position: absolute;
    right: 0;
    opacity: 0;
    animation: fade 15s infinite;
}
.mainvisual .fade-img li:nth-child(1) {
    animation-delay: 0s;
}
.mainvisual .fade-img li:nth-child(2) {
    animation-delay: 5s;
}
.mainvisual .fade-img li:nth-child(3) {
    animation-delay: 10s;
}
@keyframes fade {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    45% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.mainvisual .catchphrase {
    font-family: 'Zen Old Mincho' ,serif;
    font-size: 50px;
    text-shadow: 1px 1px 3px #fff;
    position: absolute;
    top: 250px;
    left: 6%;
}


main h2 {
    margin: 60px 0 20px 0;
    padding: 0 0 5px 0;
    color:#253a5a;
    font-size: 1.3rem;
}

.thera {
    text-align: center;
}
.shop-info {
    text-align: center;
}

/* company */
.section-title {
    color: rgba(51, 51, 51, 0.9);
    font-size: clamp(68px, 8vw, 130px);
    font-weight: 700;
    letter-spacing: 0.05em;
}    

.btn {
    max-width: 120px;
    background-color: #fff;
    display: block;
    border: solid 1px #1f1f1f;
    font-size: 12px;
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}
.btn::bofore {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    background-color: #1f1f1f;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease 0.3s; 
}
.btn:hover {
    background-color: #1f1f1f;
    color: #fff;
    opacity: 1;
}
.btn:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

.company {
    margin-bottom: 120px;
}
.company .section-title {
    margin: 0 0 -5vw 4vw;
    position: relative;
    z-index: 10;
}

.company {
    margin-bottom: 120px;
}
.company .section-title {
    margin: 0 0 -5vw 4vw;
    position: relative;
    z-index: 10;
}
.company .flex {
    display: flex;
    align-items: center;
}
.company .flex .img {
    width: 65%;
}
.company .flex .img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.company .flex .text {
    width: 35%;
    background-color: #fff;
    padding: 5% 0 5% 5%;
    margin-left: -8%;
}
.company .text .title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 24px;
    margin-bottom: 40px;
}
.company .text .description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* PRODUCTS */
.products {
    margin-bottom: 120px;
    position: relative;
}
.products::after {
    content: "";
    width: 70%;
    height: 300px;
    background-color: #fafafa;
    display: block;
    position: absolute;
    top: 6vw;
    right: 0;
    z-index: -10;
}
.products .text {
    width: 70%;
    padding: 0 5%;
    margin-left: auto;
}
.products .text .section-title {
    margin-bottom: 30px;
}
.products .text .description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 60px;
}
.products .products-list-area {
    display: flex;
    margin-bottom: 40px;
    overflow-x: hidden;
}
.products .products-list-area .products-list {
    display: flex;
    animation: slide-left 60s infinite linear both;
}
.products-list-area ul {
    list-style-type: none;
    padding: 0;
}
.products .products-list-area .products-list li {
    width: calc(100vw / 3);
}
.products .products-list-area .products-list li img {
    width:100%;
}
@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.products .btn {
    margin: 0 auto;
}
/* works */
.works {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
    position: relative;
}
.works::after {
    content: "";
    width: 70%;
    height: 70%;
    min-height: 420px;
    background-color: #fafafa;
    display: block;
    position: absolute;
    top: 6vw;
    left: 0;
    z-index: -10;
}
.works .text {
    padding: 0 6% 0 4%;
}
.works .text .section-title {
    margin-bottom: 40px;
}
.works .text .description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.works .text .btn {
    margin-top: 30px;
}
.works .works-list {
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-top: 170px;
}
.works .works-list li {
    max-width: 500px;
}
.works ul {
    list-style-type: none;
    padding: 0;
}
/* FAQ&CONTACT */
.faq-contact {
    display: flex;
    justify-content: space-between;
    padding: 0 5% 80px;
}    
.faq-contact .item {
    width: 48%;
    position: relative;
}
.faq-contact .item::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 50%, rgba(0,0,0,1));
    position: absolute;
    top: 0;
    left: 0;
}
.faq-contact .item .title {
    color: #fff;
    position: absolute;
    left: 25px;
    bottom: 20px;
}
.faq-contact .item .title .en {
    display: block;
    font-size: 4vw;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.faq-contact .item .title .ja {
    display: block;
    font-size: 14px;
}
.faq-contact .item .arrow {
    width: clamp(85px, 10vw, 140px);
    position: absolute;
    right: 25px;
    bottom: 20px;
}
.faq-contact .item .arrow img {
    width: 100%;
}

/* footer */
#footer {
    display: flex;
    justify-content: space-between;
    background-color: #1f1f1f;
    color: #fff;
    padding: 80px 5%;
}
#footer a {
    color: #fff;
}
#footer .info-area {
    width: 35%;
}
#footer .info-area .logo {
    width: 100%;
    max-width: 220px;
    display: block;
    line-height: 0;
    margin-bottom: 30px;
}
#footer .info-area .info {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}
#footer .info-area .copyright {
    font-size: 10px;
}
#footer .menu-area {
    width: 65%;
    display: flex;
    justify-content: flex-end;
}
#footer .menu-area .menu-col {
    width: 100%;
    max-width: 130px;
}
#footer .menu-area .menu-col .menu-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 30px;
}
#footer .menu-area .menu-col .menu-list li {
    font-size: 14px;
    margin-bottom: 20px;
}
#footer .menu-area .menu-col .menu-list li::before {
    content: "-";
    margin-right: 10px;
}
#footer ul {
    list-style-type: none;
    padding: 0;
}

/* COMPANY */
.page-header {
    margin-bottom: 80px;
    position: relative;
}
.page-header .img {
    height: 100%;
}
.page-header .img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.page-header .page-title-area {
    width: 100%;
    max-width: 400px;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(51, 51, 51, 0.9);
    color: #fff;
    padding: 0 4%;
    position: absolute;
    top: 0;
    left: 0;
}
.page-header .page-title-area .page-title .en {
    display: block;
    font-size: 46px;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.page-header .page-title-area .page-title .ja {
    display:block;
    font-size: 14px;
    font-weight: 400;
}    

/* products */
.tab-list {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: 40px;
}
.tab-list li {
  width: 100%;
  max-width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: solid 1px #1f1f1f;
  border-left: solid 1px #1f1f1f;
  border-right: solid 1px #1f1f1f;
  cursor: pointer;
  font-size: 14px;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.tab-list li:last-child {
  margin-right: 0;
}
.tab-list li:hover {
  background-color: #1f1f1f;
  color: #fff;
}
.tab-list li.active {
  background-color: #1f1f1f;
  color: #fff;
}

.products-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 120px;
  display: none;
}
.products-list.active {
  display: grid;
}
.products-list li {
  position: relative;
}
.products-list li .info {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.6s ease;
}
.products-list li:hover .info {
  opacity: 1;
}
.products-list li .info .name {
  font-size: 18px;
  margin-bottom: 5px;
}
.products-list li .info .price {
  font-size: 14px;
}

/* works */
.head-text {
    font-size: 15px;
    line-height: 2;
    padding: 0 20px;
    margin-bottom: 80px;
    text-align: center;
}
.works-list {
    margin-bottom: 120px;
}
.works-list li {
    display: flex;
    align-items: center;
    border-top: solid 1px #1f1f1f;
}
.works-list li:last-child {
    border-bottom: solid 1px #1f1f1f;
}
.works-list li .img {
    width: 50%;
}
.works-list li .img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.works-list li .text {
    width: 50%;
    padding: 0 5%;
}
.works-list li .text .name {
    font-weight: 500;
    margin-bottom: 40px;
}
.works-list li .text .info {
    margin-bottom: 40px;
}
.works-list li .text .info .item {
    display: flex;
    font-size: 14px;
    margin-bottom: 5px;
}
.works-list li .text .info .item dt {
    margin-right: 5px;
}
.works-list li .text .modal-open {
    width: 130px;
    background-color: #1f1f1f;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    padding: 10px 15px;
    position: relative;
}
.works-list li .text .modal-open img {
    max-width: 16px;
    position: absolute;
    top: 11px;
    right: 11px;
}

.works-list li .modal-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 50%);
    padding: 80px 20px;
    text-align: center;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 20;
}
.works-list li .modal-container.active {
    opacity: 1;
    visibility: visible;
}
.works-list li .modal-content {
    width: 100%;
    max-width: 860px;
    background-color: #fff;
    display: inline-block;
    padding: 80px;
    position: relative;
}
.works-list li .modal-content .modal-name {
    margin-bottom: 20px;
    text-align: left;
}
.works-list li .modal-content .modal-img img {
    margin-bottom: 20px;
}
.works-list li .modal-content .modal-close {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}
.works-list li .modal-content .modal-close img {
    max-width: 25px;
}

/* faq */
.faq-list {
    max-width: 1280px;
    padding: 0 20px;
    margin: 0 auto 120px;
}
.faq-list .item {
    border-top: solid 1px #1f1f1f;
}
.faq-list .item:last-child {
    border-bottom: solid 1px #1f1f1f;
}

.faq-list .item dt {
    display: flex;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.8;
    padding: 40px 0;
    position: relative;
}
.faq-list .item dt::before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #1f1f1f;
    position: absolute;
    top: 55px;
    right: 0;
}
.faq-list .item dt::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #1f1f1f;
    position: absolute;
    top: 48px;
    right: 6px;
    left: auto;
}
.faq-list .item dt.active::after {
    content: none;
}
.faq-list .item dt .question {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #1f1f1f;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    margin-right: 100px;
}

.faq-list .item dd {
    display: flex;
    font-size: 15px;
    padding-bottom: 40px;
    line-height: 1.8;
}
.faq-list .item dd a {
    text-decoration: underline;
}
.faq-list .item dd .answer {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: solid 1px #1f1f1f;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 100px;
}
/* contact */
.line-contact {
    text-align: center;
    margin-top: 250px;
}


/* すべてのページに適応　-フッター */
.gotop {
    text-align: center;
}
.line {
    text-align: center;
}
/* 個別のスタイル */
/* index.html */
.logo-ranking {
    text-align: center;
}
.shop-info ul li {
    border-top: 2px solid #232121;
    padding: 20px;
}
.rankingimg {
    text-align: center;
}
.zenkokuimg {
    text-align: center;
}
/* お問い合わせ */
.line {
    text-align: center;
}

/* セラピストの写真小さく */
.thera {
    height: 150px;
    width: 150px;
}

/* company.css */
ul {
    list-style-type: none;
}
.wrapper {
    max-width:1000px;
    padding: 0 20px;
    margin: 0 auto;
}

.pagelink-list {
    display: flex;
    margin-bottom: 80px;
}
.pagelink-list li {
    width: calc(100% / 3);
    border-left: solid 1px #1f1f1f;
    font-size: 14px;
    text-align: center;
    position: relative;
}
.pagelink-list li:last-child {
    border-right: solid 1px #1f1f1f;
}
.pagelink-list li::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #1f1f1f;
    margin: 0 auto;
    position:absolute;
    bottom: -10px;
    left: 0;
    right: 0;
}
pagelink-list li a {
    display: block;
}

.section-title {
    text-align: center;
}
.inner {
    text-align: center;
}

/* 掲載までの流れ */
.flow-step {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #bbb;
    border-radius: 0.25rem;
    margin: 1rem 0;
    background: #fff;
}
.step-num {
    text-align: center;
    font-weight: bold;
    margin-right: 0.5rem;
    line-height: 1.1;
    border-radius: 6px;
    padding: 0.5rem;
}
.step-num span {
    font-size: 2rem;
    letter-spacing: -1px;
    font-weight: bold;
}
.step-box {
    border-left: 1px dashed #bbb;
    padding: 1rem 0 1rem 0.5rem;
}
.step-box-ttl {
    font-size: 1.25rem;
    font-weight: bold;
    background: -webkit-linear-gradient(transparent 50%, #ff5081 0%);
}
.step-box-text {
    text-align: center;
}
.section-wrap2 {
    padding: 1.25rem 1rem;
}

/* service */
#service {
    margin-bottom: 120px;
}
#service .item {
    display: flex;
    align-items: center;
    box-shadow: 5px 5px 25px #ccc;
    margin-bottom: 40px;
}
#service .item.store {
    flex-direction: row-reverse;
}
#service .item .text {
    width: 44%;
    padding: 1% 5%;
}
#service .item .text .title-ja {
    font-size: 12px;
    margin-bottom: 5px;
}
#service .item .text .title-en {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}
#service .item .text .description {
    font-size: 14px;
    margin-bottom: 20px;
}
#service .item .text .view-more {
    font-size: 14px;
    text-align: right;
    text-decoration: underline;
}
#service .item .img {
    width: 56%;
    overflow: hidden;
}
#service .item.interior .img {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
#service .item.store .img {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
#service .item .img img {
    transition: transform 0.8s ease;
}
#service .item:hover .img img {
    transform: scale(1.1);
}
/* plan */
.price {
    padding-bottom: 2rem;
}
.section-wrap3 {
    width: 100%;
    max-width: 1200px;
    margin: 5rem auto 0;
    padding: 1rem;
}
.title-box {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1.3;
    padding: 0 0.75rem 0.5rem;
}
.title-sub {
    font-size: 18px;
    text-align: center;
    font-weight: 900;
}
.price3 {
    background: -webkit-linear-gradient(transparent 50%, #fdff00 0%);
}
.price-dd {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
}
.price3box {
    display: flex;
    width: 100%;
    align-items: flex-end;
    flex-wrap: wrap;
}
.price3a {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding-bottom: 1rem;
    padding-top: 1rem;
}
.price3a span {
    font-size: 2rem;
}
.price3b {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
}
.price3b span {
    font-size: 1rem;
}
.price3-image {
    width: 100%;
    padding-left: 1rem;
}




/* ----------タブレット-------------*/
@media screen and (max-width: 1024px) {
     main {
        padding-top: 60px;
    }
    #header {
        height: 60px;
    }
    #header .logo {
        max-width: 180px;
    }

    #header .navi {
        width: 80%;
        height: 100vh;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: -120%;
        z-index: 20;
        transition: all 0.6s;
    }
    #header .navi.active {
        left: 0;
    }
    #header .navi .menu {
        width: 100%;
        height: 100vh;
        flex-direction: column;
        padding: 60px 0;
        overflow: auto;
    }
    #header .navi .menu > li {
        width: 100%;
        border-top: solid 1px #1f1f1f;
        margin-left: 0;
    }
    #header .navi .menu > li a {
        width: 100%;
        display: block;
        padding: 20px;
    }
    #header .navi .menu .menu-first span {
        display: block;
        padding: 20px;
    }
    #header .navi .menu .menu-first span::before {
        content: "";
        width: 15px;
        height: 1px;
        background-color: #1f1f1f;
        position: absolute;
        top: 30px;
        right: 20px;
    }
    #header .navi .menu .menu-first span::after {
        width: 1px;
        height: 15px;
        background-color: #1f1f1f;
        border: none;
        transform: none;
        position: absolute;
        top: 23px;
        right: 26px;
        left: auto;
    }
    #header .navi .menu .menu-first span.active::after {
        content: none;
    }
    #header .navi .menu .menu-first .menu-second {
        width: 100%;
        position: static;
        padding: 0 0 0 40px;
    }
    #header .navi .menu .menu-first .menu-second li {
        border-top: solid 1px #eee;
        margin-bottom: 0;
    }

    #header .hamburger {
        width: 50px;
        height: 50px;
        cursor: pointer;
        position: fixed;
        top: 15px;
        right: 10px;
        z-index: 30;
    }
    #header .hamburger span {
        width: 30px;
        height: 1px;
        background-color: #1f1f1f;
        display: inline-block;
        position: absolute;
        left: 10px;
        transition: all 0.4s;
    }
    #header .hamburger.active span {
        background-color: #fff;
    }
    #header .hamburger span:nth-of-type(1) {
        top: 16px;
    }
    #header .hamburger span:nth-of-type(2) {
        top: 25px;
    }
    #header .hamburger span:nth-of-type(3) {
        top: 34px;
    }
    #header .hamburger.active span:nth-of-type(1) {
        top: 24px;
        transform: rotate(-45deg);
    }
    #header .hamburger.active span::nth-of-type(2) {
        opacity: 0;
    }
    #header .hamburger.active span::nth-of-typr(3) {
        top: 24px;
        transform: rotate(45deg);
    }

    #header .mask.active {
        width: 100%;
        height: 100%;
        background: #000;
        display: block;
        opacity: 0.8;
        position: fixed;
        top: 0;
        left: 0;
    }

    html {
        scroll-padding: 60px;
    }
}

/* -------------モバイル対応--------------*/
@media (max-width: 767px) {
    main {
        padding: 0;
    }

    /* index.html */
    .logo-ranking {
        padding: 0 ;
    }
    
    /* 対応可能な媒体 */
    .shop-info ul {
        padding: 30px 0 0 0;
        list-style-type: none;
    }

    /* 基本情報 */
    .news1 ul {
        padding: 30px 0 0 15px;
    }

    /* メインヴィジュアル */
    .mainvisual {
        height: 400px;
        margin-bottom: 60px;
    }
    .mainvisual .fade-img img {
        height: 400px;
    }
    .mainvisual .fade-img li {
        width: 100%;
    }
    .mainvisual .catchphrase {
        color: #fff;
        text-shadow: 1px 1px 1px #777;
        font-size: 20px;
        top: 300px;
        left: 6%;
    }
    #header .logo img {
    padding: 0;
    margin: 0;
    }
    /* company */
    .section-title {
        font-size: 12vw;
    }

    .company {
        margin-bottom: 60px;
    }
    .company .section-title {
        margin: 0 0 -7vw;
        text-align: center;
    }
    .company .flex {
        flex-direction: column;
    }
    .company .flex .img {
        width: 100%;
    }
    .company .flex .img img {
        height: 300px;
    }
    .company .flex .text {
        width: 100%;
        margin-left: 0;
        padding: 20px 20px 0;
    }
    .company .flex .text .title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .company .flex .text .description {
        margin-bottom: 20px;
    }
    /* products */
    .products {
        margin-bottom: 60px;
    }
    .products::after {
        width: 100%;
        height: 250px;
        top: 10vw;
    }
    .products .text {
        width: 100%;
        padding: 0 20px;
    }
    .products .text .section-title {
        text-align: center;
    }
    .products .text .description {
        margin-bottom: 20px;
    }
    .products .products-list-area {
        margin-bottom: 20px;
    }
    /* works */
    .works {
        flex-direction: column;
        margin-bottom: 60px;
    }
    .works::after {
        width: 100%;
        height: 90%;
        min-height: auto;
        top: 10vw;
    }
    .works .text {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    .works .text .section-title {
        margin-bottom: 30px;
        text-align: center;
    }
    .works .works-list {
        margin-top: 0;
        margin-left: 0;
    }
    /* faq */
    .faq-contact {
        flex-direction: column;
        padding: 0 20px 40px;
    }
    .faq-contact .item {
        width: 100%;
        margin-bottom: 20px;
    }
    .faq-contact .item .title .en {
        font-size: 8vw;
    }

    /* footer */
    #footer {
        flex-direction: column-reverse;
        padding: 60px 20px;
    }
    #footer .info-area {
        width: 100%;
    }
    #footer .menu-area {
        width: 100%;
        justify-content: center;
        margin-bottom: 40px;
    }
    #footer .info-area {
        text-align: center;
    }
    #footer .info-area .logo {
        margin: 0 auto 30px;
    }
    /* compamy */
    .page-header {
        margin-bottom: 40px;
    }
    .page-header .img img {
        height: 240px;
    }
    .page-header .page-title-area {
        height: 70px;
        top: auto;
        bottom: 0;
    }
    .page-header .page-title-area .page-title .en {
        font-size: 24px;
    }
    .page-header .page-title-area .page-title .ja {
        font-size: 12px;
    }
    .pagelink-list {
        margin-bottom: 40px;
    }
    .pagelink-list li {
        font-size: 12px;
    }

    #service {
        margin-bottom: 60px;
    }
    #service .item {
        flex-direction: column;
        margin-bottom: 20px;
    }
    #service .item.store {
        flex-direction: column;
    }
    #service .item .text {
        width: 100%;
        padding: 20px;
    }
    #service .item .text .title-en {
        font-size: 26px;
    }
    #service .item .img {
        width: 100%;
    }
    #service .item.interior .img,
    #service .item.store .img {
        clip-path: none;
    }
    /* products */
    .tab-list {
    margin-bottom: 10px;
    }
    .tab-list li {
    font-size: 10px;
    margin-right: 5px;
    }
    .products-list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 60px;
    }
    /* works */
    .pc {
        display: none;
    }
    .head-text {
        margin-bottom: 40px;
    }
    .works-list {
        margin-bottom: 60px;
        margin-left: -40px;
    }
    .works-list li {
        flex-direction: column;
    }
    .works-list li .img {
        width: 100%;
    }
    .works-list li .text {
        width: 100%;
        padding: 20px;
    }
    .works-list li .modal-content {
        padding: 40px 20px;
    }
    /* faq */
    .faq-list {
        margin: 0 auto 60px;
    }
    .faq-list .item {
        padding: 20px;
    }
    .faq-list .item dt {
        padding: 30px 0;
    }
    .faq-list .item dt::before {
        top: 45px;
        right: -20px;
    }
    .faq-list .item dt::after {
        top: 38px;
        right: -14px;
    }
    .faq-list .item dt .question {
        margin-right: 20px;
    }
    .faq-list .item dd {
        padding-bottom: 30px;
    }
    .faq-list .item dd .answer {
        margin-right: 20px;
    }
}