@charset "utf-8";

/*===========================================================*/
/* 印象編 4 最低限おぼえておきたい動き*/
/*===========================================================*/
/* ふわっ：その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ふわっ：下から */

.fadeUpTrigger, .fadeUpTrigger-sp {
    opacity: 0;
}



.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-timing-function: ease;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);

  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/
@media screen and (min-width:769px) {
.delay-time02{
animation-delay: 0.3s;
}

.delay-time04{
animation-delay: 0.6s;
}

.delay-time06{
animation-delay: 0.9s;
}
}

/* ふわっ：上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* ふわっ：左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/* ふわっ：右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/*===========================================================*/
/* index：メインビジュアル
/*===========================================================*/

.index-main {
    height: 100vh;
    display: flex;
    align-items:center;
    justify-content:center;
    position: relative;
}

/* PC */
.index-main .mv {
    position: relative;
    height: 100vh;
    max-height: 640px;
    width: 100%;
    transtion: .5s ease-in-out;
}

.index-main .mv .mv-sunaba {
    position: absolute;
    left:0;
    right:0;
    bottom:100px;
    width: 1534px;
    max-width: 90%;
    margin: 0 auto;
    padding-right: 3%;
    z-index: 900;
    /* animation: translate-sunaba 2.6s ease-in-out infinite alternate-reverse; */
}
@keyframes translate-sunaba {
  0% {
    transform: translateX(-.25%);
  }
  100% {
    transform: translateX(.25%);
  }
}


.index-main .mv .mv-ds {
    position: absolute;
    right:6%;
    bottom:150px;
    width: 25%;
    max-width: 500px;
    margin: 0 auto;
    z-index: 901;
    animation: rotate-ds 1.6s ease-in-out infinite alternate-reverse;
}
@keyframes rotate-ds {
  0% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(3deg);
  }
}


.index-main .mv svg {
    width: 100%;
    height: auto;
}

@media screen and (min-width:1534px) {
    .index-main .mv .mv-sunaba {
        bottom:100px;
    }
    .index-main .mv .mv-ds {
        width: 25%;
        right: 6.5%;
        bottom:150px;
    }
    
}

@media screen and (max-width:1280px) {
    .index-main .mv {
        max-height: 620px;
    }
}

@media screen and (max-width:768px) {
    .index-main .mv {
        display: none;
    }
}

/* SP */

.index-main .mv-sp {
    position: relative;
    height: 100vh;
    max-height: 640px;
    width: 100%;
    transtion: .5s ease-in-out;
}

.index-main .mv-sp .mv-sunaba {
    position: absolute;
    left:0;
    right:0;
    bottom:300px;
    max-width: 90%;
    margin: 0 auto;
    z-index: 902;
    /* animation: translate-sunaba 2.6s ease-in-out infinite alternate-reverse; */
}
@keyframes translate-sunaba {
  0% {
    transform: translateX(-.25%);
  }
  100% {
    transform: translateX(.25%);
  }
}


.index-main .mv-sp .mv-ds {
    position: absolute;
    left:8%;
    bottom:425px;
    width: 36%;
    margin: 0 auto;
    z-index: 901;
    animation: rotate-ds 1.6s ease-in-out infinite alternate-reverse;
}
@keyframes rotate-ds {
  0% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(3deg);
  }
}


.index-main .mv-sp svg {
    width: 100%;
    height: auto;
}

@media screen and (max-width:640px) {
    .index-main .mv-sp .mv-sunaba {
        bottom:250px;
    }
    
    .index-main .mv-sp .mv-ds {
        bottom:340px;
    }
}

/*
@media screen and (max-width:480px) {
    .index-main .mv-sp .mv-sunaba {
        bottom:155px;
    }
    
    .index-main .mv-sp .mv-ds {
        bottom:245px;
    }
}
*/



@media screen and (min-width:769px) {
    .index-main .mv-sp {
        display: none;
    }
}







.bg-gray {
    background: #ddd;
    height: 100vh;
    display: flex;
    align-items:center;
    justify-content:center;
    position: relative;
    width: 100%;
}

