@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

/* ---------------------------
  基本設定
  ----------------------------- */
html {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

html {
    --txt-color-00: #fff;
    --txt-color-01: #000;
    --txt-color-02: #ffd200;
    --back-color-00: #fff;
    --back-color-01: #000;
    --back-color-02: #ffd200;
    
    --txt-color-03: #20325f;
    --back-color-03: #20325f;    
}

.serif {
    font-family: "Noto Serif JP", serif;
}

a {
    width: 100%;
    height: 100%;
    display: block;
}

.list-inner {
    height: 100%;
}

/* ---------------------------
  共通デザイン
  ----------------------------- */
.sp-block {
    display: none;
}

.sp-none{
  display: inline;
}

@media (max-width: 1024px) {
    .tb-inner {
        width: 96%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 599px) {
    .sp-inner {
        width: 96%;
        margin-left: auto;
        margin-right: auto;
    }

    .sp-block {
        display: block;
    }
    
    .sp-none{
        display: none;
    }
}

.section_medium {
    padding: 50px 0;
}

.section_large {
    padding: 100px 0;
}

.section_larger {
    padding: 150px 0;
}

.section_top_largest {
    padding-top: 200px;
    padding-bottom: 150px;
}

.section_bottom_largest {
    padding-top: 150px;
    padding-bottom: 200px;
}

.section_largest {
    padding-top: 200px;
    padding-bottom: 200px;
}

@media(max-width:1024px) {
    .section_larger {
        padding: 100px 0;
    }
}

@media (max-width: 599px) {
    .section_medium {
        padding: 25px 0;
    }

    .section_larger {
        padding: 75px 0;
    }

    .section_bottom_largest {
        padding-top: 75px;
        padding-bottom: 75px;
    }
}

.deco01wrap {
    position: relative;
}

.deco01 {
    max-width: 1200px;
    border-bottom: 10px solid var(--txt-color-02);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.deco02wrap {
    position: relative;
}

.deco02 {
    width: 75px;
    position: absolute;
    bottom: -40%;
    right: 0;
    z-index: 1;
}

@media(max-width:599px) {
 .deco02 {
    bottom: -30%;
}   
}

.deco03wrap {
    position: relative;
}

.deco03{
    width: 200px;
    height: 120px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

@media(max-width:1024px) {
.deco03{
    width: 180px;
}    
}

@media(max-width:599px) {
.deco03{
    width: 150px;
}    
}

.skew01 {
    -webkit-transform: skewY(-5deg);
    transform: skewY(-5deg);
}

.skew01-inner {
    -webkit-transform: skewY(5deg);
    transform: skewY(5deg);
}

.bgimage01 {
    background-image: url('/import/tenant_1/153.121.72.82/html/images/bgwhite.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.7);

    background-blend-mode: lighten;
}

.bgimage02 {
    background-image: url('/import/tenant_1/153.121.72.82/html/images/bgblack02.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.5);

    background-blend-mode: lighten;
}

.bgimage03 {
    background-image: url('/import/tenant_1/153.121.72.82/html/images/bgblack.webp');
    background-size: contain;
    background-repeat: repeat;
    background-position: top;
    background-blend-mode: lighten !important;
    background-color: rgba(255, 255, 255, 0.5);
}

.bgc01 {
    background-color: var(--back-color-01);
}

.bgc_gray {
    background-color: #f9f7f2;
}

/* ---------------------------
  共通化部分（ヘッダー、ナビ、フッターなど）
  ----------------------------- */
h1 {
    padding: 1em 0;
    font-size: 12px;
}

@media (max-width: 1024px) {
    h1 {
        padding: 0.5em 0;
    }
}

@media (max-width: 599px) {
    h1 {
        padding: 0.25em 0;
    }
}

.logo {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 42px;
    letter-spacing: 0.1em;
    text-align: center;
}

.logo .sub {
    font-size: 30%;
}

.logo.yellow{
  font-size: 24px;
  width: 250px;
}

.logo.yellow a{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo.yellow img{
  width: 35%;
}

.logo.yellow .logotext{
  width: 65%;
}

@media (max-width: 1024px) {
    .logo {
        font-size: 36px;
        text-align: left;
    }

    .nav .logo {
        text-align: center;
    }
}

.tel a {
    padding-left: 1.5em;
    font-size: 30px;
    letter-spacing: 0.075em;
    position: relative;
}

.tel.white a {
    color: var(--txt-color-00);
}

.tel.midium a {
    font-size: 40px;
}

.tel.large a {
    font-size: 60px;
}

.tel.center {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tel a::before {
    content: "";
    width: 1.2em;
    height: 1.2em;
    display: block;
    border-radius: 100%;
    background-image: url('/import/tenant_1/153.121.72.82/html/images/tel.webp');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--back-color-02);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
}

@media(max-width:1024px){
    .tel.center.tbcenter {
        margin-left: 0;
    }    
}

@media (max-width: 599px) {
    .tel a {
        font-size: 18px;
    }
    
    .tel.midium a {
      font-size: 36px;
    }
    
    .tel.large a {
        font-size: 36px;
    }

    .tel.center {
        margin-left: 0;
    }

    .tel.center.none {
        margin-left: auto;
    }
    
    header .tel a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0;
    }
    
    header .tel a::before {
        position: initial;
        transform: none;
        margin-right: 5px;
}
}

.contact-btn a {
    max-width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: flex-end;
    -ms-flex-align: end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1em;
    background-color: var(--back-color-02);
}

.contact-btn a::before {
    content: "";
    width: 1.5em;
    height: 1.5em;
    display: block;
    margin-right: 0.5em;
    background-image: url('/import/tenant_1/153.121.72.82/html/images/contact.webp');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.pattern-b .contact-btn a {
    color: var(--txt-color-00);
    background-color: var(--back-color-01);
}

.pattern-b .contact-btn a::before {
    background-image: url('/import/tenant_1/153.121.72.82/html/images/contact-white.webp');
}

@media (max-width: 599px) {
    .contact-btn a {
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        font-size: 11px;
        flex-direction: column;
        padding: 0.5em;
    }
}

.btn-wrap>div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.line-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1em 1.5em;
    font-size: 20px;
    color: var(--txt-color-00);
    letter-spacing: 0.25em;
    background-color: #00b900;
}

.line-btn a::before {
    content: "\f3c0";
    display: block;
    margin-right: 10px;
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    font-size: 2em;
}

.contact-btn02 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1em 1.5em;
    font-size: 20px;
    letter-spacing: 0.25em;
    background-color: var(--back-color-02);
}

.contact-btn02 a::before {
    content: "";
    width: 2em;
    height: 2em;
    display: block;
    margin-right: 10px;
    background-image: url('/import/tenant_1/153.121.72.82/html/images/contact.webp');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

footer .contact-btn02 a {
    padding: 2em 1.5em;
    font-size: 18px;
}

.simulation-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1em 1.5em;
    font-size: 18px;
    letter-spacing: 0.25em;
    background-color: var(--back-color-00);
}

.simulation-btn a::before {
    content: "";
    width: 2em;
    height: 2em;
    display: block;
    margin-right: 10px;
    background-image: url('/import/tenant_1/153.121.72.82/html/images/simu.webp');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

footer .simulation-btn a {
    padding: 2em 1.5em;
}

@media (max-width: 1024px) {
    .line-btn a {
        font-size: 14px;
    }

    .contact-btn02 a {
        font-size: 14px;
    }

    .simulation-btn a {
        font-size: 12px;
    }
    
    footer .contact-btn02 a {
        font-size: 16px;
    }    
    
    footer .simulation-btn a {
        font-size: 16px;
    }
    
    footer .btn-wrap>div {
      flex: auto;
      width: 100%;
    }
    
    footer .btn-wrap>div +div {
      margin-top: 20px;
    }
}

@media (max-width: 599px) {
    .btn-wrap>div {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    }

    .btn-wrap>div+div {
        margin-top: 1em;
    }

    .simulation-btn a {
        font-size: 14px;
    }
    
    footer .contact-btn02 a {
        padding: 1em;
    }    
    
    footer .simulation-btn a {
        padding: 1em;
    }
}

/* ---------------------------
  タイトル
  ----------------------------- */
.title01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 100px;
    font-family: "Noto Serif JP", serif;
    font-size: 50px;
    color: var(--txt-color-01);
    text-align: center;
}

.title01.mini {
    font-size: 42px;
}

.title01.mb0 {
    margin-bottom: 0;
}

.title01.mb50 {
    margin-bottom: 50px;
}

.title01::after {
    content: "";
    width: 200px;
    height: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-image: url('/import/tenant_1/153.121.72.82/html/images/deco00.webp');
    background-size: contain;
    background-repeat: no-repeat;
}

.title01.white {
    color: var(--txt-color-00);
}

.title01.left {
    text-align: left;
}

.title01.left::after {
    margin-left: 0;
}

.title01.left::before {
    margin-left: 0;
    margin-right: auto;
}

/* .title01 .strong {
    display: contents;
    font-size: 1.5em;
} */

@media (max-width: 1024px) {
    .title01 {
        font-size: 36px;
    }

    .title01.mini {
        font-size: 32px;
    }
}

@media (max-width: 599px) {
    .title01 {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .title01.mini {
        font-size: 28px;
    }

    .title01.mb0 {
        margin-bottom: 10px;
    }
}

.title02 {
    min-width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding-top: 50px;
    font-family: "Noto Serif JP", serif;
    font-size: 50px;
    letter-spacing: 0.2em;
    -ms-writing-mode: tb-lr;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    position: relative;
    z-index: 1;
}

.title02::before {
    content: "";
    width: 150px;
    height: 150px;
    display: block;
    background-image: url('/import/tenant_1/153.121.72.82/html/images/deco02.webp');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

.title02 > span {
    position: relative;
    z-index: 1;
}

@media(max-width:1024px) {
    .title02 {
        font-size: 36px;
    }
}

@media (max-width: 599px) {
    .title02 {
        min-width: 100px;
        font-size: 28px;
    }

    .title02::before {
        width: 100px;
        height: 100px;
    }
}

.title03 {
    min-width: 500px;
    min-height: 90px;
    margin: 25px 0 50px 0;
    font-size: 18px;
    letter-spacing: 0.1em;
    background-image: url('/import/tenant_1/153.121.72.82/html/images/deco03.webp');
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}

.title03.md {
    font-size: 20px;
}

.title03 .title03-inner {
    position: absolute;
    bottom: 1em;
    left: 1em;
    z-index: 1;
}

.title03 .title03-inner .strong {
    font-size: 1.5em;
}

@media (max-width: 599px) {
    .title03 {
        margin: 25px 0 25px 0;
    }
}

.title04 {
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    letter-spacing: 0.1em;
}

@media(max-width:1024px){
    .title04 {
        font-size: 24px;
    }    
}

@media (max-width: 599px) {
    .title04 {
        font-size: 20px;
    }
}

.title05 {
    padding-top: 4em;
    font-size: 24px;
    -ms-writing-mode: tb-lr;
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    position: relative;
}

.title05::before {
    content: "";
    width: 2px;
    height: 3.5em;
    display: block;
    background-color: var(--back-color-01);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
}

.title06 {
    margin-bottom: 40px;
}

.title06 span {
    display: inline-block;
    margin-right: 10px;
    padding: 10px;
    font-family: "Noto Serif JP", serif;
    font-size: 60px;
    line-height: 1;
    background-color: var(--back-color-02);
}

@media(max-width:599px) {
.title06 span {
    font-size: 40px;
}   
}

.title07 {
    margin-top: 50px;
    margin-bottom: 100px;
    font-family: "Noto Serif JP", serif;
    font-size: 50px;
    text-align: center;
    position: relative;
}

.title07 .text {
    position: relative;
    z-index: 1;
}

.title07 .img-wrap {
    width: 150px;
    height: 150px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
}

.title07.white {
    color: #fff; 
}

@media (max-width: 1024px) {
    .title07 {
        font-size: 36px;
    }
}

@media (max-width: 599px) {
    .title07 {
        font-size: 28px;
    }
}

/* ---------------------------
  ボタン
  ----------------------------- */
.btn a:hover{
    opacity: 1;
}

.btn {
    margin-top: 50px;
}

.btn.mt100 {
    margin-top: 100px;
}

.btn.mt0 {
    margin-top: 0;
}

.btn a {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 599px) {
    .btn {
        margin-top: 20px;
    }
}

button {
    background-color: transparent;
}

.btn01 {
    display: block;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    outline: none;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
    position: relative;
}

.btn01 a {
    width: 200px;
    padding: 1em;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--txt-color-00);
    letter-spacing: 0.2em;
    text-align: center;
    background-color: transparent;
    border: 1px solid var(--txt-color-00);
    position: relative;
}

.btn01 a:hover span {
    color: var(--txt-color-01);
}

.btn01 a span {
    color: var(--txt-color-00);
    position: relative;
    z-index: 3;
}

.btn01 a:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--back-color-00);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.btn01 a:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

.btn01 a::after {
    content: "";
    width: 1em;
    height: 1em;
    display: block;
    background-image: url("/import/tenant_1/153.121.72.82/html/images/arrow.webp");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: 1em;
    z-index: 2;
}

.btn01 a:hover:after {
    background-image: url("/import/tenant_1/153.121.72.82/html/images/arrow02.webp");
}

.btn01.white a {
    color: var(--txt-color-00);
}

.btn02 {
    display: block;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    outline: none;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
    position: relative;
}

.btn02 a {
    width: 300px;
    padding: 1.5em 1em;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--txt-color-00);
    letter-spacing: 0.2em;
    text-align: center;
    background-color: var(--back-color-01);
    position: relative;
}

.btn02 a:hover span {
    color: var(--txt-color-01);
}

.btn02 a span {
    color: var(--txt-color-00);
    position: relative;
    z-index: 3;
}

.btn02 a:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--back-color-00);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.btn02 a:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

.btn02 a::after {
    content: "";
    width: 1em;
    height: 1em;
    display: block;
    background-image: url("/import/tenant_1/153.121.72.82/html/images/arrow.webp");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: 1em;
    z-index: 2;
}

.btn02 a:hover:after {
    background-image: url("/import/tenant_1/153.121.72.82/html/images/arrow02.webp");
}

.btn02.mini a {
    width: 240px;
    padding: 1em;
}

@media (max-width: 599px) {
    .btn02 a {
        width: 240px;
    }
}

.btn03 {
    display: block;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    outline: none;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
    position: relative;
}

.btn03 a,
.btn03 button{
    width: 300px;
    padding: 1.5em 1em;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--txt-color-01);
    border: 1px solid var(--txt-color-01);
    letter-spacing: 0.2em;
    text-align: center;
    background-color: transparent;
    position: relative;
}

.btn03 a:hover span,
.btn03 button:hover span{
    color: var(--txt-color-00);
}

.btn03 a span,
.btn03 button span{
    color: var(--txt-color-01);
    position: relative;
    z-index: 3;
}

.btn03 a:before,
.btn03 button:before{
    content: "";
    width: 100%;
    height: 100%;
    background: var(--back-color-01);
    color: var(--txt-color-00);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.btn03 a:hover:before,
.btn03 button:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

.btn03 a::after,
.btn03 button::after {
    content: "";
    width: 1em;
    height: 1em;
    display: block;
    background-image: url("/import/tenant_1/153.121.72.82/html/images/arrow02.webp");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: 1em;
    z-index: 2;
}

.btn03 a:hover:after,
.btn03 button:hover:after{
    background-image: url("/import/tenant_1/153.121.72.82/html/images/arrow.webp");
}

.btn03.center a {
    margin-left: auto;
    margin-right: auto;
}

.btn03.white a {
    color: var(--txt-color-00);
    border: 1px solid var(--txt-color-00); 
}

.btn03.white a:hover {
    border: 1px solid var(--txt-color-01); 
}

.btn03.white a span {
    color: var(--txt-color-00);
}

.btn03.white a::after {
    background-image: url('/import/tenant_1/153.121.72.82/html/images/arrow.webp');
}

.btn03.back a::after,
.btn03.back button::after {
    -webkit-transform: translate(0, -50%) rotate(180deg);
    transform: translate(0, -50%) rotate(180deg);
    left: 1em;
    right: auto;
}

@media (max-width: 599px) {
    .btn03 a {
        width: 240px;
    }

    .btn03 button {
        width: 150px;
        padding: 1em;
    }
}

/* ---------------------------
  共通化部分（ヘッダー、ナビ、フッターなど）
  ----------------------------- */
/* header */
header {
    width: 100%;
    background-color: var(--back-color-00);
    position: relative;
    z-index: 20;
}

.head-info li+li {
    margin-left: 1.5em;
}

.nav {
    padding: 1.5em 0;
}

.nav li+li {
    margin-left: 50px;
}

.nav li.last-item a {
    padding: 0 0 0 1em;
}

.toggle {
    width: 56px;
    height: 56px;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 260;
}

.toggle.active {
    right: 10px;
}

.toggle .bar {
    width: 28px;
    height: 2px;
    display: block;
    margin-top: -1px;
    padding: 0;
    text-indent: 9999px;
    background: var(--back-color-01);
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.toggle .bar:before {
    content: "";
    width: 28px;
    height: 2px;
    display: block;
    background: var(--back-color-01);
    position: absolute;
    top: -10px;
    left: 0;
}

.toggle .bar:after {
    content: "";
    width: 28px;
    height: 2px;
    display: block;
    background: var(--back-color-01);
    position: absolute;
    top: 10px;
    left: 0;
}

.toggle.active .bar {
    background-color: var(--back-color-00);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.toggle.active .bar:after,
.toggle.active .bar:before {
    background-color: var(--back-color-00);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
    left: 0;
}

/* ドロップダウンメニュー */
.drop-menu {
    position: relative;
}

.drop-menu-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
}

.menu-item:hover .drop-menu-list {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

.menu-item:hover {
    cursor: pointer;
}

.drop-menu-list li+li {
    margin-left: 0;
}

.drop-menu-list li a {
    padding: 0.5em 1em;
    background-color: var(--back-color-00);
}

.overlay {
    width: 100%;
    height: 100vh;
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}

.overlay.active {
    display: block;
}

/* ヘッダーが固定された時 */
.fixed header {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 0 5px 0 #999;
}

.fixed .nav {
    padding: 0.5em 0;
}

.fixed .logo {
    font-size: 36px;
    -webkit-transition: linear 0.3s;
    transition: linear 0.3s;
}

.fixed .logo.yellow {
    font-size: 24px;
    width: 250px;
}

@media (max-width: 1024px) {
    header {
        padding-bottom: 0.5em;
    }

    .nav .toggle {
        display: block;
    }

    .nav {
        width: 50%;
        height: 100vh;
        display: block;
        overflow-y: scroll;
        margin: 0;
        padding: 50px 50px 100px;
        color: var(--txt-color-00);
        background-color: var(--back-color-01);
        -webkit-transition: right ease 0.5s;
        transition: right ease 0.5s;
        position: fixed;
        top: 0;
        right: -90%;
        z-index: 250;
    }

    .nav li {
        margin-bottom: 1em;
    }

    .nav li:nth-child(2) {
        margin-bottom: 1.5em;
    }

    .nav li+li {
        margin-left: 0;
    }

    .drop-menu-list {
        width: 100%;
        visibility: visible;
        opacity: 1;
        position: initial;
    }

    .drop-menu-list li a {
        padding: 0;
        background-color: transparent;
    }

    .nav .drop-menu-list li:nth-child(2) {
        margin-bottom: 1em;
    }

    .nav li.last-item a {
        padding: 0 0 0 0;
    }

    .drop-menu>a {
        margin-bottom: 1em;
    }

    .nav.active {
        right: 0;
    }

    .head-info {
        width: 100%;
        padding-right: 56px;
        position: fixed;
        bottom: 0;
        left: 0;
    }

    .toggle {
        display: block;
    }
}

@media (max-width: 599px) {
    header {
        margin-bottom: 10px;
    }

    .nav {
        width: 90%;
    }

    .head-info {
        padding-right: 60px;
        background-color: var(--back-color-00);
    }

    .head-info li+li {
        margin-left: 0;
    }
}

@media (max-width: 599px) {
    .toggle {
        width: 50px;
        height: 60px;
    }

    .head-info {
        padding-right: 50px;
        min-height: 60px;
        max-height: 60px;
    }
}

/* footer */
.footnav {
    color: var(--txt-color-00);
}

.footnav li,
.footnav .title {
    margin-bottom: 1em;
}

.footnav .title::before {
    content: "■";
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    color: var(--txt-color-02);
}

.footnav .indent {
    margin-left: 1.5em;
}

@media (max-width: 599px) {
    .footnav .indent {
        margin-left: 0;
    }
}

/* map */
.about .map {
    padding-top: 30%;
}

@media(max-width:599px) {
    .about .map {
        padding-top: 80%;
    }
}

/* ---------------------------
  メインビジュアル
  ----------------------------- */
.index-main-visual{
  width: 92%;
  margin-left: auto;
}  
  
.main-visual {
    max-height: 80vh;
    position: relative;
}

.main-visual .mv-container {
    position: relative;
}

.main-visual .catch-container {
    width: 100%;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 64px;
    color: var(--txt-color-00);
    letter-spacing: 0.1em;
    position: absolute;
    top: 50%;
    left: 1.5em;
}

.main-visual .area-container {
    padding: 10px;
    background-color: var(--back-color-02);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.main-visual .catch-container .mini {
    font-size: 70%;
}

@media(max-width:1024px){
.main-visual .catch-container {
    font-size: 52px;
}    
}

@media (max-width: 599px) {
    .main-visual .catch-container {
        font-size: 40px;
        left: 0.5em;
    }
    
    .main-visual .area-container {
    bottom: -60px;
}
}

/* ---------------------------
  下層のメインビジュアル
  ----------------------------- */
.lower-main-visual img {
    -webkit-filter: brightness(0.5);
    filter: brightness(0.5);
}

.lower-main-visual .title-wrap {
    position: relative;
}

.lower-main-visual .title-wrap .title {
    position: relative;
    z-index: 1;
}

.lower-main-visual .img-wrap {
    width: 150px;
    height: 150px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
}

.main-visual.lower-main-visual .catch-container {
    font-size: 56px;
    left: 0;
}

@media(max-width:1024px) {
    .main-visual.lower-main-visual .catch-container {
        font-size: 36px;
        left: 10px;
    }
}


/* ---------------------------
  slick-slide
  ----------------------------- */
#slide01 .slick-slide {
    padding-left: 20px;
    padding-right: 20px;
}

#slide02 .slick-slide {
    padding-left: 5px;
    padding-right: 5px;
}

@media(max-width:599px) {
#slide02 .slick-slide {
    padding-left: 40px;
    padding-right: 40px;
}    
}

.slick-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    right: 25px;
    z-index: 1;
}

.slick-next:before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #333;
    line-height: 1;
}

.slick-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.7);
    left: 25px;
    z-index: 1;
}

