/*
Theme Name: STEPONE不動産
Author: 株式会社プラセム
Description: STEPONE不動産のオリジナルテーマ
Version: 1.0
*/


@charset "UTF-8";

*{
    margin:0;
    padding:0;
    font-family: 'Noto Sans JP', sans-serif;
    color:#3F3A39;
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
}

a{
    text-decoration: none;
}

.inline-b{
    display:inline-block;
}

.nowrap{
    white-space: nowrap;
}

.pc-none{
    display:none;
}

.only-sp{
    display:none;
}


@media screen and (max-width:768px){
    .pc-none{
        display:inherit;
    }

    .sp-none{
        display:none
    }
}

@media screen and (max-width:480px){
    .only-sp-none{
        display:none;
    }

    .only-sp{
        display:inherit;
    }
}

main{
    padding-top:104px;
}

@media screen and (max-width:480px){
    main{
        padding-top:70px;
    }
}

/* フェードイン */
.effect-fade {
    opacity: 0;
    transform: translate(0, 100px); /* フェードインで動く高さを指定 */
    transition: all 1s; /* フェードインにかかる時間を指定 */
    }
    .effect-scroll {
    opacity: 1;
    transform: translate(0, 0);
    }



header{
    background-color: #fff;
    height:104px;
    display:table;
    width:100%;
    position:fixed;
    z-index:98;
    border-bottom: 1px solid #e6e6e6;
}

.header-box{
    margin:0 auto;
    height:104px;
    display:table-cell;
    vertical-align: middle;
}

@media screen and (max-width:480px){
    header{
        height:70px;
    }

    .header-box{
        height:70px;
    }

}

.header-content{
    display:flex;
    align-items: center;
    justify-content: space-between;
    max-width:1300px;
    width:90%;
    margin:0 auto;
}

.header-logo img{
    max-width:214px;
    width:100%;
}

@media screen and (max-width:800px){
    .header-logo img{
        min-width:190px;
    }
}

.header-right{
    display:flex;
    align-items: center;
    width:708px;
    justify-content: space-between;
}

@media screen and (max-width:800px){
    .header-right{
        justify-content: flex-end;
        width:90%;
    }
}

.pc-nav{
    max-width:438px;
    width:80%;
    margin:0 20px;
    height:18px;
    overflow: hidden;
}

@media screen and (max-width:800px){
    .pc-nav{
        display:none;
    }
}

.pc-nav nav ul{
    display:flex;
    justify-content: space-between;
}

.pc-nav-item{
    font-size:16px;
    font-weight:500;
    font-family: 'Noto Sans JP', sans-serif;
    position:relative;
    letter-spacing:0.15em;
}

.pc-nav nav ul a:hover .pc-nav-name{
    transform: translateY(-29px);
    transition:.5s;
}


.pc-nav-name{
    display:block;
    transition:0s;
}

.pc-nav-name.hover{
    padding-top:10px;
}

.header-ct-btn{
    display:block;
    background-color:#CE6C4A;
    border-radius:2px;
    transition:.3s;
    border:1px solid #CE6C4A;
}

.header-ct-btn:hover{
    background-color:#fff;
}



@media screen and (max-width:480px){
    .header-contact{
        display: none;;
    }
}

.header-contact-btn{
    box-sizing: border-box;
    width:220px;
    height:55px;
}

@media screen and (max-width:800px){
    .header-contact-btn{
        width:200px;
    }
}

.header-contact a span{
    position:relative;
}


.header-contact img{
    width:121.4px;
    display:block;
    margin:0 auto;
    padding:20px 45px;
    padding-top:16px;
}

@media screen and (max-width:800px){
    .header-contact img{
        padding:20px 20px;
        padding-top:16px;
    }
}



/* ハンバーガーメニュー */

.sp-nav{
    display:none
  }

  @media screen and (max-width:800px){
    .sp-nav{
        display:inherit;
    }
  }
  
  /* チェックボックスを非表示にする */
  .checkbox-hidden {
  display: none;
  }
  
  /* 設置スペース */
  .hum-open{
    display: flex;
    height: 55px;
    width: 55px;
    justify-content: center;
    align-items: center;
    z-index: 99;
    cursor: pointer;
    border-radius:2px;/*ボタンの背景の角*/
    margin-left:10px;
  }

  @media screen and (max-width:480px){
    .hum-open{
        height: 50px;
        width: 50px;
      }
  }
  
  /* アイコンの見た目 */
  .hum-open span,
  .hum-open span:before,
  .hum-open span:after {
    content: '';
    display: block;
    height: 1px;
    width: 30px;
    border-radius: 3px;
    background: #ACA596; /*三本線の色*/
    transition: 0.5s;
    position: absolute;
  }
  
  /* 上の線の位置 */
  .hum-open span:before {
    bottom: 8px;
  }
  
  /* 下の線の位置 */
  .hum-open span:after {
    top: 8px;
  }
  
  /* メニューが開いた時に真ん中の線を消す */
  #hum-icon:checked ~ .hum-open span {
    background: rgba(255, 255, 255, 0);
  }
  
  /* メニューが開いた時に線が×になる*/
  #hum-icon:checked ~ .hum-open span::before {
    bottom: 0;
    transform: rotate(-45deg);
  }
  
  #hum-icon:checked ~ .hum-open span::after {
    top: 0;
    transform: rotate(45deg);
  }
  
  /* ハンバーガーメニューの中身*/
  .sp-nav-content {
    width: 100%;
    height: 100%;
    position: fixed;
    left:100%;
    z-index: 80;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 61px, rgba(300,300,300,0.9) 61px, rgba(300,300,300,0.9) 100%);
    transition: .5s;
    display: table;
  }
  
  /* アイコンがクリックされたらメニューを右から入れる */
  #hum-icon:checked ~ .sp-nav-content {
    left:0;
  }
  
  /* メニューのスタイル */
  .sp-nav-list{
    width:fit-content;
    list-style: none;
    display:block;
    width:fit-content;
    margin:0 auto;
    height:fit-content;
    font-size:16px;
    text-align: left;
    position:relative;
    display:table-cell;
    vertical-align: middle;
  }
  
  .sp-nav-list a{
    width:80%;
    display: block;
    margin:0 auto;
  }
  
  .sp-nav-item{
    text-decoration:none;
    color:#535353;
    font-size:16px;
    padding:10px 0px;
    transition:.2s;
    position:relative;
    margin:30px auto;
    border-bottom:1px solid rgba(172,165,150,0.5);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:500;
    margin-top:40px;
  }
  
  .sp-nav-item:hover{
    color:#CE6C4A;
  }
  
  
  .sp-nav-item:first-child{
    padding-top:0;
  }

  .sp-nav-item::after{
    content:"";
    width:13px;
    height:13px;
    background-image:url(img/news-arrow.png);
    background-size:contain;
    background-repeat: no-repeat;
    position:absolute;
    left:calc(100% - 20px);
    top:5px;;
    opacity:0.7;
    transition:.3s;
  }

  .sp-nav-item::before{
    content:"";
    width:13px;
    height:13px;
    background-image:url(img/news-arrow-hover.png);
    background-size:contain;
    background-repeat: no-repeat;
    position:absolute;
    left:calc(100% - 20px);
    top:5px;;
    opacity:0;
    transition:.3s;
  }

  .sp-nav-item:hover.sp-nav-item::before{
    opacity:1;
  }

  .sp-nav-item:hover.sp-nav-item::after{
    opacity:0;
  }

  .sp-nav-contact{
    background-color:#CE6C4A;
    width:fit-content;
    display:block;
    margin:0 auto;
    border-radius: 2px;
    width:80%;
    margin:0 auto;
    box-sizing: border-box;
    max-width:400px;
    margin-top:50px;
    border:1px solid #CE6C4A;
    transition:.3s;
  }

  .sp-nav-contact:hover{
    background-color:#fff;
  }

  .sp-nav-contact:hover .sp-nav-contact-btn .btn-hover{
    display:block !important;
  }

  .sp-nav-contact a{
    display:block;
    margin:0 auto;
    box-sizing: border-box;
    height:60px;
  }

  .sp-nav-contact-btn img{
    width:150px;
    display:block;
    margin:0 auto;
    padding:10px 0;
    padding-top:17px;
  }


  .sp-nav-contact-btn .btn-hover{
    display:block;
    margin:0 auto;
  }


