@charset "UTF-8";
html { scroll-behavior: smooth;}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: none;
font-style: normal;
text-align: left;
zoom: 1;
}
h1,h2,h3,h4,h5,p,a,td {
    font-family: 'Shippori Mincho', serif;
    color: #363636;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
table {
border-collapse: collapse;
font-family: inherit;
}
h1,h2,h3,h4,h5 {
font-size: 100%;
font-weight: normal;
line-height: 1;
}
input,textarea,select {
font-family: inherit;
font-size: 16px;
}
input[type="button"],input[type="text"],input[type="submit"] {
-webkit-appearance: none;
border-radius: 0;
}
textarea {
resize: none;
-webkit-appearance: none;
border-radius: 0;
}
th,td {
border-collapse: collapse;
}
table th,table td {
white-space: nowrap;
}
ul,ol {
list-style-type: none;
}
img {
vertical-align: text-bottom;
vertical-align: -webkit-baseline-middle;
max-width: 100%;
height: auto;
width /***/:auto;
}
a {
    text-decoration: none;
    color: inherit;
}
.w_container {
    max-width: 1080px;
    margin: 0 auto;
}
.sp_only {
    display: none;
}


/* ここからヘッダー */
header {
    background-image: url(../img/top_firstview.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 900px;
}
.header_inner {
    position: relative;
}
.header_message p{
    font-weight: 200;
    color: #fff;
    font-size: clamp(1.875rem, 1.7105rem + 0.7018vw, 2.5rem);
    right: 20px;
    top: 100px;
    writing-mode: vertical-rl;
    letter-spacing: 0.3em;
    position: absolute;
    height: 800px;
}
/*==================================================
じわっ
===================================*/

.blur{
    animation-name:blurAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
  }
  
  @keyframes blurAnime{
    from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
    }
  
    to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
    }
  }
   
  .blurTrigger{
      opacity: 0;
  }
.header_logo img {
    width: 20%;
    position: absolute;
    left: 0;
    top: 500px;
}
/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

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

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
  position: absolute;
  left:-15px;
  top: -15px;
    /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
    /*線の動き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:800px) {
    header {
        height: 660px;
    }
    .header_logo img {
        top: 450px;
    }
    }
    /* お問い合わせボタンを固定 */
.fixed_btn a {
    background-color: #2b2b2b;
    display: inline-block;
    color: #fff;
    position: fixed;
    right: 0;
    top: 450px;
    padding: 35px 24px 35px 20px;
    writing-mode: vertical-rl;
    letter-spacing: 0.3em;
    font-size: 23px;
    border-top: solid #fff 1px;
    border-left: solid #fff 1px;
    border-bottom: solid #fff 1px;
    transition: 0.3s all;
    cursor:pointer;
    z-index: 10;
}
.fixed_btn a:hover {
    opacity: 0.7;
}
.fixed_btn_sp  {
    background-color: #2b2b2b;
    color: #fff;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    padding: 20px;
    z-index: 10;
}
.fixed_inner_sp {
    border: solid #fff 1.5px;
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
}

@media screen and (max-width:800px) {
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
}
@media screen and (max-width:1079px) {
    .w_container {
        width: 92%;
    }
}
@media screen and (min-width:801px){
.sp_only {
    display: none;
}
}
/* ここまでヘッダー */