.slick-prev:before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #333;
    line-height: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: #333;
    background-color: rgba(255, 255, 255, 0.7);
}

#slide01 .slick-prev {
    border: 1px solid var(--txt-color-01);
    top: -150px;
    left: auto;
    right: 280px;
}

#slide01 .slick-prev:before {
    content: "";
    width: 50px;
    height: 50px;
    display: block;
    background-image: url('/import/tenant_1/153.121.72.82/html/images/arrow02.webp');
    background-size: 20%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#slide01 .slick-next {
    border: 1px solid var(--txt-color-01);
    top: -150px;
    right: 220px;
}

#slide01 .slick-next:before {
    content: "";
    width: 50px;
    height: 50px;
    display: block;
    background-image: url('/import/tenant_1/153.121.72.82/html/images/arrow02.webp');
    background-size: 20%;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 1024px) {
    #slide01 .slick-prev {
        top: 50%;
        left: 10px;
    }

    #slide01 .slick-next {
        top: 50%;
        left: auto;
        right: 10px;
    }
}

@media (max-width: 599px) {
    .slick-next {
        right: 10px;
    }

    .slick-prev {
        left: 10px;
    }
}

/* ---------------------------
  共通デザイン
  ----------------------------- */
/* design-container01 */
.design-container01 .content-wrap {
    width: 45%;
    padding-right: calc(45% - 500px);
}