/* mv */

/* mvスライドショー */

.swiper.sp{
    display:none;
}

@media screen and (max-width:480px){
    .swiper.sp{
        display:inherit;
    }

    .swiper.pc{
        display:none;
    }
}
  
  .swiper-slide {
    /*fedeアニメーションは必要ないため透過を無しにする*/
    opacity: 1 !important;
  }

  .swiper-slide .image img{
    width:100%;
    height:49vw;
  }
  
  .swiper-slide .image-box,
  .swiper-slide .image{
    /*切り替わり中は前のスライドのアニメーションを遅らせる*/
    transition-delay: 0.5s;
    width:100%;
    height:49vw;
    overflow: hidden;;
  }

  @media screen and (max-width:480px){

    .swiper-slide .image img{
      height:151.86vw;
      }
    .swiper-slide .image-box,
    .swiper-slide .image{
      height:151.86vw;
    }
    
  }
  
  .swiper-slide .image-box {
    transform: translateX(-100%);
    overflow: hidden;
  }

  .swiper-slide .image img {
    transform:scale(1.05);
    animation:zoom2 5s linear;
  }

  @keyframes zoom2{
    0%{
        scale:1;
    }
    100%{
        scale:1.05;
    }
  }
  
  .swiper-slide .image{
    transform: translateX(100%);
  }
  
  .swiper-slide-active {
    /*アクティブなスライドが一番上に来るように*/
    z-index: 2;
  }
  
  .swiper-slide-active .image-box,
  .swiper-slide-active .image{
    transition-delay: 0s;
    transition-duration: 0.5s;
    transform: translateX(0%);
  }

  .swiper-slide-active .image img{
    transform: scale(1);
    animation:zoom 5s linear;
  }


  @keyframes zoom{
    0%{
        scale:1;
    }

    100%{
        scale:1.05;
    }
  }


  

  .swiper-slide .copy.image img {
    transform:scale(1);
    animation:none;
  }

  .swiper-slide .copy.image.s5 img,
  .swiper-slide .copy.image.s2-5 img
  {
    display:none;
  }

  .swiper-slide-active .copy.image.s5 img,
  .swiper-slide-active .copy.image.s2-5 img{
    display:block;
    transform: scale(1);
    animation:fade 5s forwards;
  }

  @keyframes fade{
    0%{
        opacity:1;
    }

    95%{
        opacity:1;
    }

    98%{
        opacity:0;
    }

    100%{
        opacity:0;
    }
  }


  
  .swiper-slide-active {
    /*アクティブなスライドが一番上に来るように*/
    z-index: 2;
  }
  
  .swiper-slide-active .image-box.copy-box,
  .swiper-slide-active .copy.image{
    transition-delay: 0s;
    transition-duration: 0.7s;
    transform: translateX(0%);
  }

  

  /*  */

.mv-slide img{
    width:100%;
}

.mv-content{
    position:relative;
}

.mv-content{
    overflow:hidden;
}


.mv-copy{
    z-index:5;
    max-width:1300px;
    width:70%;
    margin:0 auto;
    position:absolute;
    top:23vw;
    left:0;
}


.copy.image img{
    max-width:1300px;
    width:100%;
    height:auto;
}

@media screen and (max-width:768px){

    .mv-copy{
        width:100%;
        top:18vw;
    }

    .copy.image img{
        width:90%;
    }
}

@media screen and (max-width:480px){

    .mv-copy{
        top:110vw;
        left:-2%;
    }

    .copy.image img{
        width:116.6667vw;
    }
}


/* h2共通 */

.h2-col{
    text-align: center;;
}

h2{
    font-family:"minion-pro-caption",serif;
    font-weight:700;
    font-style:normal;
    font-size:47px;
    line-height:0.75;
}

.h2-jp{
    color:#CE6C4A;
    font-size:17px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:500;
    letter-spacing: 0.2em;
    white-space: nowrap;
}

.h2-row .h2-en,
.h2-row .h2-jp{
    display:block;
}

.h2-row{
    display:flex;
    align-items: center;
}

.h2-row .h2-jp{
    position:relative;
    margin-left:40px;
}

.h2-row .h2-jp::before{
    content:"";
    width:1px;
    height:61px;
    background-color:#ACA596;
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    left:-20px;
}

.square-back{
    box-sizing: border-box;
    padding:70px 100px;
    width:fit-content;
    position:absolute;
    top:-100px;
    z-index:4;
    padding-bottom:0;

}

@media screen and (max-width:768px){
    .square-back{
        padding:50px 50px;
        top:-70px;
        padding-bottom:0;
    }
}

@media screen and (max-width:480px){
    .square-back{
        position:static;
        padding:50px 0;
        margin:0 auto;
    }
}

.square-back.grey{
    background-color:#F4F4F4;
}

.square-back.left{
    left:0px;
}

.square-back.white{
    background-color: #fff;
}

.square-back.right{
    right:0;
}

@media screen and (max-width:768px){
    h2{
        font-size:37.6px;
    }
    
    .h2-jp{
        font-size:16px;
    }
}

@media screen and (max-width:480px){
    h2{
        font-size:35px;
    }

    .h2-jp{
        font-size:15px;
        letter-spacing:0.06em;
    }
}

/* トップページ　メッセージ */

#top-message{
    background-image: url(img/massage-back.jpg);
    background-position: center;
    background-size:cover;
}


.top-message-content{
    padding-top:200px;
    padding-bottom:320px;
}

@media screen and (max-width:768px){
    .top-message-content{
        padding-top:150px;
        padding-bottom:250px;
    }
}

@media screen and (max-width:480px){
    .top-message-content{
        padding-top:70px;
        padding-bottom:70px;
    }
}

.top-message-maincopy{
    max-width:735px;
    width:90%;
    display:block;
    margin:0 auto;
    text-align: center;
    margin:25px auto;
}

@media screen and (max-width:480px){
    .top-message-maincopy{
        margin:20px auto;
    }
}

.frame-box-001 {
	padding: 30px;
	position: relative;
    font-size:26px;
    font-weight:600;
    letter-spacing:0.08em;
    line-height:1.8;
}

@media screen and (max-width:480px){
    .frame-box-001 {
        padding: 20px;
        position: relative;
        font-size:22px;
    }
}

.frame-box-001::before, .frame-box-001::after {
	content: '';
	width: 50px;
	height: 50px;
	position: absolute;
}

@media screen and (max-width:480px){
    .frame-box-001::before, .frame-box-001::after {
        width: 30px;
        height: 30px;
    }
}

.frame-box-001::before {
	border-left: solid 1px #CE6C4A;
	border-top: solid 1px #CE6C4A;
	top: 0;
	left: 0;
}

.frame-box-001::after {
	border-right: solid 1px #CE6C4A;
	border-bottom: solid 1px #CE6C4A;
	bottom: 0;
	right: 0;
}

.message-img{
    margin:25px auto;
}

.message-img img{
    max-width:735px;
    width:90%;
    margin:0 auto;
    display: block;
}

.top-message-text{
    text-align: center;
}

.top-message-text p{
    font-size:16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:500;
    letter-spacing:0.1em;
    line-height:1.875;
}

@media screen and (max-width:768px){
    .top-message-text p{
        letter-spacing:0.02em;
    }
}

@media screen and (max-width:480px){
    .top-message-text p{
        width:90%;
        margin:0 auto;
        text-align: left;;
        line-height:2.8rem;
    }
}

.message-detail a{
    margin:0 auto;
    margin-top:45px;
}

@media screen and (max-width:480px){
    .message-detail a{
        margin:0 auto;
        margin-top:50px;
    }
}



/* 詳しく見るボタン統一 */

.btn-arrow{
    position:relative;
    z-index:5;
    margin-left:20px;
}

.btn-arrow::before{
    content:"";
    position:absolute;
    background-color:#ACA596;
    width:70px;
    height:70px;
    box-sizing: border-box;
    display:block;
    border-radius: 200px;
    z-index:0;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
}

