@charset "utf-8";
/*全体の設定*/
body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2em;
    color: #545252;
}

a {
    color: inherit;
    text-decoration: none;

}

a:hover {
    opacity: 0.7;

}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}


h2 {
    margin: 100px 0px;
    font-family: 'Klee One',cursive;
    font-size: 1.5em;
    padding: 20px;

}

h3 {
    text-align: center;
    font-size: 1.7em;
    margin-bottom: 70px;
    padding: 20px 0px;
}

h4 {
    font-size: 1.2em;
    text-align: center;
    color: #fff;
    padding-bottom: 25px;
}

p{
    padding: 0px 20px;
    line-height: 2;
    margin-top: 70px;

}

.lead_bold {
    font-weight: bold;
}



/*ヘッダーの設定*/
header {
    color: #fff;
    background-color: #545252;
    padding: 25px 15px;
    font-size: 20px;
    font-weight: bold;
    position:fixed;
    width: 100%;
    z-index: 100;
}

.header_box {
    display: flex;
    justify-content: space-between;

}


nav {
    border: #fff solid 2px;
    background-color: #fff;
    border-radius: 12px;
    width: 150px;
    text-align: center;
    margin-left: auto;
    margin-right: 0;
    color: #545252;
}

/*heroの設定*/
.hero {
    background-image: url(../image/top01-min.JPG);
    background-size: cover;
    background-position: top;
    height: 100vh;
    color: #fff;
    padding: 15px;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 34px;
    text-align: left;
    font-family: 'Klee One',cursive;
    font-weight: bold;
    text-shadow: 0 0 15px #c0c0c0;
    margin-top: 150px;
}

.hero_sub {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -100px;
}

/*top_Aの設定*/
.top_A {
    margin-top: 150px;
}


/*ABOUT_01の設定*/

.about_01 h3 {
    margin-bottom: 0;
    font-size: 1.2em;

}


.mv {
    position: relative;
    height: 250px;
    background: linear-gradient(90deg, rgb(199, 189, 169), rgb(238, 233, 230));

}

.mv img {
    display: block;
    position: absolute;
    top: 50px;
    left: 8%;
    width: 90%;
    height: auto;

}


.mv_2 {
    position: relative;
    height: auto;
    background: linear-gradient(360deg, rgb(220, 214, 210), rgb(255, 255, 255));

}

.about_01 p {
    position: static;
    padding-bottom: 100px;

}


/*ABOUT_02の設定*/

.about_02,
.adoption {
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 1);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(169, 169, 169, 0.08) 6px, rgba(169, 169, 169, 0.08) 9px );
    padding-top: 70px;
    padding-bottom: 70px;
}

.about02_b {
    background-color: #fff;
    padding: 15px 35px;
}

/*=============
文章の折り込み
================*/

summary {/*続きはこちら*/
    font-weight: bold;
    margin: -.5em -.5em 0;
    padding: .5em;
    text-align: center;
    color: #fff;
    font-size: 0.8em;
    background-color: #808080;
    border: 2px solid #808080;
    border-radius: 20px;
    width: 155px;
    display: block;
    margin-right: 10px;
    margin-left: auto;
}

details[open] {
    padding: .5em;

}

/*=============
文章の折り込み 終わり
================*/


/*POINTの設定*/
.point {
    padding-top: 100px;
    margin: 0px 20px;
}

.point h3 {
    margin-bottom: -45px;
}

.pointo_img {
    width: 220px;
    transform: rotate( -8deg );

}

.point p {
    margin-top: 30px;
    margin-bottom:70px;
}

/*POINT_テンプレートの設定*/
.temp_01,
.temp_02,
.temp_03 {
    background-color: #545252;
    border-radius: 12px;
    padding: 25px 10px;
    margin-top: 20px;

}