.bg-gray2 {
    background: #ddd;
    width: 100%;
    text-align: center;
    padding: 4em;
}



/*========= スクロールダウンのためのCSS ===============*/

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
  position: absolute;
    bottom: 10px;
    /*
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    */
    left:19px;
    /*全体の高さ*/
  height:50px;
    zoom:1.25;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
  position: absolute;
  left:-22px;
  top: -30px;
    /*テキストの形状*/
  color: #333;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
     transform: rotate(90deg);
    text-transform: uppercase;
    line-height: 1em;
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 1.25px;
  height: 30px;
  background: #333;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}

@media screen and (max-width:768px) {
    
    /*スクロールダウン全体の場所*/
    .scrolldown1{
        bottom: 85px;
      left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        zoom:1.1;
    }
    
    /*Scrollテキストの描写*/
.scrolldown1 span{
  left:-19px;
}

}

/*
@media screen and (max-width:480px) {
    
    .scrolldown1{
        bottom: 15px;
    }

}
*/



/*===========================================================*/
/* index：メッセージ
/*===========================================================*/

.index-about-catch {
    top: 50%;
    position: sticky;
    width: 50%;
    position: -webkit-sticky;
    height: 50vh;
}

/*
.index-about-catch figure {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    will-change: opacity, top;
    transition: opacity .2s ease, top .2s ease-out;
    margin-left: auto;
    margin-right: auto;
}
*/

@media screen and (min-width:769px) {
    .index-about-catch figure {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        will-change: opacity, top;
        transition: opacity .2s ease, top .2s ease-out;
        margin-left: auto;
        margin-right: auto;
    }
}

.index-about-catch .active {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.index-about-catch .active {
    transition: opacity 1.8s ease, top 1.8s ease-out;
}

.index-about-catch figure img {
    max-width: 540px;
    min-width: 360px;
    /* filter: invert(27%) sepia(23%) saturate(1175%) hue-rotate(350deg) brightness(96%) contrast(89%) !important; */
}


.index-about-text {
    padding: 160px 80px 160px 80px;
    font-size: 1.1rem;
    line-height: 2.75rem;
    letter-spacing: 0;
    width: 50%;
    background: url(../images/bg_dot_text.svg);
    background-size: 4px;
}

.index-about-text p {
    margin-bottom: 2em;
}

.index-about-text-content01 {
}

@media screen and (min-width:769px) {
    .index-about-text p.fadeUpTrigger-sp {
        opacity: 1 !important;
    }
}

@media screen and (max-width:768px) {
    
.index-about-catch {
    top: 0;
    position: relative !important;
    width: 100%;
    height: auto;
    display: block;
    padding: 100px 30px 30px;
}

.index-about-catch figure {
    -webkit-transform: none;
    transform:none;
    will-change: opacity, top;
    transition: opacity .2s ease, top .2s ease-out;
    margin-left: auto;
    margin-right: auto;
    left:0;
    display: inline-block;
    position: relative;
    width: 100%;
}

.index-about-catch .active {
    opacity: 1;
    -webkit-transform:none;
    transform: none;
}

.index-about-catch .active {
    transition: none;
}

.index-about-catch figure img {
    width: 100%;
    max-width: 320px;
    min-width:0;
}

.index-about-text {
    padding: 0 30px 100px;
    line-height: 2.25rem !important;
    letter-spacing: .1em;
    width: 100%;
    background: url(../images/bg_dot_text.svg);
    background-size: 4px;
    display: block;
}

.index-about-text p {
    margin-bottom: 2em;
}


}

/*===========================================================*/
/* index：画像付きメニュー
/*===========================================================*/

.index-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 1.125rem;
}

.index-nav li {
    width: 47%;
}
.index-nav li {
    margin-bottom: 2.5rem;
}

.index-nav li a figure {
    position: relative;
}
.index-nav li figure {
    /*background-color: rgba(236, 237, 239, .5);*/
    background-color: rgba(105,70,34, 0.03);
    margin-bottom: 1.25rem;
    width: 100%;
    transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}

