/*
Theme Name: sin-reform
Theme URL: 
Description: シンリフォーム オリジナルテーマ
Version: 1.0.18
Author: Harada-works
Authour URL: https://harada-works.com/
*/



@charset "utf-8";
/* ************************    Initialize   ************************ */
@font-face {
    font-family: 'Montserrat';
    src:url('../sin-reform/fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src:url('../sin-reform/fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Zen Kaku Gothic New';
    src:url('../sin-reform/fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root{
    /*  カラー　*/
    --main-color:#223964;/* メインカラー */
    --sub-color:#FF9900;/* サブカラー */
    --base-color:#FFFFFF;/* ベースカラー */
    --base2-color:#F2F2F2;/* ベース2カラー */
    --text-color:#222222;/* テキストカラー */
    --border-color:#DDDDDD;/* ボーダーカラー */
    --border2-color:#AAAAAA;/* ボーダー2カラー */
    --gray-color:#AAAAAA;/* グレーカラー */
    --darkgray-color:#555555;/* ダークグレーカラー */
    --hover-color: #94aad2;/* ホバーカラー */
    --hover2-color: #777777;/* ホバーカラー */
    /*  フォント　*/
    --jp-font:'Zen Kaku Gothic New', serif;/* 日本語フォント */
    --en-font:'Montserrat', serif;/* 英語フォント */
    --font-size-SS: 13px;
    --font-size-S: 16px;
    --font-size-M: 20px;
    --font-size-L: 26px;
    --font-size-LL: 36px;
    --font-size-3L: 72px;
    --font-size-4L: 7vw;
}
*,
*:before,
*:after{
    box-sizing: inherit;
}
html{
    font-size: var(--font-size-S);
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top:150px;
    overflow-x: hidden;
}
body{
    background-color: var(--base-color);
    -webkit-appearance: none;/* ブラウザのデフォルトデザイン解除 */
            appearance: none;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: var(--font-size-S);
    font-family: var(--jp-font);
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 1.5;
    font-feature-settings: "palt";
    color: var(--text-color);
    width: 100vw;
}
p,h1,h2,h3,h4,h5,h6{
    margin:0;
}
img{
    vertical-align:bottom;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
a{
    text-decoration: none;
    cursor: pointer;
    color: var(--text-color);
}
h1{}
h2{
    font-size: var(--font-size-LL);
}
h3{
    font-size: var(--font-size-M);
}
h4{
    font-size: var(--font-size-M);
}
h5{
    font-size: var(--font-size-M);
}
p{
    font-family: var(--jp-font);
}
i{
    font-size: var(--font-size-L);
}
ol{
    list-style: none;
    padding: 0;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    :root{
        --font-size-SS: 12px;
        --font-size-S: 16px;
        --font-size-M: 18px;
        --font-size-L: 28px;
        --font-size-LL: 36px;
        --font-size-3L: 72px;
        --font-size-4L: 8vw;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    :root{
        --font-size-SS: 12px;
        --font-size-S: 15px;
        --font-size-M: 18px;
        --font-size-L: 24px;
        --font-size-LL: 28px;
        --font-size-3L: 48px;
        --font-size-4L: 12.5vw;
    }
    body{
        letter-spacing: 0.05em;
    }
}
/* ************************      Common     ************************ */
.bold{
    font-weight: 700;
}
.en{
    font-family: var(--en-font);
    letter-spacing: 0;
    line-height: 1;
}
.jp{
    font-family: var(--jp-font);
}
.fa-solid{
    font-size: var(--font-size-S);
}
.logo{
    width: auto;
    height: auto;
}
.logo a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.logo-img{
    width: auto;
    margin-left: 15px;
}
.fontsize-ss{
    font-size: var(--font-size-SS);
}
.fontsize-s{
    font-size: var(--font-size-S);
}
.fontsize-m{
    font-size: var(--font-size-M);
}
.fontsize-l{
    font-size: var(--font-size-L);
}
.fontsize-ll{
    font-size: var(--font-size-LL);
}
.fontsize-3l{
    font-size: var(--font-size-3L);
}
.fontsize-4l{
    font-size: var(--font-size-4L);
}
.column2{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.column2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.col2-1{
    width: 50%;
    text-align: justify;
    box-sizing: border-box;
}
.col2-2{
    width: 50%;
    box-sizing: border-box;
}
.column2.rev{
    flex-direction: row-reverse;
}
.column2.rev .col2-1{
    padding-right: 0;
    padding-left: 60px;
}
.fillter{
    background: rgba(48, 48, 48, 0.15);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.page-content{
    padding-top: 150px;
    background-size: contain;
    position: relative;
}
.subpage-content{
    padding-top: 90px;
    background-size: contain;
    position: relative;
}
.container{
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}
.text-justify{
    text-align: justify;
}
.text-center{
    text-align: center;
}
/* スクロールバーの幅 */
::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}
/* スクロールバーの背景（トラック部分） */
::-webkit-scrollbar-track {
    background: #EEE;
    border-radius: 10px;
}
/* スクロールバーのつまみ（スライダー部分） */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
/* スクロールバーのつまみのホバー時 */
::-webkit-scrollbar-thumb:hover {
    background: #AAA;
}
.corner-r{
    border-radius: 10px;
}
#build-contents{
    transition: transform 0.3s ease-in-out;
    position: relative;
}
#build-contents.active{
    transform: translateX(-10%);
}
.overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(48, 48, 48, 0.5);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1005;
    pointer-events: none;
}
.separate{
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    .page-content{
        padding-top: 120px;
    }
    .col2-1{
        width: 48%;
        padding-right: 45px;
    }
    .col2-2{
        width: 52%;
    }
    .column2.rev .col2-1{
        padding-left: 45px;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .page-content{
        padding-top: 90px;
    }
    .subpage-content{
        padding-top: 60px;
    }
    .column2{
        flex-direction: column;
    }
    .col2-1{
        width: 100%;
        padding-right: 0;
        padding-top: 30px;
    }
    .col2-2{
        width: 100%;
    }
    .column2.rev{
        flex-direction: column-reverse;
    }
    .column2.rev .col2-1{
        padding-left: 0;
    }
}
/* ************************      Button     ************************ */
.btn1{
    width: 300px;
    height: 60px;
    max-width: 100%;
    padding: 15px;
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: var(--main-color);
    color: #FFF;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.btn1::after{
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    right: -8px;
    bottom: -8px;
    transition: .3s ease-in-out;
}
.btn1 i{
    font-size: var(--font-size-S);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 45px;
    height: 45px;
    right: -8px;
    bottom: -8px;
}
.btn1:hover::after{
    width: 55px;
    height: 55px;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{}
/* ************************      Zoom image     ************************ */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}
.modal-img__area {
    max-width: 100vw;
    margin: auto;
    display: block;
    position: relative;
}
.modal-content {
    width: 100%;
    height: 100%;
    max-height: 90vh;
    max-height: 90dvh;
    object-fit: contain;
}
#modal-description{
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(48,48,48,0.3);
    color: #FFF;
    width: 100%;
    padding: 5px 15px;
}
.close-btn {
    position: absolute;
    top: 30px;
    right: 60px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}
.close-btn i{
    font-size: var(--font-size-LL);
}
#modal .prev{
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}
#modal .next{
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}
#modal .prev i,
#modal .next i{
    color: #FFF;
    font-size: var(--font-size-LL);
}
/* 背景をクリックできるように modal に pointer-events を有効化 */
.modal {
    cursor: pointer;
}
/* 画像はクリックしてもモーダルを閉じないように */
.modal-img__area img {
    pointer-events: none;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{}
/* ************************      Section-ttl     ************************ */
.section-ttl{
    padding-bottom: 45px;
}
.section-ttl h2{
    font-size: var(--font-size-S);
    display: flex;
    justify-content: start;
    align-items: center;
    padding-bottom: 5px;
    line-height: 1;
}
.section-ttl h2::before{
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    background-color: var(--sub-color);
    border-radius: 50%;
    margin-right: 10px;
}
.section-ttl p{
    font-family: var(--en-font);
    font-size: var(--font-size-3L);
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1;
    display: inline-block;
    font-weight: bold;
    color: var(--main-color);
    padding-right: 15px;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{}
/* ************************      Subpage-header     ************************ */
#subpage-header{
    padding-top: 180px;
}
#subpage-header h1{
    font-size: var(--font-size-S);
    display: flex;
    justify-content: start;
    align-items: center;
    padding-bottom: 5px;
    line-height: 1;
}
#subpage-header h1::before{
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    background-color: var(--sub-color);
    border-radius: 50%;
    margin-right: 10px;
}
#subpage-header p{
    font-family: var(--en-font);
    font-size: var(--font-size-4L);
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1;
    display: inline-block;
    font-weight: bold;
    color: var(--main-color);
    padding-right: 15px;
}
#subpage-header .page-ttl{
    padding-bottom: 15px;
}
#page-header__img{
    position: relative;
    width: 100vw;
    height: 750px;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    #subpage-header{
        padding-top: 120px;
    }
    .section-ttl{
        flex-wrap: wrap;
        padding-bottom: 15px;
    }
    .section-ttl::before{
        margin-bottom: 10px;
        white-space: nowrap;
    }
    #page-header__img{
        height: 300px;
    }
}
/* ************************      Lead-ttl     ************************ */
.lead-ttl{
    color: var(--sub-color);
    display: flex;
    justify-content: start;
    align-items: center;
}
.lead-ttl::before{
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background-color: var(--sub-color);
    margin-right: 8px;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{}
/* ************************      Space      ************************ */
.mr-s{
    margin-right: 15px;
}
.ml-s{
    margin-left: 15px;
}
.mt-s{
    margin-top: 15px;
}
.mb-s{
    margin-bottom: 15px;
}
/*---------------------*/
.mr-m{
    margin-right: 30px;
}
.ml-m{
    margin-left: 30px;
}
.mt-m{
    margin-top: 30px;
}
.mb-m{
    margin-bottom: 30px;
}
/*---------------------*/
.mr-l{
    margin-right: 60px;
}
.ml-l{
    margin-left: 60px;
}
.mt-l{
    margin-top: 60px;
}
.mb-l{
    margin-bottom: 60px;
}
/*---------------------*/
.pr-s{
    padding-right: 15px;
}
.pl-s{
    padding-left: 15px;
}
.pt-s{
    padding-top: 15px;
}
.pb-s{
    padding-bottom: 15px;
}
/*---------------------*/
.pr-m{
    padding-right: 30px;
}
.pl-m{
    padding-left: 30px;
}
.pt-m{
    padding-top: 30px;
}
.pb-m{
    padding-bottom: 30px;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    .mr-l{
        margin-right: 45px;
    }
    .ml-l{
        margin-left: 45px;
    }
    .mt-l{
        margin-top: 45px;
    }
    .mb-l{
        margin-bottom: 45px;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .pr-s{
        padding-right: 7.5px;
    }
    .pl-s{
        padding-left: 7.5px;
    }
    .pt-s{
        padding-top: 7.5px;
    }
    .pb-s{
        padding-bottom: 7.5px;
    }
    /*---------------------*/
    .mr-s{
        margin-right: 7.5px;
    }
    .ml-s{
        margin-left: 7.5px;
    }
    .mt-s{
        margin-top: 7.5px;
    }
    .mb-s{
        margin-bottom: 7.5px;
    }
    /*---------------------*/
    .mr-m{
        margin-right: 15px;
    }
    .ml-m{
        margin-left: 15px;
    }
    .mt-m{
        margin-top: 15px;
    }
    .mb-m{
        margin-bottom: 15px;
    }
}
/* ************************      width      ************************ */
.width-l{
    width: 100%;
    max-width: none;
}
.width-m{
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}
.width-s{
    width: 75%;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    .width-s{
        width: 90%;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{}
/* ************************   Flexlayout    ************************ */
.flex_space-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex_center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex_start{
    display: flex;
    justify-content: start;
    align-items: center;
}
.flex_end{
    display: flex;
    justify-content: end;
    align-items: center;
}
/* ************************      Animation     ************************ */
/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/* 上下のアニメーション*/
.upAnime{
    opacity: 0;/* 事前に透過0 にして消しておく*/
}

.slideAnimeDownUp {
    animation-name:slideTextY100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextY100 {
    from {
        transform: translateY(100%);/* 要素を上の枠外に移動*/
        opacity: 0;
    }
    to {
        transform: translateY(0);/* 要素を元の位置に移動*/
        opacity: 1;
    }
}
.slideAnimeUpDown {
    animation-name:slideTextY-100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextY-100 {
    from {
    transform: translateY(-100%);/* 要素を下の枠外に移動*/
    opacity: 0;
    }
    to {
    transform: translateY(0);/* 要素を元の位置に移動*/
    opacity: 1;
    }
}


@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{}
/* ************************      Header     ************************ */
header{
    width: 100vw;
    height: 60px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    position: fixed;
    background-color: #FFF;
    z-index: 1000;
}
#header{
    transition: transform 0.3s ease, background-color 0.3s ease;
}
#header.color1{
    background-color: rgba(51, 51, 51, 0.75);
}
#header.down{
    transform: translateY(-100%);
}
.logo img{
    width: auto;
    height: auto;
    max-width: 250px;
    padding-top: 5px;
}
.header-nav{
    display: flex;
    justify-content: start;
    align-items: center;
}
#header-cta{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}
#header-cta li{
    width: 200px;
    height: 40px;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
#header-cta li:nth-of-type(1){
    color: var(--main-color);
    background-color: #FFF;
    border: solid 1px var(--main-color);
}
#header-cta li:nth-of-type(1) a{
    display: flex;
    justify-content: center;
    align-items: center;
}
#header-cta li:nth-of-type(1) a::before{
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../sin-reform/img/icon/tel.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 5px;
}
#header-cta li:nth-of-type(2){
    background-color: var(--main-color);
    border: solid 1px var(--main-color);
}
#header-cta li:nth-of-type(2) a{
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}
#header-cta li:nth-of-type(2) a::before{
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background-image: url(../sin-reform/img/icon/mail.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 5px;
}
#hamburger-menu{
    position: relative;
    width: 65px;
    height: 20px;
    cursor: pointer;
    caret-color: transparent;
    z-index: 1020;
}
#hamburger-menu span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    top: 0;
    right: 0;
    height: 3px;
    border-radius: 1.5px;
    background-color: var(--text-color);
}
#hamburger-menu .bar:nth-of-type(1) {
    top:0;	
    width: 100%;
}
#hamburger-menu .bar:nth-of-type(2) {
    top:50%;
    transform: translateY(-50%);
    width:75%;
}
#hamburger-menu .bar:nth-of-type(3) {
    top:100%;
    transform: translateY(-50%);
    width:50%;
}
/* メニューを開くとバツ印へ変化 */
#hamburger-menu.active span{
    background-color: #FFF;
}
#hamburger-menu.active .bar:nth-of-type(1) {
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-15deg);
    width: 100%;
}
#hamburger-menu.active .bar:nth-of-type(2) {
    opacity: 0;
}
#hamburger-menu.active .bar:nth-of-type(3) {
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(15deg);
    width: 100%;
}
#menu-global{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: 0.3s ease-in-out;
    background-color: rgba(48,48,48,0.3);
    z-index: 1010;
    opacity: 0;
    pointer-events: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