.btn-arrow::after{
    content:"";
    position:absolute;
    background-color:#CE6C4A;
    width:70px;
    height:70px;
    box-sizing: border-box;
    display:block;
    border-radius: 200px;
    z-index:0;
    left:50%;
    top:50%;
    opacity:0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity .3s, transform 1.5s;
}

.detail-btn a:hover .btn-arrow::after{
    opacity: 1;
    transform:translate(-50%, -50%) scale(1);
    transition-delay: 0s;
    transition: opacity 0s, transform .3s ease-in-out;
}

.btn-arrow img{
    width:14.33px;
    height:auto;
    padding:29px;
    position:relative;
    z-index:5;
}

.detail-btn a{
    display:flex;
    align-items: center;
    font-size:16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:600;
    width:fit-content;
}

.link-name{
    display:block;
}

.link-text{
    height:18px;
    overflow:hidden;
}

.link-name.hover{
    padding-top:10px;
    transition:0;
}

.detail-btn a:hover .link-name{
    transform:translateY(-29px);
    transition:0.5s;
}


@media screen and (max-width:768px){

    .btn-arrow::before{
        width:65px;
        height:65px;
    }
    
    .btn-arrow::after{
        width:65px;
        height:65px;
    }

    .btn-arrow img{
        width:13.5px;
        padding:12px;

    }

    .detail-btn a{
        font-size:15px;
    }

    
    .detail-btn a:hover .link-name{
        transform:translateY(-28px);
    }
}

@media screen and (max-width:480px){

    .btn-arrow::before{
        width:50px;
        height:50px;
    }
    
    .btn-arrow::after{
        width:50px;
        height:50px;
    }

    .btn-arrow img{
        width:12px;
        padding:11px;

    }

    .detail-btn a{
        font-size:14px;
    }

    .btn-arrow{
        margin-left:20px;
    }
}

/*  */




/* トップページ　事業内容 */


#top-business{
    background-color:#F4F4F4;
    position:relative;
    padding-bottom:120px;
}

.top-business-content{
    width:100%;
    margin:0 auto;
}

@media screen and (max-width:480px){
    #top-business{
        padding-bottom:70px;
    }

    .top-business-content{
        padding-top:50px;
    }
}


.top-business-explain{
    width:100%;
    margin:0 auto;
    background-color:#F4F4F4;
    padding-top:120px;
}

.a-top-business{
    height:31.38vw;
    position:relative;
    margin-top:80px;
}

.a-top-business:first-child{
    margin-top:0px;
}

.a-top-business-img img{
    width:45.36vw;
    transition:1s;
}

.a-top-business-img,
.a-top-business-text{
    position:absolute;
}

.a-top-business-img{
    z-index:3;
    width:45.36vw;
    height:26.46vw;
    overflow:hidden;
}

.a-top-business:hover .a-top-business-img img{
    scale:1.1;
}


.a-top-business-text{
    z-index:2;
    background-color:#fff;
    padding:6.9vw 8.46vw 3.46vw 12.38vw;
    width:38.15vw;
}

.a-top-business-img.left{
    bottom:0;
    left:0;
}

.a-top-business-text.right{
    right:0;
    top:0;
}

.a-top-business-title{
    font-size:2.3vw;
    font-weight:600;
    letter-spacing:0.15em;
    font-family: 'Noto Sans JP', sans-serif;
    position:relative;
}


.a-top-business-title::before{
    content:"";
    width:35px;
    height:4px;
    background-color: #CE6C4A;
    position:absolute;
    border-radius: 100px;
    left:0;
    top:-30px;
}

.a-top-business-explain{
    font-size:1.53vw;
    letter-spacing:0.12em;
    line-height:1.5;
    margin-top:2vw;
    width:fit-content;
}

.business-detail.right a{
    margin-left: auto;
    margin-top:3.07vw;
}

@media screen and (min-width:1300px){
    .a-top-business-title{
        font-size:30px;
    }

    .a-top-business-explain{
        font-size:20px;
        margin-top:25px;
    }
    .business-detail.right a{
        margin-top:30px;
    }
}



.a-top-business-text.left{
    top:0;
    left:0;
    padding-left:8.46vw;
    padding-right:12.38vw;
}

.a-top-business-img.right{
    bottom:0;
    right:0;
}

@media screen and (max-width:480px){
    .top-business-explain{
        padding-top:5px;
    }
}

/* レスポンシブVW */



@media screen and (max-width:900px){

    .res-9-none{
        display:none;
    }

    .a-top-business-img,
    .a-top-business-text{
        position:static;
    }

    .a-top-business{
        max-width:900px;
        width:90%;
        margin:0 auto;
        height:fit-content;
        display: flex;
        align-items: center;
        margin-top:50px;
    }
    
    .a-top-business-img,
    .a-top-business-img img{
        width:300px;
        height:300px;;
    }

    .a-top-business-img img{
        object-fit: cover;
    }

    .a-top-business-text{
        padding:30px 50px;
        width:calc(100% - 300px);
        box-sizing: border-box;
        text-align: justify;
    }

    .a-top-business-title{
        font-size:18px;
        margin-top:10px;
        letter-spacing:0.04em;
    }

    
    .a-top-business-title::before{
        width:30px;
        left:-30px;
        top:50%;
        transform: translateY(-50%) rotate(90deg);
    }
    
    .a-top-business-explain{
        font-size:16px;
        margin-top:1.81vw;
    }
    
    .business-detail.right a{
        margin-top:15px;
    }
    
    .a-top-business-text.left{
        padding:30px 50px;
    }

}

@media screen and (max-width:700px){
    .a-top-business{
        flex-direction: column;
    }
    .flex-reverse{
        flex-direction: column-reverse;
    }

    .a-top-business-img img,
    .a-top-business-img{
        width:100%;
        height:auto;
    }
    .a-top-business-text{
        width:100%;
    }
}

@media screen and (max-width:480px){
    .a-top-business-text{
        padding:20px 30px;
    }
    
    .a-top-business-text.left{
        padding:20px 30px;
    }

    .a-top-business{
        margin-top:50px;
    }

}


/* トップページ　お知らせ */

.top-news-content .no-post{
    padding:100px 0;
}


.top-news-img{
    z-index:0;
    width:100%;
    height:37.5vw;
    overflow:hidden;
}

.top-news-img img{
    width:100%;
    transition:1s;
}

@media screen and (max-width:480px){
    .top-news-img{
        z-index:0;
        width:100%;
        height:50vw;
        overflow:hidden;
    }
}

.zoom{
    animation:effect-zoom 2s forwards;
}

@keyframes effect-zoom{
    0%{
        scale:1;
    }

    100%{
        scale:1.1;
    }
}

.top-news-h2{
    padding-left:200px;
    padding-right:200px;
}

@media screen and (max-width:768px){
    .top-news-h2{
        padding-left:60px;
        padding-right:60px;
    }
    
}

.top-news-wrap-container{
    position: relative;
}

@media screen and (max-width:768px){
    .top-news-wrap-container{
        padding-top:0px;
    }
}


.top-news-wrap{
    padding-top:110px;
    max-width:1000px;
    width:90%;
    margin:0 auto;
}

@media screen and (max-width:768px){
    .top-news-wrap{
        padding-top:50px;
    }
}

@media screen and (max-width:480px){
    .top-news-wrap{
        padding-top:0px;
    }
}

.a-index-news-head{
    display:flex;
    align-items: center;
}

.a-index-news-title{
    display:flex;
    justify-content: space-between;
    align-items: center;
    font-size:16px;
    margin-top:15px;
    font-weight:500;
    letter-spacing: 0.08em;
    transition: .3s;
    box-sizing: border-box;
    height:35px;
}

@media screen and (max-width:480px){
    .a-index-news-title{
        font-size:15px;
    }
}

.news-arrow .arrow-hover{
    display:none;
    transition:0.3s;
}


.news-arrow .arrow-static{
    transition:0.3s;
}

.a-index-news:hover .news-arrow .arrow-hover{
    display:inherit;
}

.a-index-news:hover .news-arrow .arrow-static{
    display:none;
}


.a-index-news:hover .a-index-news-title {
    transition: .3s;
    transform:translateX(10px);
}