.index-nav li figure:hover {
}

.index-nav li p {
    text-align: center;
    letter-spacing: .1em;
}

.index-nav li img{
  transform: scale(1);
  transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}

.index-nav li a:hover img{/*hoverした時の変化*/
  transform: scale(1.05);/*拡大の値を変更したい場合はこの数値を変更*/
    opacity:.75;
}

.index-nav li figure {
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}


@media screen and (max-width: 768px) {
.index-nav li {
    width: 100%;
}
}


/*===========================================================*/
/* index：お知らせ一覧
/*===========================================================*/


.slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 94%;
    margin: 0 auto;
}
.slider img {
    width: 100%; /*スライダー内の画像を横幅100%に*/
    height: auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
    margin: 0 10px;
    display: inline-block;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, .slick-next {
    position: absolute; /*絶対配置にする*/
    top: 42%;
    cursor: pointer; /*マウスカーソルを指マークに*/
    outline: none; /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666; /*矢印の色*/
    border-right: 2px solid #666; /*矢印の色*/
    height: 15px;
    width: 15px;
}
.slick-prev { /*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}
.slick-next { /*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}
.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px !important; /*ドットボタンのサイズ*/
    height: 8px !important; /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #ddd; /*ドットボタンの色*/
    border: none;
    box-sizing: border-box;
    padding: 0;
}
.slick-dots .slick-active button {
    background: #aaa; /*ドットボタンの現在地表示の色*/
}

/* Slider topArchive */
@media screen and (max-width:768px) {
    #topArchive.bgHand {
        padding:8em 0 6em 0;
    } 
    .slider-topArchive {
        width:100%;
    }
}
.slider-topArchive .slick-slide {
    text-align: center;
    padding: 0 .75em 1.5em;
    box-sizing: border-box;
}
@media screen and (max-width:768px) {
    .slider-topArchive .slick-slide {
        padding: 0 .25em 1.5em;
    }
}
.slider-topArchive .slick-slide img {
    
}

.slider-topArchive .slick-list {
}
.slider-topArchive .slick-slide {
}

.slider-topArchive .archiveBox {
    background: #a96e2d;
    border-radius: 5px;
    transition: .75s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    float: left;
}


.slider-topArchive .archiveBox:hover  {
    opacity: .7;
}

.slider-topArchive .imgBox {
    
    overflow: hidden;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px 5px 0 0;
}

@media screen and (min-width:1920px) {
    .slider-topArchive .imgBox {

    }
}
@media screen and (max-width:768px) {
    .slider-topArchive .imgBox {
    }
}

.slider-topArchive .imgBox img {
    min-width: 100%;
    height: auto;
    margin-bottom: 0 !important;
    transition: .75s;
    object-fit: cover;
    max-height: 16em;
    height: 16em;
}

.slider-topArchive .archiveBox:hover .imgBox img {
    transform: scale(1.05);
}

.slider-topArchive .textBox {
    padding: 2em 1.5em 0 2em;
    background: #fff;
    text-align: left;
    border-radius: 0 0 5px 5px;
    box-sizing: border-box;
    height: 12em;
    overflow: hidden;
}



@media screen and (max-width:768px) {
    .slider-topArchive .textBox {
        }
}

.slider-topArchive .textBox p {
    margin-top: 0;
    margin-bottom: .5em;
}

.slider-topArchive .textBox .date {
    color:#888;
}

.slider-topArchive .textBox .textTitle {
    font-size:1.1em;
    height: 2em;
    min-height: 2em;
    line-height: 1.75;
}



@media screen and (max-width:768px) {
.slider-topArchive .textBox .btn_1 {
    padding-left: 1.5em;
    padding-right: 1.5em;
}

    .slider-topArchive .textBox .textTitle {
        }
}