#menu-global::-webkit-scrollbar{
    display: none;
}
#menu-global.active{
    opacity: 1;
    pointer-events: all;
}
#menu-global__cover{
    position: relative;
    height: 100%;
}
#menu-global ul{
    display: block;
    width: fit-content;
    max-width: 100%;
    position: absolute;
    top: 0;
    right: -100%;
    transition: 0.3s ease-in-out;
    background-color: var(--main-color);
    padding: 5% 5% 2.5% 5%;
}
#menu-global.active ul{
    right: 0;
}
#menu-global li{
    border-bottom: solid 1px var(--border2-color);
    position: relative;
    color: #FFF;
}
#menu-global li:last-of-type,
#menu-global li:nth-last-of-type(2){
    border-bottom: none;
}
#menu-global .arrow{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: solid 1px var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    letter-spacing: 0;
}
.header-menu{
    display: flex;
    justify-content: start;
    align-items: center;
    color: #FFF;
    padding: 45px 0;
    font-size: var(--font-size-S);
}
.header-menu::before{
    content: attr(data-en);
    font-family: var(--en-font);
    font-size: var(--font-size-LL);
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1;
    display: inline-block;
    font-weight: bold;
    margin-right: 15px;
}
#menu-global__cover .column2{
    justify-content: start;
}
#header-menu__tel{
    width: calc(50% - 15px);
    min-width: 300px;
    aspect-ratio: 1.414 / 1;
    border: solid 1px #FFF;
    border-radius: 10px;
    background-color: #FFF;
    margin-top: 30px;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--main-color);
    padding: 4%;
    position: relative;
}
#header-menu__mail{
    width: calc(50% - 15px);
    min-width: 300px;
    aspect-ratio: 1.414 / 1;
    border: solid 1px #FFF;
    border-radius: 10px;
    background-color: #FFF;
    margin-top: 30px;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--main-color);
    padding: 4%;
    position: relative;
}
#header-menu__line{
    width: calc(50% - 15px);
    min-width: 300px;
    aspect-ratio: 1.414 / 1;
    border: solid 1px #FFF;
    border-radius: 10px;
    background-color: #FFF;
    margin-top: 30px;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--main-color);
    padding: 4%;
    position: relative;
}
#header-menu__tel p,
#header-menu__mail p,
#header-menu__line p{
    white-space: nowrap;
}
#header-menu__tel .icon{
    width: 80px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