.a-index-news:hover .a-index-news-title p{
    color:#CE6C4A;
    transition: .3s;
}

@media screen and (max-width:768px){
    .a-index-news-title p{
        width:90%;
        line-height:1.5;
    }
}

@media screen and (max-width:480px){
    .a-index-news-title p{
        width:85%;
        line-height:1.5;
    }
}



.a-index-news{
    border-bottom:1px solid rgba(172,165,150,0.5);
    padding:40px 0;
    box-sizing:border-box;
    height:150px;
}

@media screen and (max-width:480px){
    .a-index-news{
        padding:30px 0;
    }
}



.news-arrow img{
    width:18.22px;
}

@media screen and (max-width:480px){
    .news-arrow img{
        width:16px;
    }
}

.a-index-news-category{
    box-sizing: border-box;
    width:121px;
    height:30px;
    background-color:#ACA596;
    border-radius:2px;
}

@media screen and (max-width:480px){
    .a-index-news-category{
        box-sizing: border-box;
        width:110px;
        height:27px;
    }
}


.a-index-news-category p{
    color:#fff;
    font-size:14px;
    letter-spacing:0.2em;
    font-weight:bold;
    text-align: center;
    padding-top:7px;
}

@media screen and (max-width:480px){
    .a-index-news-category p{
        font-size:13px;
        padding-top:6px;
    }
}

.a-index-news-date{
    font-size:16px;
    font-weight:400;
    font-family: 'Open Sans', sans-serif;
    margin-left:25px;
    letter-spacing:0.06em;
}

@media screen and (max-width:480px){
    .a-index-news-date{
        font-size:15px;
        margin-left:15px;
    }
}

.detail-btn.right a{
    margin-left:auto;
}

.top-news-btn{
    max-width:1000px;
    width:90%;
    margin:0 auto;
    margin-top:65px;
}

@media screen and (max-width:768px){
    .top-news-btn{
        margin-top:40px;
    }
}

@media screen and (max-width:480px){
    .top-news-btn{
        margin-top:30px;
    }
}


/* トップページ　会社概要 */

#top-company{
    padding-top:100px;
}

.top-company-content{
    position:relative;
    background-color:#F4F4F4;
    padding-top:100px;
}

@media screen and (max-width:480px){
    .top-company-content{
        padding-top:50px;
    }
}

.top-company-text-box{
    max-width:1000px;
    width:90%;
    background-color:#fff;
    margin:0 auto;
    position:relative;
    z-index:2;
}

.a-index-company-info{
    display:flex;
    padding:30px 0;
}

.a-index-company-info + .a-index-company-info{
    border-top:1px solid rgba(172,165,150,0.5);
}

.a-index-company-info-title{
    width:147px;
    font-size:14px;
    color:#ACA596;
    font-weight:600;
    letter-spacing:0.2em;
    line-height:1.43;
    padding-top:3px;
    white-space: nowrap;
}

@media screen and (max-width:768px){
    .a-index-company-info-title{
        width:100px;
    }
}

@media screen and (max-width:480px){
    .a-index-company-info-title{
        width:90px;
        letter-spacing:0.04em;
        padding-top:0;
    }
}

.a-index-company-info-data{
    font-size:16px;
    letter-spacing:0.08em;
    font-weight:500;
    line-height:1.5;
    width:calc(100% - 147px);
    color:#333333;
}


.index-access{
    width:calc(100% - 147px);
}

.index-access .a-index-company-info-data{
    width:100%;
}

@media screen and (max-width:768px){
    .a-index-company-info-data{
        width:calc(100% -100px);
    }
    
    .index-access{
        width:calc(100% - 100px);
    }
}

@media screen and (max-width:480px){
    .a-index-company-info-data{
        font-size:14px;
        letter-spacing:0;
        width:calc(100% -70px);
    }

    .index-access{
        width:calc(100% - 70px);
    }
}

.top-company-text-box-content{
    padding-top:50px;
    padding-bottom:70px;
    max-width:891px;
    width:90%;
    margin:0 auto;
}

@media screen and (max-width:480px){
    .top-company-text-box-content{
        padding-top:30px;
        padding-bottom:50px;
    }
}

.index-access-text{
    font-size:14px;
    letter-spacing:0.1em;
    line-height:2;
    margin-top:30px;
    color:#333333;
}

@media screen and (max-width:480px){
    .index-access-text{
        font-size:13px;
        letter-spacing:0.04em;
        margin-top:20px;
    }

    .index-access-text .a-text{
        margin-top:10px;
        line-height:1.5;
    }
}

.top-company-btn{
    margin-top:-50px;
}

@media screen and (max-width:768px){
    .top-company-btn{
        margin-top:0px;
        margin-right:10px;
    }
}


.g-map{
    position:relative;
    z-index:0;
    margin-top:-110px;
}

.g-map iframe{
    width:100%;
    height:516px;
}

@media screen and (max-width:768px){
    .g-map{
        margin-top:-70px;
    }
    .g-map iframe{
        height:300px;
    }
}

@media screen and (max-width:480px){
    .g-map{
        margin-top:0px;
    }
    .g-map iframe{
        height:200px;
    }
}

/* トップページ　コンタクト */

#top-contact{
    background-image: url(img/contact-back.jpg);
    background-size:cover;
    background-position: center;
}

.top-contact-btn a{
    display:block;
    width:fit-content;
}

.top-contact-tel-btn{
    background-color:#ACA596;
    border-radius:2px;
    border:1px solid #ACA596;
}

.top-contact-contact-btn{
    background-color:#CE6C4A;
    border-radius:2px;
    border:1px solid #CE6C4A;
    transition:.3s;
}

.top-contact-contact-btn,
.top-contact-tel-btn{
    box-sizing: border-box;
    display:block;
    width:370px;
    height:85px;
    margin-top:17px;
}

@media screen and (max-width:480px){
    .top-contact-contact-btn,
.top-contact-tel-btn{
    width:280px;
    height:70px;
    margin-top:17px;
}
}

.top-contact-tel-btn{
    padding-top:25px;
    transition:.3s;
}

@media screen and (max-width:480px){
    .top-contact-tel-btn{
        padding-top:20px;
    }
}


.top-contact-contact-btn{
    padding-top:30px;
}

@media screen and (max-width:480px){
    .top-contact-contact-btn{
        padding-top:25px;
    }
}

.btn-bg .btn-hover{
    display:none;
    transition:.3s;
}

.btn-bg:hover .btn-static{
    display:none;
}
.btn-bg:hover .btn-hover{
    display:inherit
}

.top-contact-tel-btn:hover,
.top-contact-contact-btn:hover
{
    background-color:#fff;
}

.top-contact-tel-btn img{
    width:201.6px;
    display:block;
    margin:0 auto;
}

@media screen and (max-width:480px){
    .top-contact-tel-btn img{
        width:160px;
    }
}

.top-contact-contact-btn img{
    width:152px;
    display:block;
    margin:0 auto;
}

@media screen and (max-width:480px){
    .top-contact-contact-btn img{
        width:132px;
    }
}
    

.top-contact-content{
    display:flex;
    align-items: center;
    max-width:860px;
    width:90%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin:0 auto;
    padding-top:100px;
    padding-bottom:120px;
    gap:20px;
}

@media screen and (max-width:880px){
    .top-contact-content{
        justify-content: space-evenly;
        gap:50px;
    }
}

@media screen and (max-width:480px){
    .top-contact-content{
        padding-bottom:70px;
        padding-top:70px;
    }
}
.top-contact-right p{
    font-size:15px;
    text-align: center;
    letter-spacing:0.06em;
    font-weight:500;
}

/* パンくずリスト */

.brunch-container{
    max-width:1000px;
    width:90%;
    margin:0 auto;
    margin-top:30px;
}

@media screen and (max-width:480px){
    .brunch-container{
        margin-top:0px;
    }
}

.brunch{
    width:fit-content;
    margin-left:auto;
    font-size:14px;
}



.brunch-div{
    padding:0 10px;
    color:#ACA596;
}

.current-item{
    color:#ACA596;
}

/* 固定ページ　メッセージ */

#message{
    width:100%;
}
.message-mv img{
    width:100%;
}