.point .temp_img {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.point .temp_lead {
    margin: 20px;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
}


/*=============
ふわっと(下から)*/

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(60px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }    
    
    
    /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
     
    .fadeUpTrigger{
        opacity: 0;
    }
/*=============
ふわっと 終わり
================*/

/*Styleの設定*/
.style h3 {
    margin-top: 70px;
    margin-bottom: 15px;
    font-size: 1.2em;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    width:94%;
    margin:0 auto;

}

.slider img {
    width:70vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
    border-radius: 50px;
}

.slider .slick-slide {
    transform: scale(0.8);/*左右の画像のサイズを80%に*/
    transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5;/*透過50%*/
  }


  .slider .slick-slide.slick-center{
    transform: scale(1);/*中央の画像のサイズだけ等倍に*/
    opacity: 1;/*透過なし*/
  }

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    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:10px;/*ドットボタンのサイズ*/
    height:10px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

/*==================================================
スライダーのためのcss 終わり
===================================*/

/*POINT_02の設定*/
.point_02 {
    padding: 70px 0;
}
.bg_line,
.bg_line2 {
    background-image: url(../image/sp|_bk.png);
    background-size: 350px;
    height: 10px;
    margin: 40px 10%;

}


/*POINT_03の設定*/
.point_03 {
    padding: 70px 0;
}

/*POINT_03テンプレートの設定*/
.temp_title  {
    color: #545252;
}

.point03_temp01 {
    background-color: #545252;
    padding: 25px 10px;
    margin: 20px;
    color: #fff;

}

.point03_temp02 {
    border: #545252 solid 5px;
    padding: 25px 10px;
    margin: 20px;
    color: #545252;


}

.point_03 .temp_lead {
    margin-top: 20px;
}


/*adoptionの設定*/
.adoption_img {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.adoption_img_sub {
    margin-top: 0;
}

.contact {
    background-color: #c7bda9;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

/*--ボタンの装飾--*/
.adoption_btn {
    background-color: #c7bda9;
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 15px;
    padding: 15px 0;
    text-align: center;
    width: 70%;
    margin: 40px;
    margin-left: auto;
    margin-right: auto;
}

/*conditionsの設定*/
.conditions {
    padding: 70px 0;
}

.conditions h3 {
    margin-bottom: -45px;

}


/*store_listの設定*/
.store_list {
    padding: 70px 0;
}

.store_list h3 {
    margin-bottom: -45px;
    
    
}

figcaption {
    text-align: end;
}

.m_button{
    font-weight: bold;
    margin: -0.5em -0.5em 0;
    padding: 0.5em;
    text-align: center;
    color: #fff;
    font-size: 0.8em;
    background-color: #808080;
    border: 2px solid #808080;
    border-radius: 20px;
    width: 155px;
    display: block;
    margin-right: 10px;
    margin-left: auto;
    margin-top: 10px;
}

/*faqの設定*/
.faq {
    padding: 70px 0;
}

.faq .work_lead {
    margin: 0 2px;
}

.faq h3 {
    margin-bottom: -45px;
}

/*companyの設定*/
.company {
    padding: 70px 0;
}

.company h3 {
    margin-bottom: -45px;
}

/*===FAQのアコーディオン====*/
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
    padding: 50px 0 0 0;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #324e60;
  background-color: #545252;
  color: #fff;
}

/*アコーディオンタイトル*/
.workflow_title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3%;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.workflow_title::before,
.workflow_title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #fff;
    
}
.workflow_title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
    
}
.workflow_title::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.workflow_title.close::before{
  transform: rotate(45deg);
}

.workflow_title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.work_box {
    display: none;/*はじめは非表示*/
    border: solid 2px #fff;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    margin:0 3% 3% 3%;
    padding: 3%;
}


/*====アコーディオン終わり===*/


/*--shop_sの設定*/
.shop_s {
    margin-top: 70px;
}

.company a {
    border: #c7bda9 solid 5px;
    background-color: #c7bda9;
    color: #fff;
    padding: 10px;
}


/*フッターの設定*/
footer {
    color: #fff;
    background-color: #545252;
    text-align: center;
    padding: 50px 20px;
    font-size: 0.8em;
}

.footer_sub {
    display: flex;
    justify-content: center;
    margin: 10px;

}

footer img {
    width: 40px;
    margin: 10px;
}