#header-menu__mail .icon{
    width: 100px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
#header-menu__line .icon{
    width: 100px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
#menu-global .prof a{
    display: block;
    width: fit-content;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    #header-cta{
        display: none;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    header{
        padding: 0 15px;
    }
    #hamburger-menu{
        width: 50px;
        height: 18px;
    }
    #menu-global > div{
        padding: 30px 30px 90px 30px;
    }
    #menu-global ul{
        padding: 60px 30px 30px 30px;
        width: 100%;
    }
    #menu-global li{
        font-size: var(--font-size-S);
    }
    .header-menu{
        padding: 30px 0;
    }
    #menu-global .arrow{
        width: 30px;
        height: 30px;
    }
    #menu-global .arrow i{
        font-size: var(--font-size-SS);
    }
    #header-menu__tel{
        width: 100%;
        margin-right: 0;
    }
    #header-menu__mail{
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
    }
    #header-menu__line{
        width: 100%;
        margin-top: 15px;
        margin-right: 0;
        
    }
    #header-menu__tel .icon{
        width: 25%;
    }
    #header-menu__mail .icon{
        width: 30%;
    }
    #header-menu__line .icon{
        width: 30%;
    }
}
/* ************************   front-page.php    ************************ */
/*---------------------  top-fv */
#fv{
    width: 100vw;
    height: 100vh;
    height: 100svh;
    padding-top: 65px;
    padding-bottom: 45px;
    position: relative;
}
#fv-img{
    position: relative;
    width: calc(100vw - 120px);
    height: 100%;
    margin: 0 auto;
    background-image: url(../sin-reform/img/fv.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
#fv-img .catch{
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
}
#fv-news{
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 35%;
    min-width: 500px;
    height: 75px;
    /* overflow: hidden; */
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px;
}
#fv-news .lead-ttl{
    padding-bottom: 5px;
}
#fv-news .slider a{
    display: flex;
    justify-content: start;
    align-items: baseline;
    flex-wrap: nowrap;
    width: 100%;
}
#fv-news .slider p{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#fv-left,
#fv-right{
    width: 60px;
    height: 100%;
    z-index: -1;
}
#fv-left{
    position: absolute;
    top: 0;
    left: 0;
}
#fv-left > div{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#fv-left .sns{
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(90deg);
    white-space: nowrap;
}
#fv-left .sns span:nth-of-type(2){
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--text-color);
    margin-right: 15px;
}
#fv-right{
    position: absolute;
    top: 0;
    right: 0;
}
#fv-right > div{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#fv-right p{
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-90deg);
    white-space: nowrap;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    #fv{
        width: 100vw;
        height: 50vh;
        height: 50svh;
    }
    #fv-img{
        width: calc(100vw - 80px);
    }
    #fv-left, #fv-right{
        width: 40px;
    }
    #fv-news .slider a{
        font-size: var(--font-size-SS);
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    #fv{
        height: 100vh;
        height: 100svh;
        padding-bottom: 30px;
    }
    #fv-img{
        width: 100vw;
    }
    #fv-left, #fv-right{
        display: none;
    }
    #fv-img.corner-r{
        border-radius: 0;
    }
    #fv-left .sns,
    #fv-right p{
        font-size: var(--font-size-SS);
    }
    #fv-left i{
        font-size: var(--font-size-S);
    }
    #fv-left .sns span:nth-of-type(2){
        margin-right: 7.5px;
    }
    #fv-news{
        width: calc(100vw - 30px);
        bottom: 15px;
        right: 50%;
        height: 60px;
        transform: translateX(50%);
        min-width: auto;
        padding: 10px 15px;
        border-radius: 5px;
    }
    #fv-img .catch{
        left: 15px;
    }
}
/*---------------------  top-about */
#top-about .container{
    width: 800px;
}
#top-about .catch{
    font-size: var(--font-size-LL);
}
#whydo .label{
    color: var(--sub-color);
    border: solid 2px var(--sub-color);
    display: block;
    width: fit-content;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 3px;
    margin: 0 auto;
    text-transform: uppercase;
}
#whydo{
    margin-top: 120px;
}
#whydo h2{
    margin-top: 5px;
    margin-bottom: 30px;
}
#whydo .item-ttl{
    font-size: var(--font-size-S);
    font-weight: bold;
}
#whydo .accordion-004 .answer{
    color: var(--hover-color);
}
#whydo .accordion-004 > div{
    padding: 1em 1.5em 2em 1.5em;
    margin: 0;
    background-color: var(--base-color);
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    #top-about .container{
        width: 75%;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    #top-about .container{
        width: 90%;
    }
    #top-about .catch{
        font-size: var(--font-size-L);
    }
    #whydo{
        margin-top: 90px;
    }
}
/*---------------------  top-works */
#top-works{
    padding-bottom: 120px;
}
.works-list.grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(0, auto));
    gap: 10px;
}
.works-list.grid li:nth-of-type(1){
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}
.works-list.grid li:nth-of-type(2){
    grid-column-start: 3;
}
.works-list.grid li:nth-of-type(3){
    grid-column-start: 4;
}
.works-list.grid li:nth-of-type(4){
    grid-column-start: 3;
    grid-row-start: 2;
}
.works-list.grid li:nth-of-type(5){
    grid-column-start: 4;
    grid-row-start: 2;
}
.works-list li{}
.works-list li a{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.works-list li .wrap{
    position: relative;
    aspect-ratio: 1.414 / 1;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.works-list img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.works-list li .wrap::before{
    content: 'more';
    text-transform:uppercase;
    font-family: var(--en-font);
    font-size: var(--font-size-SS);
    letter-spacing: 0;
    font-weight: bold;
    color: #FFF;
    background-color: rgba(34, 57, 100, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    bottom: -15px;
    right: -15px;
    transition: 0.3s ease-in-out;
}
.works-list li .wrap::after{
    content: 'after';
    text-transform:uppercase;
    font-family: var(--en-font);
    font-size: var(--font-size-SS);
    letter-spacing: 0;
    font-weight: bold;
    color: #FFF;
    position: absolute;
    top: 15px;
    left: 15px;
}
.works-list li a:hover .wrap::before{
    width: 110px;
    height: 110px;
}
#top-works .btn1{
    width: calc(100% / 4 - 10px);
    min-width: 250px;
    margin-left: auto;
    margin-right: 0;
    margin-top: 30px;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    .works-list.grid{
        gap: 5px;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .works-list.grid{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;;
        gap: 5px;
    }
    .works-list.grid li:nth-of-type(1){
        grid-column: span 2;
        grid-row: span 2;
    }
    .works-list.grid li:nth-of-type(2){
        grid-column: 1;
        grid-row: 3;
    }
    .works-list.grid li:nth-of-type(3){
        grid-column: 2;
        grid-row: 3;
    }
    .works-list.grid li:nth-of-type(4){
        grid-column: 1;
        grid-row: 4;
    }
    .works-list.grid li:nth-of-type(5){
        grid-column: 2;
        grid-row: 4;
    }
    .works-list li{
        border-radius: 5px;
    }
    .works-list li .wrap::before{
        width: 80px;
        height: 80px;
    }
    #top-works .btn1{
        width: 100%;
    }
}
/*---------------------  top-price */
#top-price,
#price-contents{
    background-color: var(--base2-color);
}
#price-contents.page-content{
    padding-bottom: 150px;
}
#top-price .container,
#price-contents .container{
    background-color: #FFF;
    padding: 4% 6%;
    border-radius: 10px;
}
#top-price .wrap > div,
#price-contents .wrap > div{
    display: flex;
    justify-content: center;
    align-items: start;
}
#top-price .list-ttl,
#price-contents .list-ttl{
    font-weight: bold;
    font-size: var(--font-size-L);
    width: 30%;
    display: flex;
    justify-content: start;
    align-items: center;
    white-space: nowrap;
}
#top-price .list-ttl::before,
#price-contents .list-ttl::before{
    content: attr(data-icon);
}
#top-price .price-list,
#price-contents .price-list{
    width: 70%;
    margin-bottom: 45px;
}
#top-price .price-list li,
#price-contents .price-list li{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#top-price .price-list li:last-of-type,
#price-contents .price-list li:last-of-type{
    margin-bottom: 0;
}
#top-price .item-ttl,
#price-contents .item-ttl{
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: var(--font-size-M);
}
.dot-line{
    flex-grow: 1;
    border-bottom: 1px dotted var(--border-color);
    margin-left: 30px;
    margin-right: 30px;
}
#top-price .btn1{
    width: 100%;
    justify-content: center;
}
.item-ttl,
.price-list__price{
    white-space: nowrap;
}