#message{
    width:100%;
}

.message-content{
    position:relative;
    padding-bottom:60px;
}

@media screen and (max-width:1000px){
    .message-content{
        padding-top:10px;
    }
}

@media screen and (max-width:480px){
    .message-content{
        padding-top:0px;
    }
}

.message-h2{
    background-color:#fff;
}

.message-main-text{
    max-width:1000px;
    width:90%;
    margin:0 auto;
}

.message-main-textarea{
    background-image: url(img/message-maintext-back.jpg);
    background-size: cover;
    background-position: center;
    padding-top:200px;
    padding-bottom:180px;
}

@media screen and (max-width:768px){
    .message-main-textarea{
        padding-top:150px;
        padding-bottom:140px;
    }
}

.message-maincopy{
    font-size:28px;
    font-weight:600;
    letter-spacing:0.08em;
    line-height:1.46;
}

@media screen and (max-width:480px){
    .message-maincopy{
        font-size:25px;
    }
}

.message-subcopy{
    font-size:16px;
    letter-spacing:0.1em;
    line-height:1.875;
    margin-top:40px;
}

@media screen and (max-width:768px){
    .message-subcopy{
        letter-spacing:0.08em;
    }
}

@media screen and (max-width:480px){
    .message-subcopy{
        text-align: justify;
    }
}

.before-border{
    position:relative;
}

.before-border::before{
    position:absolute;
    content:"";
    width:35px;
    height:4px;
    background-color: #CE6C4A;
    border-radius: 100px;
    left:0;
    top:-30px;;
}


.a-message-img.left img{
    min-width:1150px;
    width:90%;
}

@media screen and (max-width:768px){
    .a-message-img.left img{
        min-width:600px;
        width:90%;
    }
}

@media screen and (max-width:480px){
    .a-message-img.left img{
        width:100%;
        min-width:0;
    }
}

.a-message{
    position:relative;
    height:840px;
    overflow-x: hidden;
}

@media screen and (max-width:768px){
    .a-message{
        height:670px;
    }

    .a-message.left{
        height:585px;
    }
}

@media screen and (max-width:580px){
    .a-message{
        height:700px;
    }

    .a-message.left{
        height:640px;
    }
}

@media screen and (max-width:480px){
    .a-message{
        height:fit-content;
    }

    .a-message.left{
        height:fit-content;
    }
}


.a-message-text p{
    font-size:16px;
    max-width:721px;
    letter-spacing: 0.1em;
    line-height:1.875;
}

@media screen and (max-width:768px){
    .a-message-text p{
        max-width:721px;
        width:100%;
    }
}

.a-message-text{
    background-color:#fff;
    box-sizing: border-box;
    max-width:971px;
    width:90%;
    padding:112px 110px;
    position:absolute;
    bottom:0;
    text-align: justify;
    transform: translate(0, 0px); 
}

@media screen and (max-width:768px){
    .a-message-text{
        padding:70px 50px;
    }
}

@media screen and (max-width:480px){
    .a-message-text{
        position:static;
        padding:30px 30px;
        padding-top:60px;
        width:100%;
    }
}

.a-message-text.right{
    right:0;
}

.a-message-img.right img{
    min-width:1150px;
    width:90%;
    margin-left:auto;
}

.a-message-img.right img.only-sp-none{
    display:block;
}

@media screen and (max-width:768px){
    .a-message-img.right img{
        min-width:600px;
        width:90%;
    }
}

@media screen and (max-width:480px){
    .a-message-img.right img{
        width:100%;
        min-width:0;
    }

    .a-message-img.right img.only-sp-none{
        display:none;
    }
}

/* 固定ページ　会社概要 */

.company-mv img{
    width:100%;
}

.company-content{
    position:relative;
    padding-bottom:200px;
}

@media screen and (max-width:1000px){
    .company-content{
        padding-top: 10px;
    }
}

@media screen and (max-width:768px){
    .company-content{
        padding-bottom:150px;
    }
}

@media screen and (max-width:480px){
    .company-content{
        padding-bottom:70px;
        padding-top:0;
    }
}

.company-info-list{
    max-width:720px;
    width:90%;
    margin:0 auto;
    margin-top:100px;
}

@media screen and (max-width:480px){
    .company-info-list{
        margin-top:50px;
    }
}

.a-company-info{
    display:flex;
    padding:25px 0;
}

.a-company-info + .a-company-info{
    border-top:solid 1px rgba(217,217,217,0.8);
}

.a-company-info-title{
    width:100px;
    font-size:18px;
    color:#938D81;
    letter-spacing:0.1em;
    font-weight:500;
    PADDING-TOP:5px;
    position:relative;
}

@media screen and (max-width:480px){
    .a-company-info-title{
        width:90px;
        font-size:16px;
    }
}

.a-company-info-title::after{
    content:"";
    width:100%;
    height:1px;
    background-color:#ACA596;
    position:absolute;
    bottom:-26px;
    left:0;
    z-index:2;
}

.a-company-info-title.no-border::after{
    width:0;
}

.a-company-info-data{
    font-size:16px;
    font-weight:500;
    letter-spacing:0.08em;
    line-height:1.875;
    margin-left:120px;
    width:calc(100% - 100px);
    color:#333333;
}

@media screen and (max-width:768px){
    .a-company-info-data{
        margin-left:30px;
        letter-spacing:0.06em;
    }
}

@media screen and (max-width:480px){
    .a-company-info-data{
        margin-left:10px;
        letter-spacing:0.04em;
        font-size:15px;
    }
}

/* 固定ページ　会社概要ーアクセス */

#access{
    background-color:#F4F4F4;
}

.access-content{
    position:relative;
    padding-top:120px;
    padding-bottom:120px;
}

@media screen and (max-width:768px){
    .access-content{
        padding-top:70px;
        padding-bottom:70px;
    }
}

@media screen and (max-width:480px){
    .access-content{
        padding-top:50px;
    }
}

.access.g-map{
    max-width:1000px;
    width:90%;
    height:426px;
    margin-top:0;
    margin:0 auto;
    overflow: hidden;
}

@media screen and (max-width:768px){
    .access.g-map{
        height:fit-content;
    }
}

.access.g-map iframe{
    width:100%;
}

.access-info-flex{
    display:flex;
    max-width:1000px;
    width:90%;
    justify-content: space-between;
    margin:0 auto;
    align-items: center;
    margin-top:50px;
}

@media screen and (max-width:768px){
    .access-info-flex{
        display:block;
    }
}

.access-address p{
    font-size:20px;
    letter-spacing:0.08em;
    font-weight:500;
    line-height:1.45;
    color:#333333;
}

@media screen and (max-width:480px){
    .access-address p{
        font-size:18px;
        letter-spacing:0.06em;
    }
}


.access-method p{
    font-size:16px;
    letter-spacing: 0.1em;
    line-height:1.75;
    color:#333333;
}

@media screen and (max-width:768px){
    .access-method{
        margin-top:20px;
    }
}

@media screen and (max-width:480px){
    .access-method p{
        font-size:14px;
        letter-spacing:0.04em;
    }
}

/* 固定ページ　事業内容 */

.business-mv img{
    width:100%;
}

.business-wrap{
    margin-top:80px;
}

@media screen and (max-width:768px){
    .business-wrap{
        margin-top:100px;
    }
}

@media screen and (max-width:480px){
    .business-wrap{
        margin-top:50px;
    }
}

.business-content{
    position:relative;
    padding-bottom:125px;
}

@media screen and (max-width:1000px){
    .business-content{
        padding-top:10px;
    }
}

@media screen and (max-width:480px){
    .business-content{
        padding-top:0px;
        padding-bottom:70px;
    }
}

.a-business{
    position:relative;
    max-width:1000px;
    width:100%;
    margin:0 auto;
    height:680px;
    margin-top:85px;
    scroll-margin-top: 220px;
}

@media screen and (max-width:768px){
    .a-business{
        height:fit-content;
        margin-top:50px;
        scroll-margin-top: 180px;
    }
}



.a-business:first-child{
    margin-top:0;
}

.a-business-img{
    position:relative;
}