.design-container01 .content-wrap .text {
    margin: 30px 30px 0 0;
    line-height: 2;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.design-container01 .img-wrap {
    position: relative;
}

.design-container01 .img-wrap .btn {
    position: absolute;
    bottom: -1.5em;
    right: -1.5em;
    z-index: 1;
}

.design-container01.h80 .content-wrap {
    height: 80vh;
}

@media(max-width:1024px) {
    .design-container01 .content-wrap {
        width: 100%;
    }

    .staff .design-container01 .content-wrap {
        width: 80%;
        margin-left: auto;
    }
    
.design-container01.h80 .content-wrap {
    height: auto;
}    
}

@media (max-width: 599px) {
    .design-container01 .content-wrap {
        width: 96%;
        margin-left: auto;
        margin-right: auto;
    }

    .staff .design-container01 .content-wrap {
        width: 100%;
    }

    .design-container01 .img-wrap .btn {
        right: 0;
    }

    .design-container01 .vertical {
        position: absolute;
        top: -50px;
        right: 0;
        z-index: 1;
    }

    .design-container01 .content-wrap .text {
        margin: 0;
        -ms-writing-mode: initial;
        -webkit-writing-mode: initial;
        writing-mode: initial;
    }
}

/* design-container02 */

.design-container02 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: flex-end;
}