.accordion-004 {
    width: 100%;
    margin-bottom: 5px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}
.accordion-004 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 1.5em;
    color: var(--text-color);
    cursor: pointer;
}
.accordion-004 summary::-webkit-details-marker {
    display: none;
}
.accordion-004 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 9px;
    height: 9px;
    margin-left: 10px;
    border-bottom: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    content: '';
    transition: transform .3s;
}
.accordion-004[open] summary::after {
    transform: rotate(225deg);
}
.accordion-004 > div {
    background-color: var(--base2-color);
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 2em 1.5em 2em 1.5em;
    transition: transform .5s, opacity .5s;
}
.accordion-004[open] > div {
    transform: none;
    opacity: 1;
    margin: 15px;
    border-radius: 5px;
}
.price-block .col2-1{
    width: 50%;
}
.price-block .col2-2{
    width: 50%;
    padding-left: 30px;
}
.lineup-list li > p:first-of-type{
    color: var(--hover-color);
}
.lineup-list li > p:first-of-type::after{
    content: '：';
    margin-right: 5px;
}
.price-block.lineup img{
    background-color: #FFF;
    border-radius: 5px;
}
#top-price .price-list .lineup-list li ,
#price-contents .price-list .lineup-list li{
    justify-content: start;
    align-items: start;
    margin-bottom: 10px;
}
.lineup-list .price .before{
    position: relative;
    display: inline-block;
}
.lineup-list .price .before::after{
    content: '';
    width: 100%;
    height: 2px;
    background-color: #d32020;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
}
.lineup-list .price .after{
    color: #d32020;
}
.block-ttl{
    font-size: var(--font-size-S);
    display: flex;
    justify-content: start;
    align-items: center;
    padding-bottom: 10px;
    line-height: 1;
}
.block-ttl::before{
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    background-color: var(--sub-color);
    border-radius: 50%;
    margin-right: 10px;
}
.table-001{
    width: 100%;
    background-color: var(--base-color);
    border-radius: 5px ;
}
.table-001 tr:first-of-type{
    background-color: var(--main-color);
    color: #FFF;
}
.table-001 th{
    padding: 15px 15px;
    border-right: 1px solid var(--border-color);
    font-weight: 400;
}
.table-001 td{
    padding: 15px 15px;
}
.price-block.option .wrap{
    background-color: var(--base-color);
    padding: 15px;
    border-radius: 5px;
    min-height: 100px;
}
.table-001 tr:first-of-type th{
    border-radius: 5px 0 0 0;
}
.table-001 tr:first-of-type td{
    border-radius: 0 5px 0 0;
}
.table-001 tr:last-of-type th{
    border-radius: 0 0 5px 0;
}
.table-001 tr:last-of-type td{
    border-radius: 0 0 0 5px;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    #top-price .wrap > div,
    #price-contents .wrap > div{
        flex-direction: column;
    }
    #top-price .list-ttl,
    #price-contents .list-ttl{
        width: 100%;
        margin-bottom: 15px;
    }
    #top-price .price-list,
    #price-contents .price-list{
        width: 100%;
        padding-left: 0;
        border-left: none;
    }
    #top-price .price-block.lineup .column2,
    #price-contents .price-block.lineup .column2{
        flex-direction: row;
    }
    #top-price .price-block.lineup .col2-1,
    #price-contents .price-block.lineup .col2-1{
        width: 50%;
        padding-right: 0;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    #top-price{
        background-color: var(--base-color);
    }
    #top-price .container{
        width: 100%;
    }
    #top-price.page-content{
        padding-top: 0;
        padding-bottom: 90px;
    }
    #top-price .item-ttl,
    #price-contents .item-ttl{
        font-size: var(--font-size-S);
}
    .dot-line{
        margin-left: 15px;
        margin-right: 15px;
    }
    #top-price .price-block.lineup .column2,
    #price-contents .price-block.lineup .column2{
        flex-direction: column;
    }
    #top-price .price-block.lineup .col2-1,
    #price-contents .price-block.lineup .col2-1{
        width: 100%;
    }
    #top-price .price-block.lineup .col2-2,
    #price-contents .price-block.lineup .col2-2{
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
    }
    .accordion-004 summary{
        padding: 15px;
    }
    .accordion-004 summary::after{
        width: 7px;
        height: 7px;
    }
    .accordion-004 > div{
        padding: 30px 15px;
    }
    #price-contents.page-content{
        padding-top: 0;
        padding-bottom: 0;
    }
    #price-contents .container{
        width: 100%;
        padding: 15px;
        border-radius: 0;
    }
    .price-list__price.mr-m{
        font-size: var(--font-size-SS);
        margin-right: 5px;
    }
    .table-001 th,
    .table-001 td{
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .table-001 tr:first-of-type{
        display: none;
    }
    .table-001 th{
        padding: 15px 15px 0 15px;
        border-right: none;
    }
    .table-001 th::before{
        content: '●';
        display: inline-block;
    }
    .table-001 td{
        padding: 0 15px;
        text-align: justify;
    }
    .table-001 tr:first-of-type th{
        border-radius: 2.5px 0 0 0;
    }
    .table-001 tr:first-of-type td{
        border-radius: 0 2.5px 0 0;
    }
    .table-001 tr:last-of-type th{
        border-radius: 0 0 2.5px 0;
    }
    .table-001 tr:last-of-type td{
        border-radius: 0 0 0 2.5px;
        padding: 0 15px 15px 15px;
    }

}
/*---------------------  top-faq */
#top-faq{
    background-color: var(--base2-color);
}
#top-faq.page-content{
    padding-bottom: 150px;
}
#top-faq .wrap{
    padding: 0 6%;
}
.faq-list li{
    padding: 45px 0;
    border-top: dotted 1px var(--border2-color);
}
.faq-list li:last-of-type{
    border-bottom: dotted 1px var(--border2-color);
}
.faq-q{
    margin-bottom: 10px;
    font-weight: bold;
    text-align: justify;
}
.faq-q::before{
    content: 'Q.';
    font-family: var(--en-font);
    font-weight: bold;
    font-size: var(--font-size-L);
    color: var(--main-color);
    margin-right: 5px;
}
.faq-a{
    text-align: justify;
}
.faq-a::before{
    content: 'A.';
    font-family: var(--en-font);
    font-weight: bold;
    font-size: var(--font-size-L);
    color: var(--sub-color);
    margin-right: 5px;
}
#top-faq .btn1{
    width: 100%;
    justify-content: center;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{}