.slider-topArchive .slick-prev,
.slider-topArchive .slick-next {
    position: absolute;
    top: 38%;
    cursor: pointer;
    outline: none;
    border-top: 10px solid #3d3123;
    border-right: 10px solid #3d3123;
    height: 20px;
    width: 20px;
    transition: .5s;
    border-radius: 2px;
    opacity: 1;
}
.slider-topArchive .slick-prev:hover,
.slider-topArchive .slick-next:hover {
    opacity: 0.75;
}
@media screen and (max-width:768px) {
    .slider-topArchive .slick-prev,
    .slider-topArchive .slick-next {
        
    }
}
.slider-topArchive .slick-dots button {
    background-color: #fff;
}
.slider-topArchive .slick-dots .slick-active button {
    background-color: #666;
}
.slider-topArchive .slick-dots .slick-active button:hover {
    background-color: #666;
}


/*===========================================================*/
/* index：お問い合わせボタン
/*===========================================================*/

/*== 少し出ていた線が伸びる */

.btnlinestretches2{
    /*線の基点とするためrelativeを指定*/
  position:relative;
    /*ボタンの形状*/  
  color:#333;
    font-weight: 600;
    padding: 20px 80px;
  
  display:inline-block;
    text-decoration: none;
    outline: none;
    vertical-align: middle;
}

@media screen and (min-width: 1024px) {

    .btnlinestretches2{
       zoom:1.1
    }
    
}


/*線の設定*/
.btnlinestretches2::before,
.btnlinestretches2::after {
  content:'';
    /*絶対配置で線の位置を決める*/
  position:absolute;
    /*事前に出現させる線の形状*/
  border:solid #694622;
    border-color: rgba(105,70,34, 0.9);
  width:40px;
  height:30px;
    /*アニメーションの指定*/
  transition:all 0.5s ease-in-out;
}


.btnlinestretches2::before{
    /*事前に出現させる線の位置*/
  top:0;
  left:0;
    /*事前に出現させる線の形状*/
  border-width:4px 0 0 4px;
}

.btnlinestretches2::after{
    /*事前に出現させる線の位置*/
  bottom:0;
  right:0;
    /*事前に出現させる線の形状*/
  border-width:0 4px 4px 0;
}

/*hoverした際の線の形状*/
.btnlinestretches2:hover::before,
.btnlinestretches2:hover::after{
  width:calc(100% - 40px);
  height:calc(100% - 40px);
  border-color: rgba(105,70,34, 0.9);
}

.btnlinestretches2 i {
    font-weight: 100;
    margin-right: .375em;
    font-size: 2.75em;
    vertical-align: middle;
    display: inline-block;
    transition: 1s; 
}

.btnlinestretches2 img {
    font-weight: 100;
    margin-right: .375em;
    width: 4.75em;
    vertical-align: middle;
    display: inline-block;
    transition: 1s; 
    display: inline-block;
}

.btnlinestretches2 span {
    margin-right: .5em;
    font-size: 1.25em;
    vertical-align: middle;
    display: inline-block;
}

.btnlinestretches2:hover i {
    transform: rotate(15deg);
    
}

.btnlinestretches2:hover img {
    transform: rotate(10deg);
    
}

@media screen and (max-width: 768px) {
    
    .btnlinestretches2{
        padding: 12.5px 0;
        width: 95%;
        max-width: 400px;
    }
    
    .btnlinestretches2 i {
        font-weight: 100;
        margin-right: .375em;
        font-size: 3.75em;
        vertical-align: middle;
        display: inline-block;
        transition: 1s; 
    }
    
    .btnlinestretches2 img {
        width: 3.5em;
        margin-right: .25em;
    }

    .btnlinestretches2 span {
        margin-right: .5em;
        font-size: 1.15em;
        vertical-align: middle;
        display: inline-block;
    }
}





/*===========================================================*/
/* 下層ページ：SUNABAについて
/*===========================================================*/

.second-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1240px;
    padding-top: 14rem;
    padding-bottom: 14rem;
    position: relative;
    width: 100%;
    padding-left: 26px;
    padding-right: 26px;
}


@media screen and (max-width:768px) {
    .second-main {
        padding-top: 10rem;
    padding-bottom: 10rem;
    }
}