.design-container02 li+li {
    margin-top: 100px;
}

.design-container02 li:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.design-container02 li .img-wrap {
    width: 45%;
}

.design-container02 li .img-wrap .mask {
    -webkit-clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%);
}

.design-container02 li:nth-child(even) .img-wrap .mask {
    -webkit-clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
}

.design-container02 li .content-wrap {
    width: 50%;
    padding-left: calc(50% - 500px);
}

.design-container02 li:nth-child(even) .content-wrap {
    padding-left: 0;
    padding-right: calc(50% - 500px);
}

.design-container02 li .content-wrap .text {
    line-height: 2;
}

@media (max-width: 1024px) {
    .design-container02 li .img-wrap {
        width: 100%;
    }

    .design-container02 li .content-wrap {
        width: 96%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 599px) {
    .design-container02 li+li {
        margin-top: 50px;
    }

    .design-container02 li .img-wrap .mask {
        margin-bottom: 10px;
    }
}

/* design-container03 */

.design-container03 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.design-container03 li:nth-child(even) {
    margin-top: 50px;
}

.design-container03 .img-wrap {
    margin-top: 2em;
    position: relative;
}

.design-container03 .img-wrap .btn {
    position: absolute;
    bottom: -0.5em;
    right: -0.5em;
    z-index: 1;
}

@media (max-width: 599px) {
    .design-container03 li:nth-child(even) {
        margin-top: 0;
    }

    .design-container03 .img-wrap .btn {
        bottom: 0em;
        right: 0em;
    }
}

/* design-container04 */
.clipbox {
    width: 100%;

    -webkit-mask-image: url('/import/tenant_1/153.121.72.82/html/images/home-clip.webp');
    -webkit-mask-size: cover;
    -webkit-mask-position: left;
    mask-position: left;
    mask-size: cover;
    aspect-ratio: 1000/835;
    mask-image: url('/import/tenant_1/153.121.72.82/html/images/home-clip.webp');
}

.design-container04 li .img-wrap {
    position: relative;
}

.design-container04 li .img-wrap .category-wrap{
    position: absolute;
    top: 0;
    left: 30px;
}

.design-container04 li .img-wrap .category-wrap:before{
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-color: var(--back-color-01);
  border-radius: 100%;
}

.design-container04 li .img-wrap .category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--txt-color-00);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    padding: 0 0.5em;
}