.a-business-img .a-business-image{
    max-width:720px;
    width:90%;
    display:block;
}

@media screen and (max-width:768px){
    .a-business-img img{
        margin:0 auto;
    }
}

.a-business-img.right img{
    margin-left:auto;
}

.a-business-img.left img{
    margin-right:auto;
}


.a-business-img .a-business-img-shadow{
    width:1000px;
    height:394px;
    position:absolute;
    z-index:0;
    top:90px;
    z-index:-1;
    margin:0;
}




.a-business-img.right .a-business-img-shadow{
    right:-500px;
}

.a-business-img.left .a-business-img-shadow{
    left:-500px;
}

@media screen and (max-width:768px){
    .a-business-img-shadow{
        display:none !important;
    }
}

.a-business-textarea{
    background-color:#fff;
    position:absolute;
    padding-top:85px;
    padding-bottom:35px;
    bottom:0;
}

@media screen and (max-width:768px){
    .a-business-textarea{
        position:static;
        width:90%;
        margin:0 auto;
        box-sizing: border-box;
    }
}

.a-business-textarea.left{
    left:0;
    padding-right:90px;
}

.a-business-textarea.right{
    right:0;
    padding-left:90px;
}

@media screen and (max-width:1110px){
    .a-business-textarea.left{
        padding-left:50px;
    }
    
    .a-business-textarea.right{
        padding-right:50px;
    }
}

@media screen and (max-width:768px){
    .a-business-textarea.left{
        padding:20px;
        padding-top:60px;
    }
    
    .a-business-textarea.right{
        padding:20px;
        padding-top:60px
    }
}
.a-business-text-title{
    font-size:28px;
    font-weight:600;
    letter-spacing:0.08em;
    color:#333333;
}

@media screen and (max-width:768px){
    .a-business-text-title{
        font-size:25px;
    }
}

@media screen and (max-width:480px){
    .a-business-text-title{
        font-size:20px;
    }
}

.a-business-text p{
    font-size:16px;
    letter-spacing: 0.1em;
    text-align: justify;
    max-width:560px;
    width:100%;
    margin-top:25px;
    line-height:1.875;
    color:#333333;
}

@media screen and (max-width:480px){
    .a-business-text p{
        font-size:16px;
        letter-spacing: 0.06em;
        line-height:1.6;
        margin-top:20px;
    }
}


/* 固定ページ コンタクト*/

.contact-content{
    position:relative;
    padding-bottom:150px;
}

@media screen and (max-width:800px){
    .contact-content{
        padding-top:50px;
        padding-bottom:100px;
    }
}

@media screen and (max-width:480px){
    .contact-content{
        padding-top:0px;
        padding-bottom:70px;
    }
}

.contact-mv img{
    width:100%;
}

.contact-step img{
    display:block;
    max-width:390px;
    width:90%;
    margin:0 auto;
    margin-top:70px;
}

.contact-text{
    text-align: center;
    font-size:18px;
    letter-spacing:0.08em;
    font-weight:600;
    margin-top:75px;
}

@media screen and (max-width:480px){
    .contact-text{
        font-size:16px;
        margin-top:50px;
        line-height:1.6;
    }
}

.after-border{
    position:relative;
}

.after-border::after{
    content:"";
    width:30px;
    height:4px;
    background-color: #CE6C4A;
    border-radius:100px;
    position:absolute;
    left:50%;
    transform: translateX(-50%);
    bottom:-27px;
}

.mw_wp_form .error{
	font-size:14px !important;
	margin:3px 0;
}

.mw_wp_form .error:last-child{
	margin-bottom:50px !important;
}

    /* 固定ページ　コンタクトフォーム */

 .contact-form{
    max-width:800px;
    width:90%;
    margin:0 auto;
 }

 .contact-form form{
    margin-top:100px;
 }

 @media screen and (max-width:480px){
    .contact-form form{
        margin-top:70px;
     }
 }

 .a-form-content{
    margin-top:20px;
 }

 .a-form-content:first-child{
    margin-top:0px;
 }
 .a-form-content label{
    font-size:16px;
    font-weight:600;
    letter-spacing:0.08em;
    width:216px;
    margin-right:80px;
    display:flex;
    white-space: nowrap;
    align-items: center;
 }

 @media screen and (max-width:900px){
    .a-form-content label{
        margin-right:50px;
     }
 }

 @media screen and (max-width:870px){
    .a-form-content label{
        margin-right:0px;
        max-width:500px;
        width:100%;
        margin:0 auto;
        margin-bottom:10px;
     }
 }


 .required{
    background-color:#CE6C4A;
    color:#fff;
    font-size:14px;
    padding:5px 25px;
    display:block;
    width:fit-content;
    height:fit-content;
    margin-left:auto;
    white-space: nowrap;
 }

 @media screen and (max-width:870px){
    .required{
        margin-left:20px;;
     }
 }

 .kind-text{
    clear: both;
    font-size:18px;
    letter-spacing:0.08em;
    font-weight:600;
    padding-left:10px;
 }

 @media screen and (max-width:480px){
    .kind-text{
        font-size:16px;
     }
 }

 .mail-small{
    font-size:14px;
    color:#9A958C;
    display:block;
    white-space: nowrap;
    margin-top:-40px;
 }

 @media screen and (max-width:900px){
    .mail-small{
        font-size:13px;
        letter-spacing:0;
        width:216px;
     }
 }

 @media screen and (max-width:870px){
    .mail-small{
        margin-top:0px;
     }
 }


input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
    border:none;
    background-color:#F4F4F4;
    max-width:500px;
    width:100%;
    height:45px;
    box-sizing: border-box;
    padding:10px;
}

input[type="radio"]{
    accent-color:#CE6C4A;
    inline-size:1.8rem;
    block-size:2.2rem;
    display:inline-block;
}

.radio-right{
    margin-left:20px;
}

.contact-radio span{
	width:74px;
	display:block;
}


textarea{
    height:215px;
}
.form-flex{
    display:flex;
    align-items: center;;
 }

 @media screen and (max-width:870px){
    .form-flex{
        display:block;
        max-width:800px;
        width:90%;
        margin:0 auto;
        margin-top:30px;
     }
     .form-flex.margin-10{
        margin-top:10px;
     }
 }



 .form-flex.align-top{
    align-items: flex-start;
 }

 .form-input{
    display:flex;
    max-width:500px;
    width:calc(100% - 216px);
 }

 @media screen and (max-width:870px){
    .form-input{
        width:100%;
        margin:0 auto;
     }
 }


 .form-input input[type="text"].half-form{
    max-width:240px;
    width:90%;
    box-sizing: border-box;
}

.form-input input[type="text"].half-form.right{
    margin-left:18px;
}

@media screen and (max-width:480px){
    .form-input input[type="text"].half-form.right{
        margin-left:10px;
    }
}

::placeholder{
    color:#ACA596;
    font-weight:600;
    letter-spacing:0.08em;
}

.zip-button{
    background-color:#9A958C;
    width:170px;
    text-align: center;
    color:#fff;
    height:45px;
    box-sizing: border-box;
    font-size:18px;
    letter-spacing:0.08em;
    margin-left:30px;
    cursor: pointer;
	border:none;
}

@media screen and (max-width:480px){
    .zip-button{
        width:150px;
        height:45px;
        font-size:16px;
        margin-left:15px;
    }
}

.mw_wp_form_confirm .zip-button{
	display:none;
}

input[type="submit"]{
    background-color: #CE6C4A;
    border:none;
    color:#fff;
    font-size:18px;
    letter-spacing:0.1em;
    font-weight:600;
    box-sizing: border-box;
    width:370px;
    height:84px;
    margin:0 auto;
    display:block;
    margin-top:40px;
    cursor: pointer;
    border-radius:2px;
    -webkit-appearance: none;
}

@media screen and (max-width:480px){
    input[type="submit"]{
        font-size:16px;
        width:300px;
        height:75px;
        margin-top:30px;
    }
}

.privacy-confirm{
    font-size:16px;
    text-align: center;
    letter-spacing:0.08em;
    font-weight:600;
    line-height:1.875;
    margin-top:100px;
}