@media screen and (min-width:1024px) {
    .second-main {
        padding-left: 42px;
        padding-right: 42px;
    }
}

.h2_1 {
    font-family: "M PLUS Rounded 1c", sans-serif;
      font-weight: 800;
      font-style: normal;
  color:#6b4521;
    line-height: 1.25 !important;
}

/*===========================================================*/
/* 下層ページ：砂場にまつわるお仕事
/*===========================================================*/

.second-business {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: 1240px;
    padding-top: 7rem;
    padding-bottom: 2.5rem;
    position: relative;
    z-index: 20;
    padding-left: 26px;
    padding-right: 26px;
}

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

@media screen and (min-width:1024px) {
    .second-business {
        padding-left: 42px;
        padding-right: 42px;
    }
}

.h1_1 {
    font-family: "M PLUS Rounded 1c", sans-serif;
      font-weight: 800;
      font-style: normal;
  color:#6b4521;
}

.bg-gray-light {
    background:rgba(236, 237, 239, 1);
}

.bg-sand {
    background-color: rgba(105,70,34, 0.06);
    /*background-image: url(../img/bg_sand1.jpg);
    background-size: cover;
    background-color:rgba(255,255,255,0.4);
    background-blend-mode:lighten;*/
}


/* https://hakenblog.com/css-hover-underline-animation/ */
.tab-ul li  {
    text-align: center;
}

.tab-ul li a {
    position: relative;
    transform: translateY(0px);
    transition: .3s;
    display: inline-block;
}

.tab-ul li a:hover {
transform: translateY(-2px);
}

.tab-ul li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 3px;
background: #6b4521;
bottom: -8px;
transform: scale(0, 1);
transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.5s;   /*変形の時間*/
    border-radius: 3px;
}

.tab-ul li a:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.tab-ul li.active a {
transform: translateY(-2px);
}

.tab-ul li.active a::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

@media screen and (max-width:768px) {
    .tab-ul li a::after {
        bottom: -2px;
        transform: scale(0, 1);
        }

        .tab-ul li.active a {
        transform: translateY(-2px);
        }
}


/*===========================================================*/
/* 下層ページ：仕事のプロセス
/*===========================================================*/

.business-2-icon {
    max-width: 190px;
    height: auto;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    .business-2-icon {
        max-width: 160px;
    }
}

/*===========================================================*/
/* 下層ページ：お声がけいただく前に
/*===========================================================*/

.btn-gray {
    position: relative;
}

.btn-gray::before {
    content: "";
    background-color: rgba(105,70,34, 0.07);
    /*
    border-width:10px;
    border-bottom-style: solid;
    border-color: none !important;
    border-color: rgba(105,70,34, 0.06) !important;
    */
    display: block;
    padding: 50px 0px;
    width: 100%;
    transition: .3s ease-in-out;border-radius: 3px;
}

.btn-gray:hover::before {
    transform: scale(.975, .975);
}


.btn-gray a {
    position: absolute;
    top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    transition: .3s ease-in-out;
}

.btn-gray a:hover {
    opacity:.9;
}

@media screen and (max-width:768px) {
    .btn-gray::before {
        padding: 40px 0px;
    }
    
}

/* お問い合わせフォーム */
/* https://renkosaka.com/contactform7-customize/ */

.cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cf7__list dt:nth-of-type(n + 2),
.cf7__list dd:nth-of-type(n + 2) {
  margin-top: 30px;
}

.cf7__list dt {
  width: 35%;
  padding-top: 15px;
}

.cf7__list dd {
  width: 65%;
}

/* 必須・任意 */
.cf7__required,
.cf7__optional {
  margin-right: 15px;
  padding: 3px 6px;
  color: #fff;
  font-size: 12px;
  vertical-align: 1px;
}

.cf7__required {
  background: #BE1D1D;
}

.cf7__optional {
  background: #878D8E;
}

/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
  width: 100%;
  padding: 15px 20px;
  background: #F4F4F4;
    border-radius: 3px;
}