.design-container04 li .img-wrap .subcategory {
    position: absolute;
    top: auto;
    bottom: 5px;
    left: 45px;
    right: 45px;
    z-index: 1;
}

.design-container04 li .img-wrap .subcategory span {
    display: inline-block;
    margin: 2px;
    padding: 0.25em 0.5em;
    font-size: 14px;
}

.design-container04 li .img-wrap .subcategory span span {
    border: 1px solid;
}

.design-container04 li .title {
    margin-top: 1em;
    font-size: 18px;
    text-align: center;
}

@media(max-width:1024px) {
    .design-container04 li .img-wrap .subcategory span {
        font-size: 12px;
    }
}

@media(max-width:599px) {
    .design-container04 li .img-wrap .subcategory {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 10px;
        right: auto;
        z-index: 1;
    }
    
    .design-container04 li .img-wrap .subcategory span span {
        padding: 0.05em;
        font-size: 10px;
    }    
}

@media(max-width:599px) {
.design-container04.ver02{
  width: 100%;
} 
  
.design-container04.ver02 li .img-wrap .category-wrap {
    left: 10px;
}

.design-container04.ver02 li .img-wrap .category-wrap:before {
    width: 75px;
    height: 75px;
}

.design-container04.ver02 li .img-wrap .category {
    width: 75px;
    font-size: 14px;
}
}

.design-container05 li .list-inner{
  padding: 20px;
  border: 1px solid;
  border-radius: 0.25em;
}

@media(max-width:599px) {
.clipbox {
    aspect-ratio: 1000/840;
}  
  
.design-container05 li{
  padding-left: 20px;
  padding-right: 20px;
}  
}

.works-container {
    position: relative;
}

.works-container::before {
    content: "";
    width: 1000px;
    height: 450px;
    display: block;
    background-color: var(--back-color-02);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    position: absolute;
    bottom: 100px;
    left: 50%;
}


/* list-blog */
.list-blog .img-wrap {
    margin-bottom: 30px;
    position: relative;
}

.list-blog .img-wrap .date {
    padding: 0.25em 1em;
    letter-spacing: 0.1em;
    background-color: var(--back-color-02);
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: 1;
}

/* list-recuit */
.list-recuit dl {
    padding: 1em 0;
    border-bottom: 1px solid #ccc;
}

.list-recuit .title {
    font-size: 1.5em;
}

/* list-news */
.lower .list-news .item a {
    margin-bottom: 1.5em;
    padding-bottom: 1em;
    border-bottom: 1px solid #eee;
}

/* list-mark */
.list-mark li {
    padding-left: 1.55em;
    /* 16px 18px 375px 1000px */
    font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
    position: relative;
}

.list-mark li::before {
    content: "";
    width: 1.25em;
    height: 1.25em;
    display: block;
    border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
    background-color: #ccc;
    position: absolute;
    /* top: 0.5em; */
    top: 0em;
    left: 0;
} 



.list-mark li+li {
    margin-top: 1em;
}

.list-mark.ver02{
  display: flex;
  flex-wrap: wrap;
}

.list-mark.ver02 li{
  width: 50%;
  margin-bottom: 0.5em;
}

.list-mark.ver02 li+li{
   margin-top: 0;
}

@media (max-width: 1024px) {
    .list-mark li+li {
        margin-top: 0.75em;
    }
}

@media (max-width: 599px) {
    .list-mark li+li {
        margin-top: 0.5em;
    }
}

/* list-interview */
.list-interview .list-inner {
    overflow: hidden;
    padding: 20px;
    border: 1px solid;
    border-radius: 0.25em;
    background-color: var(--back-color-00);
}

.list-interview .img-wrap {
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 0.25em;
}

.list-interview .title {
    margin-bottom: 5px;
    font-size: 1.2em;
}

/* list-youkou */
.list-youkou li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #eee;
}

.list-youkou .title {
    width: 25%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.list-youkou .content {
    width: 70%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 20px;
}

@media (max-width: 599px) {
    .list-youkou .title {
        width: 100%;
    }

    .list-youkou .content {
        width: 100%;
        font-size: 18px;
    }
}

/* list-banner */
.list-banner .list-inner {
    position: relative;
}

.list-banner .list-inner .title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
}

.list-banner .list-inner .img-wrap img {
    -webkit-filter: opacity(0.5);
    filter: opacity(0.5);
}