/* ここから導入 */
.intro {
    background-color: #EAEAE7;
    padding-top: 10%;
}
.intro_text {
    text-align: center;
}
.intro_text p {
    font-size: clamp(1.125rem, 0.9605rem + 0.7018vw, 1.75rem);
    margin-bottom: 5%;
    display: inline-block;
    padding: 3px 20px;
    text-align: center;
}
.intro_text h5 {
    font-size: clamp(1.25rem, 1.0033rem + 1.0526vw, 2.1875rem);
    display: inline-block;
    padding: 10px 20px;
    margin-bottom:10%;
    text-align: center;
    line-height: 1.5em;
}
.intro_text h5 span {
    background:linear-gradient(transparent 70%, #E7C16D 60%);
}
.intro_text p, .intro_text h5 {
    background-color: #fff;
}
.intro_ex p{
    text-align: center;
    font-size: clamp(0.8125rem, 0.648rem + 0.7018vw, 1.4375rem);
    padding: 10% 0;
    line-height: 2em;
}
/* ここまで導入 */


/* ここからこだわり */
.Pro {
    padding-top: 10%;
    position:relative;
}
.Pro_title_area  {
    text-align: center;
}
.Pro_title_area h1 {
    text-align: center;
}
.Pro_title_area h2 {
    text-align: center;
    margin-bottom: 3%;
}
.Pro_title_area p {
    font-size: clamp(0.875rem, 0.7763rem + 0.4211vw, 1.25rem);
    text-align: center;
    margin-bottom: 7%;
}
.Pro_title_img {
    margin-bottom: 2%;
}

/* タイトル共通 */
.title_area h1 {
    font-size: clamp(1.875rem, 1.5461rem + 1.4035vw, 3.125rem);
    font-family: 'Cormorant', serif;
    letter-spacing: 0.03em;
    margin-bottom: 3%;
}
.title_area h2 {
    font-size: clamp(1.25rem, 1.1678rem + 0.3509vw, 1.5625rem);
}
.title_area h1 span {
    color: #E7BB5E;
}
/* タイトル共通ここまで */

/* box内共通 */
.Pro_gray_area {
    background-color: #EAEAE7;
}
.Pro_gray_area h3 {
    font-size: clamp(1.125rem, 0.9276rem + 0.8421vw, 1.875rem);
    margin-bottom: 3%;
}
.Pro_gray_title p {
    font-size: clamp(0.875rem, 0.8092rem + 0.2807vw, 1.125rem);
    color: #747474;
    margin-bottom: 1.5%;
}
/* box内共通ここまで */

.Pro_gray_1_box, .Pro_gray_3_box {
    position: relative;
    margin-top: 5%;
    margin-bottom: 25%;
}
.Pro_gray_1_area, .Pro_gray_3_area  {
    padding: 5% 0 5% 50%;
    margin-right: calc(50% - 50vw);
    margin-left: 4%;
}
.Pro_gray_1_text, .Pro_gray_3_text {
    width: 70%;
}
.Pro_gray_1_img img, .Pro_gray_3_img img {
    position: absolute;
    top: 25%;
    left: -3%;
    width: 50%;
}
.Pro_gray_1_text p, .Pro_gray_3_text p {
    line-height: 1.8em;
}

@media screen and (max-width:800px) {
    .Pro_gray_1_text, .Pro_gray_3_text {
        width: 95%;
    }
    .Pro_gray_1_area, .Pro_gray_3_area {
        padding: 5% 0 5% 5%;
    }
    .Pro_gray_1_img img, .Pro_gray_3_img img {
        position: initial;
        flex: 1;
        margin-left: calc(50% - 50vw);
        margin-right: 4%;
        width: 80%;
    }
    .Pro_gray_1_box, .Pro_gray_3_box {
        margin-bottom: 10%;
    }
}

.Pro_gray_1_1_area {
    position: relative;
    background-color: #EAEAE7;
    height: 200px;
    width: 30%;
    margin: 0 auto;
}
.Pro_gray_1_1_area img {   
    position: absolute;
    left: -40%;
    top: 50px;
}
@media screen and (max-width:800px) {
    .Pro_gray_1_1_area {
        position: relative;
        background-color: #EAEAE7;
        height: 150px;
        width: 50%;
        margin: 0 auto;
    }
    .Pro_gray_1_1_area img {   
        position: absolute;
        left: -30%;
        top: 30px;
    }
}
.Pro_gray_2 {
    margin: 15% 0;
}
.Pro_gray_2_box {
    position: relative;
}
.Pro_gray_2_area {
    margin-left: calc(50% - 50vw);
    margin-right: 4%;
    padding: 5% 50% 5% 10%;
    text-align: right;
}
.Pro_gray_2_title h3, .Pro_gray_2_title p{
    text-align: right;
}
.Pro_gray_2_text  {
    text-align: left;
}
.Pro_gray_2_text p {
    line-height: 1.8em;
}
.Pro_gray_2_img img{
    position: absolute;
    top: 60px;
    right: -30px;
    width: 50%;
}
@media screen and (max-width:1080px) {
    .Pro_gray_2_area {
        padding: 5% 40% 5% 10%;
    }
    .Pro_gray_2_img img{
        right: -200px;
    }
    .Pro_gray_2_img {
        text-align: right;
    }
}
@media screen and (max-width:800px) {
    .Pro_gray_2_text {
        width: 100%;
    }
    .Pro_gray_2_area {
        padding: 5% 5% 5% 10%;
    }
    .Pro_gray_2_img img {
        position: static;
        flex: 1;
        margin-right: calc(50% - 50vw);
        margin-left: 4%;
        width: 80%;
    }
    .Pro_gray_2 {
        margin: 20% 0 15% 0;
    }
}

.Pro_gray_2_1 {
    margin-top: 20%;
    margin-bottom: 25%;
}
.Pro_gray_2_1_area {
    position: relative;
    background-color: #EAEAE7;
    height: 200px;
    width: 30%;
    margin: 0 auto;
}
.Pro_gray_2_1_area img {   
    position: absolute;
    left: 40%;
    top: 50px;
}
@media screen and (max-width:800px) {
    .Pro_gray_2_1 {
        margin-top: 10%;
        margin-bottom: 40%;
    }
    .Pro_gray_2_1_area {
        position: relative;
        background-color: #EAEAE7;
        height: 150px;
        width: 50%;
        margin: 0 auto;
    }
    .Pro_gray_2_1_area img {   
        position: absolute;
        left: -30%;
        top: 30px;
    }
}
/* ここまでこだわり */


/* ここからクラフトマンシップ */
.Crafts {
    background-image: url(../img/craft_bgimg.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding-top: 5%;
    padding-bottom: 8%;
}
.Crafts_title_area {
    display: flex;
    align-items: center;
    margin-bottom: 3%;
}
.Crafts_title_area h1{
    color: #fff;
}
.Crafts_title_area h2 {
    margin-bottom: 3%;
    margin-left: 2%;
    color: #fff;
}
.Crafts_box {
    display: flex;
    align-items: center;
    gap: 5%;
}
.Crafts_left {
    flex: 1;
    position: relative;
}
.Crafts_img_fixed {
    position: absolute;
    width: auto;
    top: 50%;
    left: -30%;
}
.Crafts_right {
    flex: 0.8;
}
.Crafts_right_text h4, .Crafts_right_text p {
    color: #fff;
}
.Crafts_right_text h4 {
    font-size: clamp(1.125rem, 0.9276rem + 0.8421vw, 1.875rem);
    margin-bottom: 10%;
}
.Crafts_right_text p {
    font-size: clamp(0.875rem, 0.7763rem + 0.4211vw, 1.25rem);
    line-height: 1.8em;
}
@media screen and (max-width:800px) {
    .Crafts_title_area {
        display: block;
        margin-bottom: 10%;
    }
    .Crafts_title_area h1, .Crafts_title_area h2 {
        text-align: center;
    }
    .Crafts {
        padding-bottom: 10%;
        margin-top: 20%;
    }
    .Crafts_box {
        display: block;
    }
    .Crafts_img {
        text-align: right;
    }
    .Crafts_img_fixed {
        position: absolute;
        width: 50%;
        top: 50%;
        left: 5%;
    }
    .Crafts_right_text h4 {
        margin-bottom: 5%;
    }
    .Crafts_right {
        margin-top: 10%;
    }
}
/* ここまでクラフトマンシップ */


/* ここからマテリアル */
.Material {
    background-color: #EAEAE7;
    padding-top: 10%;
    padding-bottom: 10%;
}
.Material_title_area {
    text-align: center;
}
.Material_title_area h1 {
    text-align: center;
}
.Material_title_area h2 {
    text-align: center;
    margin-bottom: 5%;
}
.Material_title_area p {
    text-align: center;
    margin-bottom: 5%;
    font-size: clamp(0.9375rem, 0.8882rem + 0.2105vw, 1.125rem);
    line-height: 1.8em;
}
.Material_leather_title_area {
    margin-bottom: 5%;
}
.Material_title h3 {
    margin-top: 4%;
    margin-bottom: 4%;
    text-align: center;
    font-size: clamp(1.125rem, 0.9276rem + 0.8421vw, 1.875rem);
}
.Material_title h3 span {
    color: #E7BB5E;
}
.Material_title p {
    text-align: center;
    font-size: clamp(0.875rem, 0.8092rem + 0.2807vw, 1.125rem);
    line-height: 1.5em;
}
.Material_leather_area {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    justify-content: space-around;
    margin-bottom: 5%;
}
.Material_leather_box {
    width: 33%;
    margin-bottom: 8%;
}
.Material_img {
    text-align: center;
}
.Material_text h5 {
    font-size: clamp(1.0625rem, 0.9309rem + 0.5614vw, 1.5625rem);
    margin-top: 8%;
    margin-bottom: 6%;
    text-align: center;
}


.Material_text p {
    font-size: clamp(0.8125rem, 0.6974rem + 0.4912vw, 1.25rem);
    line-height: 1.5em;
}
.Material_thread_title_area, .Material_metal_title_area {
    margin-bottom: 5%;
}
.Material_thread_img, .Material_metal_img {
    text-align: center;
}
.Material_thread, .Material_metal {
    padding-bottom: 5%;
}
.Material_border {
    text-align: center;
}
.Material_border img {
    width: 3%;
}
.Material_thread .Material_border, .Material_metal .Material_border {
    margin-bottom: 3%;
}
@media screen and (max-width:800px) {
    .Material_leather_box {
        width: 40%;
    }
}
/* マテリアルここまで */


/* フローここから */
.Flow {
    background-image: url(../img/flow_bgimg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 10%;
    padding-bottom: 10%;
}
.Flow_title_area h1, .Flow_title_area h2 {
    color: #fff;
}
.Flow_title_area h2 {
    margin-bottom: 2%;
}
.Flow_box {
    display: flex;
    gap: 5%;

}
.Flow_box_area {
    margin-bottom: 5%;
}
.Flow_box p, .Flow_box h4 {
    color: #fff;
}
.Flow_box h4 {
    font-size: clamp(1.125rem, 1.0099rem + 0.4912vw, 1.5625rem);
    margin-bottom: 1.5%;
    padding-top: 5.5%;
}
.Flow_box p {
    font-size: clamp(0.9375rem, 0.8553rem + 0.3509vw, 1.25rem);
    margin-bottom: 1.5%;
    line-height: 1.5em;
}
.Flow_box_left {
    width: 300px;
}
.Flow_border img {
    margin: 2% 0 2% 13%;
}
@media screen and (max-width:800px) {
    .Flow_box {
        display: block;
    }
    .Flow_box_left {
        width: 60%;
        margin: 8% auto;
    }
    .Flow_border  {
        text-align: center;
        margin: 5% 0;
    }
    .Flow_border img {
        margin: 0;
        width: 4%;
    }
    .Flow_border_short img {
        width: 4.5%;
    }
}
@media screen and (max-width:480px) {
    .Flow_box {
        display: block;
    }
    .Flow_box_left {
        width: 80%;
        margin: 8% auto;
    }
    .Flow_border  {
        text-align: center;
        margin: 5% 0;
    }
    .Flow_border img {
        margin: 0;
        width: 4%;
    }
    .Flow_border_short img {
        width: 4.5%;
    }
}
/* ここまでフロー */


/* ここからオーダーストーリー */
.Order {
    background-color: #EAEAE7;
    padding-top: 10%;
    padding-bottom: 5%;
}
.Order_title_area h1, .Order_title_area h2, .Order_title_area p {
    text-align: center;
}
.Order_title_area p {
    margin-top: 2%;
}
.Order_border {
    text-align: center;
    margin-top: 5%;
}
.Order_long_wallet {
    position: relative;
}
.Order_box {
    background-color: #fff;
    margin-bottom: 18%;
}
.Order_box_area {
    margin-top: 5%;
}
.Order_long_wallet_title  {
    position: absolute;
    top: -2.5%;
    left: 41%;
}
.Order_box_title  h4 {
    font-size: clamp(1.4375rem, 1.1908rem + 1.0526vw, 2.375rem);
    margin-bottom: 10%;
    text-align: center;
}
.Order_box_title p {
    font-size: clamp(0.9375rem, 0.8059rem + 0.5614vw, 1.4375rem);
    margin-top: 2%;
    margin-bottom: 5%;
    text-align: center ;
}
.Order_box_img {
    text-align: center;
    position: relative;
}
.Order_box_img .Story_yajirusi {
    position: absolute;
    right: 44%;
    width: 11%;
    top: 51%;

}
.Order_crocodile .Story_yajirusi {
    right: 46%;
}
.Order_comments_img {
    text-align: center;
    padding-top: 10%;
    padding-bottom: 3%;
    width: 70%;
    margin: 0 auto;
}
.Order_box_text {
    font-size: clamp(0.9375rem, 0.8553rem + 0.3509vw, 1.25rem);
    padding: 5% 14%;
}
.Order_box_text p {
    line-height: 1.5em;
}
.Order_tote_bag {
    position: relative;
}
.Order_tote_bag_title {
    position: absolute;
    top: -2.5%;
    left: 43%;
}
.Order_crocodile {
    position: relative;
}
.Order_crocodile_title {
    position: absolute;
    top: -2.5%;
    left: 38%;
}
@media screen and (max-width:800px) {
    .Order_long_wallet_title {
        top: -1%;
        left: 32%;
    }
    .Order_tote_bag_title {
        top: -1%;
        left: 36%;
    }
    .Order_crocodile_title {
        top: -1%;
        left: 25%;
    }
    .Order_comments_img {
        width: 90%;
    }
    .Order_comments_img img{
        padding-top: 10%;
        width: 100%;
        margin: auto;
    }
    .Order_box_img {
        width: 90%;
        margin: auto;
    }
    .Order_box_img_1 {
        margin-bottom: 15px;
    }
}
/* ここまでオーダーストーリー */


/* ここから料金 */
.Price {
    padding-top: 8%;
}
.Price_title_area h1, .Price_title_area h2 {
    text-align: center;
}
.Price_title p{
    text-align: center;
    font-size: clamp(1rem, 0.7697rem + 0.9825vw, 1.875rem);
    margin-top: 6%;
}
.Price_box {
    background-color: #EAEAE7;
    margin-top: 3.5%;
    padding: 6.5% 20%;
    text-align: center;
}
.Price_box_table {
    margin: auto;
}
.Price_box_table td {
    font-size: clamp(1rem, 0.9342rem + 0.2807vw, 1.25rem);
    padding-bottom: 8%;
}
.Price_ex {
    margin-top: 8%;
    padding: 4% 5%;
    border: solid 1px #000;
}
.Price_box_title p {
    text-align: center;
    font-size: clamp(1.125rem, 0.9605rem + 0.7018vw, 1.75rem);
    margin-bottom: 4%;
}
.Price_box_text p {
    font-size: clamp(0.875rem, 0.8092rem + 0.2807vw, 1.125rem);
    line-height: 1.5em;
}
/* ここまで料金 */


/* ここからお問い合わせ */
.Contact_btn_area {
    background-image: url(../img/top_firstview_contact.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 calc(50% - 50vw);
	width: 100vw;
    padding: 10% 0;
    margin-top: 15%;
    margin-bottom: 15%;
}
.Contact {
    padding-bottom: 15%;
}
.Contact_btn {
    text-align: center;
    color: #2b2b2b;
}
.Contact_btn a {
    display: inline-block;
    background-color: #ffffffB3;
    font-size: clamp(1.25rem, 1.0855rem + 0.7018vw, 1.875rem);
    padding:  30px 50px;
    transition: 0.3s all;
}
.Contact_btn a:hover {
    opacity: 0.75;
}
.Cotact_text p {
    text-align: center;
    font-size: clamp(0.9375rem, 0.8059rem + 0.5614vw, 1.4375rem);
    line-height: 1.8em;
}
.Contact_border {
    text-align: center;
    margin-top: 3%;
    margin-bottom: 3%;
}
.Contact_sns {
    display: flex;
    max-width: 500px;
    margin: auto;
    justify-content: space-around;
    height: 100%;
}
.Contact_sns a {
    display: inline-block;
    transition: 0.3s all;
}
.Contact_sns a:hover {
    opacity: 0.7;
}
.Contact_insta, .Contact_line {
    border: solid #000 1px;
    padding: 5% 9% ;
}
.Contact_line {
    padding: 5% 8% ;
}
.Contact_insta img, .Contact_line img {
    width: 100px;
}
.Contact_insta p, .Contact_line p {
    text-align: center;
    margin-bottom: 10%;
    font-size: clamp(0.75rem, 0.6184rem + 0.5614vw, 1.25rem);
}
@media screen and (max-width:800px) {
    .Contact_border {
        width: 4%;
        margin: auto;
        margin-top: 3%;
        margin-bottom: 3%;
    }
}
/* ここまでお問い合わせ */


/* ここからフッター */
footer {
    background-color: #2b2b2b;
}
.footer_inner a {
    transition: 0.3s all;
}
.footer_inner a:hover {
    opacity: 0.7;
}
.footer_img {
    width: 15%;
    margin: auto;
    padding-top: 4%;
    padding-bottom: 4%;
}
footer nav ul {
    display: flex;
    justify-content: space-around;
    color: #fff;
    gap: 10px;
    font-size: clamp(0.875rem, 0.7763rem + 0.4211vw, 1.25rem);
}
footer .copy {
    text-align: center;
    padding-top: 4%;
    padding-bottom: 2.5%;
}
footer small {
    font-size: clamp(0.75rem, 0.7171rem + 0.1404vw, 0.875rem);
    color: #fff;
}
@media screen and (max-width:800px) {
    footer nav ul {
        display: block;
    }
    footer nav ul li {
        text-align: center;
        margin-bottom: 1.5%;
    }
    footer .copy {
        text-align: center;
        padding-bottom: 10%;
    }
}

/* アニメーション */
.animation{
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(30px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/* ページトップへ戻るボタン */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: #E7BB5E;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 25px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}
#page-top i {
    font-size: 20px;
}
/*矢印が右に移動する*/
.btnarrow4{
    /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
    /*形状*/
    display: inline-block;
  padding: 0 20px;
    color: #333;
    text-decoration: none;
    outline: none;
}

/*矢印と下線の形状*/
.btnarrow4::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
  position: absolute;
    bottom:15px;
    left: 60%;
    /*下線の形状*/    
    width: 50%;
    height: 2px;
  background:#fff;
    /*アニメーションの指定*/
    transition: all .3s;
}

.btnarrow4::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
  position: absolute;
    bottom:20px;
    right: -10%;
    /*矢印の形状*/    
    width: 15px;
    height:2px;
  background:#fff;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow4:hover::before{
    left: 65%;
}

.btnarrow4:hover::after{
    right:-15%;
}