#wpcf7-f301-o1 .cf7__list dd p {
  width: 100%;
  padding: 15px 20px;
    margin-bottom: 0;
}

.cf7__list dt p,
.cf7__list dd p{
    margin-bottom: 0;
}

/* ドロップダウンメニュー */
.cf7__select {
  position: relative;
}

.cf7__select:before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: '';
}

.cf7__select select {
  width: 100%;
  padding: 19px 20px;
  background: #F4F4F4;
  color: #a5a5a5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 12px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #000;
  background: #000;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}

/* ラジオボタン */
input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: '';
}

span[data-name="acceptance-141"] {
    margin-top: 1em;
    display: block;
}


/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: #a5a5a5;
}

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
}

/* 送信ボタン */
.cf7__button {
  padding-left: 46px;
  text-align: center;
}

.cf7__button_confirm {
    padding-left: 216px !important;
}

input[type="submit"],
input.wpcf7-previous {
  width: 200px;
  height: 60px;
  background: #6b4521;
  color: #fff;
  transition: opacity .6s;
border-radius: 3px;
}


input[type="submit"]:hover,
input.wpcf7-previous:hover {
  opacity: .6;
}

input.wpcf7-previous {
  width: 120px;
  height: 60px;
  background: #dddddd;
  color: #333;
    margin-right: 1em;
}

/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle;
}

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

  .cf7__list dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }

  .cf7__list dd {
    width: 100%;
  }

  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0;
  }
    
#wpcf7-f301-o1 .cf7__list dd p {
  width: 100%;
  padding: 0;
    margin-bottom: 0;
}

  /* 送信ボタン */
    
    .cf7__button {
  padding-left:72px;
}

.cf7__button_confirm {
    padding-left:72px !important;
}

input[type="submit"] {
    width: 180px;
    height: 56px;
  }  
    
.cf7__button_confirm input[type="submit"] {
    width: 100px;
    height: 56px;
  }
    
.cf7__button_confirm input.wpcf7-previous {
    width: 80px;
    height: 56px;
    background: #dddddd;
    color: #333;
    margin-right: 1em;
}

}


/*===========================================================*/
/* 下層ページ：どろだんご先生
/*===========================================================*/

.dorodango-sensei {
    position: relative;
}

.dorodango-sensei img.pics {
    animation: fluidrotate1 30s ease 0s infinite;
}
@keyframes fluidrotate1 {
    0%, 100% {
        border-radius: 54% 57% 48% 70%/50% 50% 70% 60%;
    }
    50% {
        border-radius: 80% 30% 50% 50%/50%;
    }
}

.dorodango-sensei img.illust {
    position: absolute;
    left:0px;
    bottom:0px;
    z-index: 2;
    height: auto;
    animation: rotate-ds 1.6s ease-in-out infinite alternate-reverse;
}

.txt-bg {
    background-color: rgba(105, 70, 34, 0.07);
    display: inline-block;
    padding: .25em 1em;
    color:#603813;
    font-weight: 600;
}

.txt-ub {
    border-bottom:4px dotted #603813;
    display: inline-block;
    padding-bottom: .125em;
    font-weight: 700;
    
}

.txt-lb {
    border-left:6px solid #603813;
    display: inline-block;
    padding-left: .75em;
    display: block;
}

ul.disc {
}

ul.disc li {
    display: flex;
    line-height: 1.5em;
    margin-bottom: .75em;
}

ul.disc li::before {
  content: "\f111";
    font-family: FontAwesome;
  color: rgba(105, 70, 34, 0.9);
    font-size: .35em;
    margin-right: 1em;
}

ul.sns {
    
}

ul.sns li {
    display: inline-block;
    padding: 0 .25em;
}



/*===========================================================*/
/* News関連
/*===========================================================*/

.article_link {
    transition: .75s;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.article_link:hover {
    opacity: .6;
    margin-top:2px;
}

.article_link p {
    display: none;
}

.article_link .img_box {
    overflow: hidden;
}

.article_link:hover .img_box img {
    transition: .75s;
}

.article_link:hover .img_box img {
    transform: scale(1.05);
}