@media screen and (max-width:480px){
    .privacy-confirm{
        font-size:14px;
        letter-spacing:0.02em;
        line-height:1.6;
        text-align: justify;
        max-width:500px;
        width:90%;
        margin:0 auto;
        margin-top:30px;
    }
}

.privacy-confirm a{
    color:#CE6C4A;
    border-bottom:2px solid #CE6C4A;
}

/* 固定ページ　コンタクト　確認ページ */

.mw_wp_form_confirm .form-input{
    font-size:16px;
    letter-spacing:0.08em;
    color:#938D81;
}

.mw_wp_form_confirm .privacy-confirm{
	display:none;
}

.mw_wp_form_confirm .form-input br{
	display:none;
}

.mw_wp_form_confirm input[type="submit"]{
    margin-top:100px;
}

.mw_wp_form_confirm .email-confirm{
	display:none;
}

.mw_wp_form_confirm .zip-code::before{
	content:"〒 ";
}

/* 固定ページ　コンタクト　サンクスページ */

.thanks-content{
    padding-top:100px;
    padding-bottom:40px;
}

@media screen and (max-width:480px){
    .thanks-content{
        padding-top:50px;
        padding-bottom:50px;;
    }
}


.thanks-big{
    font-size:32px;
    font-weight:900;
    color:#3F3A39;
    text-align: center;
    letter-spacing: 0.08em;;
    line-height:1.47;
}

.thanks-big .inline-b{
    color:#3F3A39;
}

@media screen and (max-width:768px){
    .thanks-big{
        font-size:28px;
    }
}

@media screen and (max-width:480px){
    .thanks-big{
        font-size:25px;
        letter-spacing:0.04em;
        line-height:1.6;
    }
}

.thanks-content p{
    font-size:18px;
    text-align: center;
    line-height:1.56;
    margin-top:50px;
    letter-spacing:0.08em;
}

@media screen and (max-width:480px){
    .thanks-content p{
        font-size:15px;
        line-height:1.5;
        margin-top:30px;
    }
}

.thanks-content a{
    width:fit-content;
    display:block;
    margin:0 auto;
}

.home-btn{
    background-color:#ACA596;
    width:fit-content;
    padding:20px 40px;
    margin-top:70px;
    border-radius:2px;
    border:1px solid #ACA596;
    transition:.3s;
}

.home-btn:hover{
    background-color:#fff;
}


.home-btn span{
    color:#fff;
    font-size:18px;
    font-weight:600;
    letter-spacing:0.1em;
    transition:.3s;
}

.home-btn:hover.home-btn span{
    color:#ACA596;
}

@media screen and (max-width:480px){
    .home-btn span{
        font-size:16px;
    }
}

/* プライバシーポリシー */


.privacy-content .h2-en{
    font-size:37px;
    line-height:0.9;
    display:block;
    width:fit-content;
}

@media screen and (max-width:768px){
    .privacy-content .h2-en{
        font-size:35px;
    }
}

@media screen and (max-width:480px){
    .privacy-content .h2-en{
        font-size:32px;
    }

    .privacy-content .h2-row{
        max-width:350px;
        width:90%;
        margin:0 auto;
    }

    .privacy-content .h2-jp{
        font-size:14px;
    }
}


.privacy-mv img{
    width:100%;
}

.privacy-content{
    position:relative;
    padding-bottom:150px;
}

@media screen and (max-width:1000px){
    .privacy-content{
        padding-top:20px;
    }
}

@media screen and (max-width:480px){
    .privacy-content{
        padding-top:0;
    }
}

.privacy-h3{
    font-size:32px;
    text-align: center;
    margin-top:80px;
    font-weight:600;
}

@media screen and (max-width:480px){
    .privacy-h3{
        font-size:28px;
        margin-top:50px;
    }
}

.privacy-explain{
    font-size:16px;
    text-align:center;
    margin-top:20px;
    letter-spacing:0.04em;
    line-height:1.6;
}

@media screen and (max-width:768px){
    .privacy-explain{
        width:90%;
        margin:0 auto;
        margin-top:20px;
        text-align: justify;
    }
}

@media screen and (max-width:480px){
    .privacy-explain{
        font-size:15px;
    }
}

.privacy-list{
    max-width:720px;
    width:90%;
    margin:0 auto;
    margin-top:100px;
    font-size:18px;
    font-weight:600;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing:0.04em;
    line-height:1.78;
}

@media screen and (max-width:768px){
    .privacy-list{
        margin-top:70px;
    }
}

@media screen and (max-width:480px){
    .privacy-list{
  
    }
}

.a-privacy-list + .a-privacy-list{
    margin-top:50px;
}

@media screen and (max-width:480px){
    .a-privacy-list + .a-privacy-list{
        margin-top:30px;
    }
}

.a-privacy-content{
    font-size:16px;
    font-weight:400;
    font-family: 'Noto Sans JP', sans-serif;
    margin-top:24px;
    line-height:1.5;
    text-align: justify;
}

@media screen and (max-width:480px){
    .a-privacy-content{
        margin-top:20px;
    }
}

.a-privacy-list{
    list-style:decimal;
    list-style-position: inside;
}


/* インデックスページ　お知らせ　一覧 */

.news-mv img{
    width:100%;
}

.news-content{
    position:relative;
    padding-bottom:150px;
}

@media screen and (max-width:1000px){
    .news-content{
        padding-top:10px;
    }
}

@media screen and (max-width:480px){
    .news-content{
        padding-top:0;
    }
}

.news-index-wrap{
    max-width:800px;
    width:90%;
    margin:0 auto;
    margin-top:70px;
}

.news-index-h3{
    font-size:32px;
    text-align: center;
    margin-top:70px;
    font-weight:600;
    letter-spacing:0.15em;
}

@media screen and (max-width:480px){
    .news-index-h3{
        font-size:28px;
        margin-top:50px;
    }
}

@media screen and (max-width:480px){
    .news-index-wrap.index{
        margin-top:50px;
    }
}

/* ページナビ */
.page-navi{
    max-width:800px;
    width:90%;
    margin:0 auto;;
    margin-top:50px;
}

.wp-pagenavi{
    width:fit-content;
    margin-left:auto;
    font-size:15px;
    margin-right:-10px;
}

@media screen and (max-width:480px){
    .wp-pagenavi{
        font-size:13px;
    }
}

.pages {/* 左の表記 */
    margin-right: 20px;
    display:none;
}

span.pages{
    border:none !important;
    padding-right:20px !important;
}

.wp-pagenavi .current,
.wp-pagenavi a.page {/* ボタン */
    margin: 0 10px 6px 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 1;
    padding-top:11px;
    text-align: center;
    box-sizing: border-box;
}

@media screen and (max-width:480px){
    .wp-pagenavi .current,
    .wp-pagenavi a.page {
        width: 35px;
        height: 35px;
        padding-top:10px;
    }
}

.wp-pagenavi a, .wp-pagenavi span{
    border:1px solid #9A958C !important;
    color:#938D81;
}