/*---------------------  top-news */
#top-news .news-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}
#top-news .news-list li{
    background-color: var(--base2-color);
    width: calc(50% - 30px);
    min-width: 300px;
    border-radius: 5px;
    margin: 5px 15px;
    padding: 2% 3%;
    position: relative;
}
#top-news .news-list h3{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tags{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 25px;
    border-radius: 15px;
    color: #FFF;
    background-color: var(--sub-color);
    white-space: nowrap;
    line-height: 1;
    font-size: var(--font-size-SS);
}
#top-news .news-list .tags{
    position: absolute;
    top: 15px;
    right: 15px;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    #top-news .news-list li{
        width: 100%;
        margin: 5px 0;
        padding: 4% 6%;
    }
    .tags{
        width: 80px;
        height: 20px;
    }
}
/*---------------------  section-bg */
#section-bg{
    position: relative;
    width: 100vw;
    height: 90vh;
    height: 90svh;
}
.parallax-section{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.bg-inner{
    top: -30%;
    width: 100%;
    height: 130%;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-out;
}
.bg-inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    #section-bg.price-page{
        height: 50vh;
        height: 50svh;
    }
    #section-bg.price-page .bg-inner img{
        object-position: center right;
    }
}
/*---------------------  top-company */
#top-company .container{
    background-color: var(--darkgray-color);
    border-radius: 10px;
    padding: 4% 6%;
}
#top-company .section-ttl{
    color: #FFF;
}
#top-company .section-ttl p{
    color: #FFF;
}
#top-company .col2-1{
    width: 50%;
    padding-right: 60px;
}
#top-company .col2-2{
    width: 50%;
}
#top-company .detail-text{
    color: #FFF;
    margin-bottom: 45px;
}
#top-company img{
    border-radius: 5px;
}
#top-company .btn1{
    background-color: transparent;
    border: 1px solid #FFF;
}
#top-company iframe{
    width: 100%;
    height: 400px;
    border-radius: 5px;
    margin-top: 30px;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    #top-company .col2-1{
        width: 100%;
        padding-right: 0;
        padding-bottom: 45px;
    }
    #top-company .col2-2{
        width: 100%;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    #top-company .container{
        padding: 6%;
    }
    #top-company iframe{
        height: 300px;
        margin-top: 15px;
        aspect-ratio: 1.414 / 1;
    }
}
/*---------------------  cta */
#cta .comment{
    background-color: var(--sub-color);
    color: #FFF;
    width: fit-content;
    border-radius: 15px;
    white-space: nowrap;
    padding: 3px 30px;
    position: relative;
    margin: 0 auto 30px auto;
}
#cta .comment::after{
    content: '';
    position: absolute;
    border-width: 10px; /* 矢印のサイズ */
    border-style: solid;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,90%);
    border-color: var(--sub-color) transparent transparent transparent;
}
#cta .section-ttl h2{
    font-size: var(--font-size-LL);
    font-weight: bold;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
}
#cta .section-ttl h2::before{
    display: none;
}
#cta .column3{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
#cta .column3 > div{
    width: calc(33.33% - 15px);
    background-color: var(--base2-color);
    border-radius: 10px;
    aspect-ratio: 4 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5% 4%;
}
#cta-tel,
#cta-mail,
#cta-line{
    width: 100%;
    min-width: 300px;
    aspect-ratio: 1.414 / 1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--main-color);
    position: relative;
}
#cta-tel .icon{
    width: 80px;
    height: 80px;
    object-fit: contain;
}
#cta-mail .icon{
    width: 100px;
    height: 100px;
    object-fit: contain;
}
#cta-line .icon{
    width: 80px;
    height: 80px;
    object-fit: contain;
}
#cta .btn1{
    justify-content: center;
}
#cta-tel p,
#cta-line p{
    color: var(--main-color);
    text-align: center;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    #cta .column3 > div{
        width: calc(50% - 15px);
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    #cta .section-ttl h2{
        font-size: var(--font-size-L);
    }
    #cta .column3 > div{
        width: 100%;
        margin-bottom: 15px;
    }
}
/* ************************   footer    ************************ */