@media(max-width:1024px) {
    .list-banner .list-inner .title {
        font-size: 18px;
    }
}

@media(max-width:599px) {
    .list-banner .list-inner .title {
        width: 100%;
        font-size: 16px;
    }
}

/* list-staff */
.list-staff .career {
    font-weight: bold;
    font-size: 20px;
}

.list-staff .name {
    margin-bottom: 20px;
    font-size: 36px;
    text-align: right;
}

.list-staff .shikaku {
    margin-bottom: 10px;
}

@media(max-width:599px) {
    .list-staff .name {
        text-align: left;
    }
}

/* list-flow */
.list-flow .list-inner {
    padding: 30px;
    border-radius: 0.25em;
    background-color: var(--back-color-00);
    position: relative;
}

.list-flow .list-inner .title {
    margin-bottom: 1em;
    font-family: "Noto Serif JP", serif;
    font-size: 1.5em;
    text-align: right;
}

.list-flow .list-inner .img-wrap {
    margin-bottom: 1em;
}

.list-flow .list-inner .num {
    font-family: "Noto Serif JP", serif;
    font-size: 60px;
    line-height: 1;
    position: absolute;
    top: -30px;
    left: 0;
}

/* list-access */
.list-access dl{
  padding: 1em;
  border-bottom: 1px solid #ddd;
}

.list-access .title{
  font-size: 1.5em;
}

@media(max-width:599px) {
.list-access li+li{
  margin-top: 20px;
}    
}

/* list-payment */
.list-payment .list-inner{
  border-radius: 5px;
  overflow: hidden;
}

.list-payment.ver02 .list-inner {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
    padding: 9px 0;
    line-height: 1.2;
}

.list-payment.ver03 .list-inner {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
    padding: 9px 0;
    line-height: 1.2;
    border: 1px solid;
}


.list-payment-container .title {
    color: var(--txt-color-00);
    margin-bottom: 1em;
}

.list-payment-container .title::before {
    content: "■";
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    color: var(--txt-color-02);
}

/* faq-qa-list */
.faq-qa-list .faq-qa {
    background-color: var(--back-color-00);
    -webkit-box-shadow: 2px 2px 16px rgb(0 0 0 / 25%),
    2px 4px 4px -8px rgb(0 0 0 / 25%);
    box-shadow: 2px 2px 16px rgb(0 0 0 / 25%), 2px 4px 4px -8px rgb(0 0 0 / 25%);
    position: relative;
}

.faq-qa-list .faq-qa+.faq-qa {
    margin-top: 20px;
}

.faq-qa-list .faq-qa .faq-q,
.faq-qa-list .faq-qa .faq-a {
    display: block;
    padding: 15px 20px;
    position: relative;
}

.faq-qa-list .faq-qa .faq-q {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
}

.faq-qa-list .faq-qa .faq-q .text {
    width: 100%;
    display: block;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin: 0 30px;
}

.faq-qa-list .faq-qa .faq-q::before {
    content: "Q";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-family: "Tinos", serif;
    font-size: 36px;
    color: var(--txt-color-04);
    line-height: 1;
}

.faq-qa-list .faq-qa .faq-q::after {
    content: "\f107";
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    line-height: 1;
}

.faq-qa-list .faq-qa .faq-q::after {
    content: "\f107";
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    line-height: 1;
}

.faq-qa-list .faq-qa .faq-a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
    background-color: rgba(236, 236, 236, 0.8);
}

.faq-qa-list .faq-qa .faq-a .text {
    width: 100%;
    display: block;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin: 0 30px;
}

.faq-qa-list .faq-qa .faq-a::before {
    content: "A";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-family: "Tinos", serif;
    font-size: 36px;
    color: var(--back-color-01);
    line-height: 1;
}

@media (max-width: 599px) {
    .faq-qa-list .faq-qa .faq-q,
    .faq-qa-list .faq-qa .faq-a {
        padding: 15px 20px 15px 20px;
    }
}

/* ---------------------------
  詳細ぺージ
  ----------------------------- */
/* ##### パンくずリスト breadcrumbs ##### */
.breadcrumbs {
    padding: 2em 0;
}