.wp-pagenavi .current {/* カレント数字 */
    border: none;
    background: #CE6C4A;
    color: #fff;
}
.wp-pagenavi a.page:hover {/* マウスオーバー */
    background: #CE6C4A;
    color: #fff;
    border:1px solid rgba(0,0,0,0) !important;
}
.wp-pagenavi .first,
.wp-pagenavi .extend {/* ... */
    margin-right: 10px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {/* 記号の削除 */
    display: none;
}


/* 記事ページ */

.single-mv img{
    width:100%;
}

.single-content{
    position:relative;
    padding-bottom:150px;
}

@media screen and (max-width:1000px){
    .single-content{
        padding-top:10px;
    }
}

@media screen and (max-width:480px){
    .single-content{
        padding-top:0px;
        padding-bottom:70px;
    }
}

.a-post{
    max-width:730px;
    width:90%;
    margin:0 auto;
    margin-top:110px;
}

@media screen and (max-width:480px){
    .a-post{
        margin-top:50px;
    }
    
}

.a-post-head-flex{
    display:flex;
    align-items: center;
}

.a-post-category{
    background-color:#ACA596;
    box-sizing: border-box;
    width:121px;
    height:30px;
    text-align: center;
    padding-top:6px;
}

.a-post-category span{
    color:#fff;
    font-size:14px;
    letter-spacing:0.2em;
    font-weight:600;
}


@media screen and (max-width:480px){
    .a-post-category{
        width:110px;
        height:27px;
        padding-top:6px;
    }
    
    .a-post-category span{
        font-size:13px;
    }
}

.a-post-date{
    font-size:18px;
    font-weight:500;
    font-family: 'Open Sans', sans-serif;
    display:block;
    margin-left:40px;
    letter-spacing:0.06em;
}

@media screen and (max-width:480px){
    .a-post-date{
        font-size:16px;
        margin-left:15px;
    }
}

.a-post-title h3{
    font-size:26px;
    font-weight:600;
    line-height:1.46;
    letter-spacing:0.08em;
    margin-top:25px;
}

@media screen and (max-width:480px){
    .a-post-title h3{
        font-size:22px;
    }
}

.a-post-head{
    padding-bottom:30px;
    border-bottom:solid 1px rgba(217,217,217,0.8);
}

.a-post-body{
    margin-top:50px;
}

@media screen and (max-width:480px){
    .a-post-body{
        margin-top:30px;
    }
}

.a-post-body p{
    margin:20px 0;
}

.a-post-body img{
    width:100%;
    display:block;
    margin:50px 0;
}

@media screen and (max-width:480px){
    .a-post-body img{
        margin:30px 0;
    }
}

.a-post-body p{
    font-size:16px;
    line-height:1.75;
    letter-spacing:0.08em;
    text-align: justify;
}

.no-post h3{
    text-align: center;
    font-size:20px;
    font-weight:600;
    letter-spacing:0.2em;
}

.no-post{
    margin:30px auto;
    padding-top:100px;
}

/* 記事ページ見出しスタイル */

.a-post-body h2{
    font-size:25px;
    border-bottom:4px dotted #CE6C4A;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:600;
    letter-spacing:0.1em;
    padding:10px 0;
    padding-bottom:12px;
    margin:20px 0;
}

@media screen and (max-width:480px){
    .a-post-body h2{
        font-size:22px;
        border-bottom:3px dotted #CE6C4A;
        margin:15px 0;
    }
}

.a-post-body h3{
    font-size:20px;
    color:#CE6C4A;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:500;
    letter-spacing:0.08em;
    padding-bottom:0px;
    margin:10px 0;
}

@media screen and (max-width:480px){
    .a-post-body h3{
        font-size:18px;
        margin:7px 0;
    }
}

.a-post-body a{
    color:#CE6C4A;
    border-bottom:1px solid #CE6C4A;
}

.single-news-btn{
    width:100%;
    margin-top:65px;
}

/* フッター */

footer{
    background-color: #F4F4F4;
}

.footer-content{
    max-width:1000px;
    width:90%;
    margin:0 auto;
    padding-top:120px;
    padding-bottom:65px;
}

@media screen and (max-width:768px){
    .footer-content{
        padding-top:70px;
        padding-bottom:40px;
    }
}

@media screen and (max-width:480px){
    .footer-content{
        padding-top:50px;
        padding-bottom:30px;
    }
}

.footer-logo img{
    width:290px;
}

@media screen and (max-width:480px){
    .footer-logo img{
        width:250px;
    }
}

.footer-contact-btn{
    background-color:#CE6C4A;
    display:block;
    width:fit-content;
    transition:.3s;
    border-radius: 2px;
    border:1px solid #CE6C4A;
    box-sizing: border-box;
    height:77px;
}

@media screen and (max-width:768px){
    .footer-contact-btn{
        height:63px;
    }


}


.footer-contact-btn:hover{
    background-color:#fff;
}

.footer-contact img{
    width:151px;
    padding:25px 68px;
    display:block;
}

@media screen and (max-width:768px){
    .footer-contact img{
        width:130px;
        padding:20px 50px;
    }
}

.footer-top-flex{
    display:flex;
    justify-content: space-between;
    align-items: center;
    border-bottom:1px solid rgba(172,165,150,0.5);
    padding-bottom:60px;
    flex-wrap: wrap;
    gap:34px;
}

@media screen and (max-width:630px){
    .footer-top-flex{
        justify-content: space-evenly;
    }
}

@media screen and (max-width:480px){
    .footer-top-flex{
        padding-bottom:30px;
    }
}



.footer-bottom-flex{
    display:flex;
    justify-content: space-between;
    padding-top:55px;
    padding-bottom:70px;
    gap:10px;
    flex-wrap: wrap;
}


@media screen and (max-width:630px){
    .footer-bottom-flex{
        justify-content: flex-start;
        gap:40px 30px;;
    }
}

@media screen and (max-width:480px){
    .footer-bottom-flex{
        padding-top:30px;
        padding-bottom:50px;
    }
}



.a-footer-nav-title p{
    font-size:14px;
    color:#9A958C;
    font-family:"minion-pro-caption",sans-serif;
    letter-spacing:0.04em;
    font-weight:600;
}

.footer-nav-item{
    font-size:16px;
    letter-spacing:0.06em;
    font-weight:500;
    line-height:1.5;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    transition:.3s;
}



@media screen and (max-width:768px){
    .footer-nav-item{
        font-size:15px;
    }
}

.footer-nav-item span{
    padding-left:30px;
}

@media screen and (max-width:768px){
    .footer-nav-item span{
        padding-left:20px;
    }
}

.footer-nav-item:hover.footer-nav-item span{
    color:#CE6C4A;
    transition:.3s;
}

.footer-nav-item::before{
    content:"";
    width:10px;
    height:10px;
    background-image:url(img/news-arrow.png);
    position:absolute;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top:50%;
    transform: translateY(-50%);
    left:0;
    transition:.3s;
}

.footer-nav-item::after{
    content:"";
    width:10px;
    height:10px;
    background-image:url(img/news-arrow-hover.png);
    position:absolute;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top:50%;
    transform: translateY(-50%);
    left:0;
    transition:.3s;
    z-index:-1;
}

.a-footer-nav ul{
    margin-top:20px;
}

.footer-nav-item:hover.footer-nav-item::before{
    left:10px;
    transition:.3s;
}

.footer-nav-item:hover.footer-nav-item::after{
    left:10px;
    transition:.3s;
    z-index:5;
}

@media screen and (max-width:768px){
    .footer-nav-item:hover.footer-nav-item::before,
    .footer-nav-item:hover.footer-nav-item::after{
        left:5px;
    }
}

.a-footer-nav.business .footer-nav-item{
    margin-top:10px;
}

small{
    color:#ACA596;
    font-size:12px;
    letter-spacing:0.1em;
    font-family: 'Open Sans', sans-serif;
}

small .inline-b{
    color:#ACA596;
}

@media screen and (max-width:480px){
    small{
        font-size:11px;
        line-height:1.5;
        font-feature-settings: "palt";
    }
}

.copy-privacy-flex{
    display:flex;
    justify-content: space-between;
}

.privacy-link a{
    color:#ACA596;
    font-size:14px;
    transition:.3s;
    font-family: 'Noto Sans JP', sans-serif;
}

.privacy-link a:hover{
    color:#CE6C4A;
}

@media screen and (max-width:630px){
    .copy-privacy-flex{
        flex-direction: column-reverse;;
        gap:10px;
    }
}

/* 固定ページ共通 */
.page-content{
    max-width:1300px;
    width:90%;
    margin:0 auto;
    padding-bottom:100px;
}

@media screen and (max-width:480px){
    .page-content{
        padding-bottom:70px;
    }
}

/*  404 */
.notfound-content{
	max-width:1300px;
	width:90%;
	margin:0 auto;
	text-align:center;
	padding:100px 0;
}

.notfound-head h2{
	font-size:55px;
}

@media screen and (max-width:480px){
	.notfound-head h2{
	font-size:48px;
		line-height:1.1;
}
}

.notfound-text p{
	font-size:18px;
	font-weight:600;
	letter-spacing:0.06em;
	margin-top:15px;
}

@media screen and (max-width:480px){
.notfound-text p{
	font-size:15px;
}
}


.orange{
	color:#CE6C4A;
}

.notfound-home-btn{
	width:fit-content;
	margin:0 auto;
}