footer .prof p,
footer .prof a{
    line-height: 1.5;
}
footer .prof a{
    display: block;
    width: fit-content;
    color: var(--main-color);
    padding-bottom: 3px;
    border-bottom: 1px solid var(--main-color);
    transition: 0.3s ease-in-out;
}
footer .prof a:hover{
    color: var(--hover-color);
    border-color: var(--hover-color);
}
.footer-menu li{
    margin-bottom: 15px;
}
.footer-menu li:last-of-type{
    margin-bottom: 0px;
}
.footer-menu li a::before{
    content: attr(data-en);
    font-family: var(--en-font);
    font-size: var(--font-size-L);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1;
    color: var(--main-color);
    margin-right: 15px;
}
.footer-prof .column2{
    justify-content: space-between;
    align-items: end;
}
.footer-prof .col2-2{
    width: fit-content;
}
.footer-bottom{
    background-color: var(--main-color);
    color: #FFF;
    padding: 5px 0;
}
.footer-bottom > div{
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom .pp{
    color: var(--gray-color);
    transition: 0.3s ease-in-out;
    display: block;
}
.footer-bottom .pp:hover {
    color: var(--hover2-color);
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .footer-prof .col2-1{
        margin-bottom: 90px;
    }
    .footer-prof .column2{
        align-items: start;
    }
}
/* ************************   works.php    ************************ */
#works-contents .works-list{
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}
#works-contents .works-list li{
    width: calc(50% - 30px);
    margin-bottom: 90px;
}
#works-contents .works-list .works-ttl{
    position: relative;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#works-contents .works-list h2{
    width: calc(100% - 100px);
    padding-right: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--font-size-L);
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    #works-contents .works-list li{
        width: calc(50% - 20px);
    }
    #works-contents .works-list h2{
        font-size: var(--font-size-M);
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    #works-contents .works-list li{
        width: 100%;
    }
}
/* ************************   works-detail.php    ************************ */
#works-detail .main-img{
    border-radius: 10px;
    overflow: hidden;
}
#works-detail img{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1.414 / 1;
}
.works-ttl{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.beforeafter-list{
    margin-top: 150px;
}
.beforeafter-list li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}
.before-img,
.after-img{
    width: calc(50% - 30px);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.before-img img,
.after-img img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.414 / 1;
}
.before-img a,
.after-img a{
    position: relative;
    transition: 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.before-img a::after,
.after-img a::after{
    content: '拡大して表示';
    font-size: var(--font-size-SS);
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}
.before-img::after{
    content: 'before';
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1;
    display: inline-block;
    font-weight: bold;
    font-size: var(--font-size-L);
    color: #FFF;
    position: absolute;
    top: 15px;
    left: 4%;
}
.after-img::after{
    content: 'after';
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 1;
    display: inline-block;
    font-weight: bold;
    font-size: var(--font-size-L);
    color: #FFF;
    position: absolute;
    top: 15px;
    left: 4%;
}
.beforeafter-list i{
    font-size: var(--font-size-L);
}
.gallery{
    position: relative;
    width: 100%;
    margin-top: 150px;
}
.gallery-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.gallery-list li{
    width: calc(100% / 4 - 15px);
    border-radius: 5px;
    overflow: hidden;
    margin: 7.5px 0;
}
.gallery-list li img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.414 / 1;
}
.gallery-list li a{
    position: relative;
    transition: 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.gallery-list li a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 57, 100, 0.5);
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}
.gallery-list li a::after{
    content: '拡大して表示';
    font-size: var(--font-size-SS);
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}
.gallery-list li a:hover::before{
    opacity: 1;
}
.gallery-list li a:hover::after{
    opacity: 1;
}
#works-detail .btn1{
    width: 50%;
    margin: 60px auto 0 auto;
    justify-content: center;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .beforeafter-list{
        margin-top: 60px;
    }
    .beforeafter-list i{
        display: none;
    }
    .before-img, .after-img{
        width: calc(50% - 5px);
        border-radius: 5px;
    }
    #works-detail img{
        aspect-ratio: 1 / 1;
    }
    .gallery-list li{
        width: calc(100% / 2 - 15px);
        margin-bottom: 15px;
    }
    #works-detail .btn1{
        width: 100%;
        margin: 30px auto 0 auto;
    }
}
/* ************************   price.php    ************************ */
#price-message .message-ttl{
    position: relative;
    width: fit-content;
    margin: 0px auto 30px auto;
}
#price-message .container .message-area:nth-of-type(1) .message-ttl{
    padding: 15px 45px;
}
#price-message .container .message-area:nth-of-type(2){
    padding: 60px 0 45px 0;
}
#price-message .message-ttl i{
    font-size: var(--font-size-L);
    color: var(--sub-color);
}
#price-message .message-ttl .fa-quote-left{
    position: absolute;
    top: 0;
    left: 0;
}
#price-message .message-ttl .fa-quote-right{
    position: absolute;
    bottom: 0;
    right: 0;
}
.box-list > li{
    border: solid 1px var(--border-color);
    border-radius: 10px;
    padding: 60px;
    margin-top: 60px;
}
.box-ttl{
    text-align: center;
}
.box-wrap__list li{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 60px;
}
.box-wrap__list li h4{
    width: 40%;
    font-weight: bold;
    padding-right: 30px;
}
.box-wrap__list li > p{
    width: 60%;
    text-align: justify;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .message-area.width-s{
        width: 100%;
    }
    #price-message .container .message-area:nth-of-type(1) .message-ttl{
        padding: 15px 30px;
        margin: 0 auto 30px auto;
    }
    #price-message .message-ttl.fontsize-l{
        margin: 0 auto 30px auto;
    }
    #price-message .message-ttl h2,
    #price-message .message-ttl.fontsize-l{
        font-size: var(--font-size-M);
    }
    .box-list > li{
        padding: 30px;
        margin-top: 30px;
    }
    .box-wrap__list li h4{
        width: 100%;
        padding-right: 0;
        padding-bottom: 15px;
        text-align: justify;
    }
    .box-wrap__list li p{
        width: 100%;
    }
}
/* ************************   company.php    ************************ */
#build-contents.company-page .section-ttl{
    width: 50%;
}
#build-contents.company-page .contents-area{
    width: 50%;
}
#company-reason .container,
#company-profile .container,
#company-access .container,
#company-area .container{
    display: flex;
    justify-content: center;
    align-items: start;
}
#company-reason #whydo{
    margin-top: 0;
}
#company-reason #whydo .label{
    margin-left: 0;
    margin-right: auto;
}
#company-reason .answer{
    color: var(--hover-color);
}
.profile-table{
    width: 100%;
}
.profile-table td{
    padding: 30px 60px 30px 0;
}
.profile-table tr td:last-of-type{
    padding: 30px 0 30px 0;
}
.profile-table tr td:first-of-type{
    font-weight: bold;
    white-space: nowrap;
}
.profile-table tr{
    border-bottom: solid 1px var(--border-color);
}
.profile-table td a{
    margin-left: 30px;
    display: block;
    width: fit-content;
    color: var(--main-color);
    padding-bottom: 3px;
    border-bottom: 1px solid var(--main-color);
    transition: 0.3s ease-in-out;
    font-size: var(--font-size-SS);
}
.profile-table td a:hover{
    color: var(--hover-color);
    border-color: var(--hover-color);
}
#company-access iframe{
    width: 100%;
    aspect-ratio: 1.414 / 1;
}
.access-list li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.access-list li p:first-of-type{
    white-space: nowrap;
}
#company-area img{
    width: 100%;
}
#build-contents.company-page #cta .section-ttl{
    width: 100%;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    #build-contents.company-page .section-ttl{
        width: 100%;
    }
    #build-contents.company-page .contents-area{
        width: 100%;
    }
    #company-reason .container,
    #company-profile .container,
    #company-access .container,
    #company-area .container{
        flex-direction: column;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .profile-table .flex_start {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
    .profile-table td a{
        margin-left: 0;
    }

}
/* ************************   faq.php    ************************ */