/*=====タブレット版======*/
@media screen and (min-width:600px){
/*PC版:コンテナ*/
.contents {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;

}

/*全体の設定*/
h3 {
    margin-bottom: 30px;
}

.bg_line {
    background-size: 400px;
    margin: 40px 30%;

}

p{
    margin: 20px 40px;
}

/*headerの設定*/
.header_box {
    font-size: 1.2em;
}

nav {
    width: 170px;

}

/*heroの設定*/

.hero h1 {
    font-size: 48px;
    margin-top: 160px;
    margin-left: 10%;
}


.hero_sub {
    width: 25%;
    margin-top: -100px;

}

/*.hero {
    background-image: url(../image/top01.JPG);
}*/


/*TOP_Aの設定*/
.top_rl {
    display: flex;
    justify-content: space-between;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.top_r,
.top_l:not(:last-child) {
    margin-right: 30px;
}

.sub-title {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/*ABOUT_01の設定*/
.about_01 h3 {
    margin-bottom: 0;
    font-size: 1.5em;
    text-align: left;
    margin-left: 30px;

}

.mv img {
    left: 20%;/*100%も試す*/
    width: 80%;

}

.mv {
    height: 500px;
}

.mv_2 {
    margin-top: 272px;
}


/*POINTの設定*/
.pointo_box {
    display: flex;
    justify-content: space-between;
}

.point .pointo_img {
    margin-left: 15%;
}


/*===POINT_テンプレートの設定*/
.temp_01,
.temp_02,
.temp_03 {
    width: 80%;

}

.temp_01,
.temp_02,
.temp_03:not(:last-child) {
    margin-right: 20px;
}

.point .temp_img {
    width: 190px;
    height: 190px;
}

/*スライダーの設定*/
.slider img {
    width:30vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/

}

/*POINT_02の設定*/
.point_02 .pointo_img {
    margin-left: 15%;
}

.point02_box {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-left: auto;
    margin-right: auto;

}

.point02_img {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.point_02 p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/*POINT_03の設定*/
.point_03 .pointo_img {
    margin-left: 15%;
}

.point03_img {
    width: 300px;
    height: 170px;
    margin-left: auto;
    margin-right: auto;
}

.point03_box {
    display: flex;
    justify-content: center;
    margin: 0 40px;
}

.bg_line2{
    display: none;
}

.box-in {
    display: block;
    width: 500px;
}

.box-in p {
    margin-top: 0;
}

.point_03 .temp_lead {
    margin: 0px;
    margin-top: 10px;
}

/*==POINT03_テンプレートの設定*/
.point03_temp01,
.point03_temp02 {
    margin: 0;
}

.point03_temp01,
.point03_temp02:not(:last-child) {
    margin-right: 20px;
}

/*--adoptionの設定--*/
.adoption_l {
    width: 80%;
    margin-right: auto;
    margin-left: auto;

}


/*--adoptionのボタンの装飾--*/
.adoption_btn {
    width: 35%;
}

/*shop_listの設定*/
.store_box {
    display: flex;
    justify-content: space-between;
    margin: 0 40px;
}

.store_rcl1,
.store_rcl2,
.store_rcl3:not(:last-child) {
    margin-right: 20px;

}

figcaption {
    font-size: 0.75em;
    margin-top: -25px;
}

.m_button{
    font-size: 0.6em;
    padding: 0.1em;
    font-weight: 400;
    border-radius: 13px;
    width: 100px;
    margin-right: 0;
}

/*accordionの設定*/
.accordion-area {
    width: 80%;
}

/*companyの設定*/
.company p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}


}    
/*=====タブレット版　終わり======*/


/*=====PC版======*/
@media screen and (min-width:1025px){

/*PC版（大）:コンテナ*/
.contents {
    max-width: 1100px;
}

/*全体の設定*/
.bg_line {
    margin: 40px 40%;

}

.hero_sub {
    margin-top: -150px;

}

.sub-title {
    width: 100%;
    font-size: 1.5em;
}


/*TOP_Aの設定*/
.top_rl {
    width: 100%;
}

.point .pointo_img {
    margin-left: 5%;
}


.point .temp_img {
    width: 300px;
    height: 300px;
}



/*スライダーの設定*/
.slider img {
    width:20vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/

}

.slider .slick-slide {
    opacity: 100;/*透過50%*/
  }


/*POINT_03の設定*/
.point03_img {
    width: 500px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}


.point_03 .temp_lead {
    margin: 0px;
    margin-top: 10px;
    width: 500px;
}

.point03_temp01,
.point03_temp02 {
    width: 540px;

}


.point03_temp01,
.point03_temp02:not(:last-child) {
    margin-right: 50px;
}

/*--adoptionのボタンの装飾--*/
.adoption_btn {
    width: 25%;
    margin-left: auto;
    margin-right: auto;

}



}    

/*=====PC版　終わり======*/

/*=====PC版（大）======*/
@media screen and (min-width:2559px){

/*PC版（大）:コンテナ*/
.contents {
    max-width: 1800px;
}

/*heroの設定*/

.hero h1 {
    font-size: 70px;
    margin-top: 178px;
    margin-left: 15%;
}



}   

/*=====PC版（大）　終わり======*/