.breadcrumbs-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.breadcrumbs-list li {
    display: inline;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.breadcrumbs-list li.breadcrumbs-thispage {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding-left: 2em;
    text-indent: -2em;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage,
.breadcrumbs-list li.breadcrumbs-thispage {
    font-size: 14px;
}

.breadcrumbs-list li.breadcrumbs-home,
.breadcrumbs-list li.breadcrumbs-prevpage {
    font-weight: bold;
}


.breadcrumbs-list li.breadcrumbs-thispage::before {
    content: "";
    width: 0.8em;
    height: 0.8em;
    display: inline-block;
    margin: 0 1em 0 0.5em;
    border-top: 2px solid #473d2f;
    border-right: 2px solid #473d2f;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.breadcrumbs-list li.breadcrumbs-prevpage a::before {
    content: "";
    width: 0.8em;
    height: 0.8em;
    display: inline-block;
    margin: 0 1em 0 0.5em;
    border-top: 2px solid #473d2f;
    border-right: 2px solid #473d2f;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.newsblogworks {
    padding: 50px;
    background-color: #eee;
}

.newsblogworks .title {
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
    font-size: 1.5em;
    border-bottom: 1px solid;
}

.newsblogworks .category span {
    display: inline-block;
    margin: 2px;
    padding: 0.25em 0.5em;
    border: 1px solid var(--txt-color-01);
}

@media(max-width:599px) {
    .newsblogworks {
        padding: 30px;
    }

    .newsblogworks .title {
        font-size: 1.2em;
    }

    .newsblogworks .category span {
        font-size: 14px;
    }
}

/* 電話番号が発信できるようにする */
a[href*='tel'],
button[href*='tel'] {
  pointer-events: auto;
}

/* 改行 */
.sp-br\@sp{
  display: inline;
}

@media(max-width:599px) {
.sp-br\@sp{
  display: block;
}    
}

.centertoleft_tb{
  text-align: center;
}

.centertoleft_sp{
  text-align: center;
}

@media(max-width:1024px) {
.centertoleft_tb{
  text-align: left;
}   
}

@media(max-width:599px) {
.centertoleft_sp{
  text-align: left;
}    
}

.mapimage img{
  width: 100%;
}

/* 新しいお問い合わせフォーム */
.list-block li{
  background-color: var(--back-color-00);
  color: var(--txt-color-01);
  font-size: 24px;
  text-align: center;
  padding: 20px 0;
  position: relative;
}

.list-block li:after {
    content: "";
    border-style: solid;
    height: 0;
    position: absolute;
    width: 0;
    border-color: #fff transparent transparent transparent;
    border-width: 20px 10px 0 10px;
    position: absolute;
    bottom: -19.5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.list-block li:nth-child(2){
  background-color: var(--back-color-02);
  color: var(--txt-color-01);
}

.list-block li:nth-child(3){
  background-color: var(--back-color-01);
  color: var(--txt-color-00);
}

.list-block li:nth-child(2):after {
    border-color: #ffd200 transparent transparent transparent;
}

.list-block li:nth-child(3):after {
    content: none;
}

@media(max-width:599px){
  .list-block li{
  font-size: 15px;
}
}

.contact-form.new dl {
    display: block;
    padding: 50px;
    background-color: #F9F7F2;
}

.contact-form.new dl + dl{
    margin-top: 50px;
}

.contact-form.new dt{
    width: 100%;
    font-size: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

.contact-form.new dt:before{
    display: inline-block;
    content: "01";
    width: 50px;
    height: 50px;
    background-color: black;
    color: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.contact-form.new dl:nth-child(2) dt:before{
    content: "02";
}

.contact-form.new dl:nth-child(3) dt:before{
    content: "03";
}

.contact-form.new dd{
    width: 100%;
}

.contact-form.new select{
    margin-bottom: 1em;
    width: 50%;
}

.contact-form.new .wrap{
  margin-bottom: 1em;
}

@media(max-width:599px){
  .contact-form.new dl {
      padding: 20px;
  }  
  
  .contact-form.new dt{
    font-size: 16px;
}
}

/* 見たまま編集画面用 */
[data-element-id].drop-menu-list {
    visibility: visible;
    opacity: 1;
    position: initial;
    transform: none;
}

[data-element-id].nav li a{
  height: auto;
}

[data-element-id] #slide01>div{
  display: flex;
  flex-wrap: wrap;
}

[data-element-id] #slide01>div>li{
  width: 16.6%;
}

[data-element-id] .fead-order>*{
  opacity: 1;
  transform: none;
}

[data-element-id] .up-h-100\% {
    height: auto;
}

[data-element-id] .bg-parent{
  padding: 100px;
}

[data-element-id] .bg-content{
  width: fit-content;
  margin: auto;
  padding: 0;
}

[data-element-id].abtestblock{
  position: relative;
  padding-top: 1.5em;
  border: 1px solid purple;
}

[data-element-id].abtestblock::before{
  content: "ABテスト";
  width: 100%;
  background-color: purple;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

[data-ab-test-block] [data-ab-test-contents] + [data-ab-test-contents] {
    display: none;
}

[data-element-id] .uk-slideshow > li {
    opacity: 1;
}

[data-element-id] .show\@sp .title01{
  font-size: 28px;
  margin-bottom: 0;
}

[data-element-id] .show\@sp .title04{
  font-size: 28px;
  margin-bottom: 0;
}

[data-element-id] .show\@sp .title07{
  font-size: 28px;
  margin-bottom: 0;
}

.up-bgc-white{
  background-color: #fff;
}

/* 2025/04/16 */

.jc-sb{
  justify-content: space-between;
}

.r-gap50{
  row-gap: 50px;
}

.f-wrap{
  flex-wrap: wrap;
}

@media screen and (max-width:599px) {
.jc-sb-sp{
  justify-content: space-between;
} 

#price-area .name div{
  font-size: 18px;
}
}

.design-container01 .mincho{
  font-family: "Noto Serif JP", serif;
}

.beju-bg{
  background-color: #F9F7F2;
  padding: 50px;
}

@media screen and (max-width:599px) {
  .beju-bg{
  padding: 30px 0px;
}
}

/* 2025/04/23 */

 .logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
 .logo-container li {
    width: 100%; /* 1列表示で開始 */
    max-width: 200px; /* 最大幅設定 */
    padding: 10px;
    box-sizing: border-box; /* 内側の余白を含むサイズ指定 */
  }
 .logo-container li a{
    display: grid;
    place-items: center;
 }  
 
.pti-0{
  padding-top: 0px !important;
}
 
  @media (min-width: 600px) {
 .logo-container li {
      width: 50%; /* 2列表示に変更 */
    }
  }
  @media (min-width: 1024px) {
 .logo-container li {
      width: 33.33%; /* 3列表示に変更 */
    }
  }
  
@media screen and (max-width:599px) {
 .logo-container {
    gap: 25px;
    justify-content: space-around;
}

 .logo-container li{
    padding: 0px;
    width: 45%;
 }
}

/* SK化研のカラーシミュレーション */

.color-simulation-link {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

.color-simulation-link a {
    width: fit-content;
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
    margin: auto;
}

.color-simulation-link a:hover {
  text-decoration: underline;
  color: #004999;
}

@media screen and (max-width:599px) {
.color-simulation-link p{
  font-size: 12px;
}

.color-simulation-link{
  padding: 20px 10px;
}
}

/* 2025/05/14 */
.up-c-txt{
  color: var(--txt-color-03);
}

.wrapper.newcolor .tel a::before {
    background-color: var(--back-color-03);
}

.wrapper.newcolor .contact-btn a {
    background-color: var(--back-color-03);
    color: #fff;
}

.wrapper.newcolor .main-visual .area-container {
    background-color: var(--back-color-03);
    color: #fff;
}

.wrapper.newcolor .bgimage01 {
    background-image: none;
    background-color: #e2f3ff;
}

.wrapper.newcolor .tel a::before {
    background-image: url(/upload/tenant_1/tel_white.webp);
}

.wrapper.newcolor .contact-btn a::before {
    background-image: url(/upload/tenant_1/contact_white.webp);
}

.wrapper.newcolor .deco01 {
    max-width: none;
    width: 1200px;
    height: 600px;
    background-color: #e2f3ff;
}

.wrapper.newcolor .title0{
    color: var(--txt-color-03);
}

.wrapper.newcolor .title01::after {
    background-image: url(/upload/tenant_1/deco00_01.webp);
}

.wrapper.newcolor .mv-catch{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
}

.wrapper.newcolor .mv-catch .txt01,
.wrapper.newcolor .mv-catch .txt02{
  color: #20325f;
  font-size: 48px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: bolder;
  text-shadow: 0 0 10px #FFF, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}

.wrapper.newcolor .mv-section{
  position: relative;
}

.wrapper.newcolor .main-visual{
  position: initial;
}

.wrapper.newcolor .mv-catch .txt03{
  background-color: var(--back-color-03);
  color: #fff;
  width: fit-content;
  margin: 0 auto;
  padding: 0.5em;
  font-size: 24px;
  margin-top: 20px;
  font-family: "Noto Serif JP", serif;
}

.wrapper.newcolor .bg-image {
  opacity: 0.3;
}

.wrapper.newcolor .bg-image img {
  filter: none;
}

.wrapper.newcolor .contact-btn02 a {
  background-color: var(--back-color-03);
  color: #fff;
  border: 1px solid #fff;
}

.wrapper.newcolor .title06 span {
  background-color: var(--back-color-03);
  color: #fff;
}

.wrapper.newcolor footer{
  background-color: var(--back-color-03);
}

.wrapper.newcolor .contact-btn02 a::before {
  background-image: url(/upload/tenant_1/contact_white.webp);
}

.wrapper.newcolor .mv-catch .txt02.eng-letter {
    font-size: 18px;
    margin-top: 30px;
    font-family: "Caveat", cursive;
    margin-bottom: 20px;
    color: #333;
}

.wrapper.newcolor .btn01 a {
    color: var(--txt-color-03);
    border: 1px solid var(--txt-color-03);
}

.wrapper.newcolor .btn01 a span {
    color: var(--txt-color-03);
}

.wrapper.newcolor .btn01 a:hover span {
    color: #fff;
}

.wrapper.newcolor .btn01 a:before {
    background: var(--back-color-03);
}

.wrapper.newcolor .btn01 a::after {
    background-image: url(/upload/tenant_1/arrow_blue.webp);
}

.wrapper.newcolor .btn01 a:hover:after {
    background-image: url(/import/tenant_1/153.121.72.82/html/images/arrow.webp);
}

.wrapper.newcolor .btn02 a {
    background-color: var(--back-color-03);
}

.wrapper.newcolor .btn02 a:hover {
    border: 1px solid;
    color: var(--txt-color-03);
}

.wrapper.newcolor .btn02 a:hover span {
    color: var(--txt-color-03);
}

.wrapper.newcolor .btn02 a:hover:after {
    background-image: url(/upload/tenant_1/arrow_blue.webp);
}

.wrapper.newcolor .btn03 a{
    color: var(--txt-color-03);
    border: 1px solid var(--txt-color-03);
}

.wrapper.newcolor .btn03 a span{
    color: var(--txt-color-03);
}

.wrapper.newcolor .btn03 a:before{
    background: var(--back-color-03);
}

.wrapper.newcolor .btn03 a::after {
    background-image: url(/upload/tenant_1/arrow_blue.webp);
}

.wrapper.newcolor .btn03 a:hover:after {
    background-image: url(/import/tenant_1/153.121.72.82/html/images/arrow.webp);
}

.wrapper.newcolor .btn03 a:hover span{
    color: #fff;
}

.wrapper.newcolor .deco01 {
  border-bottom: none;
}

.wrapper.newcolor .tel a {
  color: var(--txt-color-03);
}

.wrapper.newcolor footer .tel a {
  color: #fff;
}

.wrapper.newcolor .title02::before {
  background-image: url(/upload/tenant_1/circle_blue02_500.webp);
}

.wrapper.newcolor .title03.purple {
    background-image: url(/upload/tenant_1/deco03_purple.webp);
}

.wrapper.newcolor .title03.pink {
    background-image: url(/upload/tenant_1/deco03_pink.webp);
}

.wrapper.newcolor .bg-image.ver02 img {
    filter: none;
}

.wrapper.newcolor .footnav .title.verwhite::before {
    color: #fff;
}

.wrapper.newcolor .deco02 {
    bottom: -45%;
}

.wrapper.newcolor .title04 {
    color: var(--txt-color-03);
}

.wrapper.newcolor .design-container02 li .content-wrap .text {
    color: var(--txt-color-03);
}

.wrapper.newcolor .title01.mb0 {
    color: var(--txt-color-03);
}

.wrapper.newcolor .footcopy{
  display: none;
}

.wrapper.newcolor .toggle .bar {
  background: var(--back-color-03);
}

@media(max-width:1024px){
.wrapper.newcolor .mv-catch .txt01,
.wrapper.newcolor .mv-catch .txt02{
  font-size: 36px;
}

.wrapper.newcolor .mv-catch .txt03{
  font-size: 18px;
}

.wrapper.newcolor .nav {
  background-color: var(--back-color-03);
}
}

@media(max-width:599px){
.wrapper.newcolor .mv-catch .txt01,
.wrapper.newcolor .mv-catch .txt02{
  font-size: 24px;
  text-align: left;
}

.wrapper.newcolor .mv-catch .txt03{
  font-size: 16px;
}    

.wrapper.newcolor .mv-catch{
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    text-align: left;
}

.wrapper.newcolor .mv-catch .txt02.eng-letter {
    font-size: 14px;
}

.wrapper.newcolor .mv-catch .txt03 {
    margin-left: 0;
}
}

/* 下層ぺージの色変更 */
.wrapper.lower.newcolor .main-visual{
  position: relative;
}

.bgimage02.vernewcolor{
  background-image: url('/upload/tenant_1/bg_new.webp');
}

.bgimage03.vernewcolor{
  background-image: url('/upload/tenant_1/bg_new.webp');
  background-size: cover;
  background-repeat: no-repeat;
}

.wrapper.newcolor .bg-image.black {
  opacity: 1;
  filter: brightness(0.7);
}

.wrapper.newcolor .btn03.white a {
    color: #fff;
    border: 1px solid #fff;
}

.wrapper.newcolor .btn03.white a span {
    color: #fff;
}

.wrapper.newcolor .btn03.white a::after {
    background-image: url(/import/tenant_1/153.121.72.82/html/images/arrow.webp);
}

/* 2025/07/09 */

.list-block li:nth-child(3) {
    background-color: #20325f;
    color: var(--txt-color-00);
}

.list-block li:nth-child(2) {
    background-color: #e2f3ff;
    color: var(--txt-color-01);
}

.list-block li:nth-child(2):after {
    border-color: #e2f3ff transparent transparent transparent;
}

@media screen and (max-width:1024px) {
 .wrapper.newcolor .toggle.active .bar{
   background-color: var(--back-color-00);
 }
 
 .wrapper.newcolor .toggle .bar::after {
    background: var(--back-color-03);
}

 .wrapper.newcolor .toggle .bar::before {
    background: var(--back-color-03);
}

 .wrapper.newcolor .toggle.active .bar::after {
    background: var(--back-color-00);
}

 .wrapper.newcolor .toggle.active .bar::before {
    background: var(--back-color-00);
}
}