@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{}
/* ************************   taste.php    ************************ */
.column2-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}
.column2-list li{
    width: calc(50% - 30px);
    min-width: 300px;
    margin-bottom: 150px;
}
.column2-list .img-wrap{
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 1.414 / 1;
}
.column2-list img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.column2-list h2{
    font-size: var(--font-size-L);
    margin-top: 15px;
    margin-bottom: 15px;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    .column2-list li{
        width: 100%;
        margin-bottom: 90px;
    }
    .column2-list h2{
        margin-bottom: 5px;
    }
}
/* ************************   single-post.php    ************************ */
#post-contents a{
    color: #1d87b1;
    border-bottom: 1px solid #1d87b1;
}
#post-contents{
    line-height: 2;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{}
/* ************************   contact.php    ************************ */
#wpcf7-f7-o1{
    width: 50%;
    min-width: 300px;
    margin-left: auto;
}
.cf{
    width: 100%;
}
.cf-list li {
    margin-bottom: 45px;
}
.cf-list label{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.label-name{
    font-family: var(--en-font);
    font-size: var(--font-size-LL);
}
.wpcf7-form-control-wrap{
    width: 100%;
}
.cf-input{
    border-bottom: solid 1px var(--border2-color);
    width: 100%;
    padding: 10px 0;
}
.cf-check{
    width: 30px;
    height: 30px;
    border: 2px solid var(--border2-color);
    border-radius: 5px;
    position: relative;
}
.cf-check:checked::before{
    content: '✔';
    line-height: 1;
    font-size: var(--font-size-L);
    display: block;
    width: 100%;
    height: 100%;
    color: var(--main-color);
    position: absolute;
    top: 0;
    text-align: center;
}
.cf-textarea{
    border: solid 1px var(--border2-color);
    border-radius: 5px;
    width: 100%;
    padding: 10px 15px;
}
.cf-input:focus,
.cf-input:focus-visible{
    border-bottom: solid 4px var(--sub-color);
    outline: none;
}
.cf-input::placeholder{
    color: #999;
}
.cf-textarea:focus,
.cf-textarea:focus-visible{
    border: solid 3px var(--sub-color);
    outline: none;
}
.cf-click{
    width: 100%;
    text-align: center;
}
.cf-btn{
    display: block;
    width: 100%;
    padding: 15px 0;
    margin-top: 30px;
    background-color: var(--text-color);
    color: #FFF;
    transition: .3s;
    text-align: center;
}
.cf-btn:hover{
    background-color: var(--main-color);
    transition: .3s;
}
.wpcf7-spinner{
    display: none;
}
.cf-input:-internal-autofill-selected{
    background-color: transparent;
}
.wpcf7 form .wpcf7-response-output{
    margin: 2em 0 1em;
}
.pp-link{
    color: var(--main-color);
    border-bottom: solid 1px var(--main-color);
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{
    #contact-area.page-content{
        padding-bottom: 90px;
    }
}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{
    #wpcf7-f7-o1{
        margin: 0 auto;
    }
}
/* ************************   404.php    ************************ */
#page-404 img{
    width: 200px;
    height: auto;
    display: block;
    margin: 15px auto;
}
#page-404 .btn1{
    justify-content: center;
    margin: 0 auto;
}
@media screen and (max-width: 1024px)/*1024px以下(タブレット用)*/{}
@media screen and (max-width: 599px)/*599px以下(スマホ用)*/{}