/*
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=M+PLUS+1p:wght@400;700&family=M+PLUS+Rounded+1c&family=Sawarabi+Gothic&display=swap');
*/
*{
    margin:0;
	padding:0;
	box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: "M PLUS 1p", serif;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

i{
	vertical-align:middle;
	padding: 0 2px;
}

a{
    color:#222;
}
a,a:hover {
	text-decoration:none;
}

/* Main */

.container_scroller{
	width: 100%;
	min-height: 100vh;
}


/*	----------------------------------- */
.hidden {
    display:none;
}
.over_ray {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}


/*icons */
.tool_icon,
.user_icon{
    overflow: hidden;
}

/*navigation */
.navigation_bar{
	width: 100%;
	height: 70px;
	position: sticky;
    top: 0px;
	background: rgba(255,255,255,1);
    z-index: 50;
    border-bottom: 1px solid #eee;
}

.navigation_container {
    height: 100%;
	display: flex;
	flex-flow: row;
	margin: 0;
}

.navigation_left_container,
.navigation_menu_container,
.navigation_right_container {
    height: 100%;
    display: flex;
    justify-content: center;

}

.navigation_left_container{
    max-width: 200px;
    position: absolute;
    top:0;
    left: 10px;
}

.navigation_menu_container{
    height: 70px;
    padding: 6px;
	display: flex;
	flex-flow: row;
	margin: 0;
    margin-left: 20px;
}

.navigation_right_container{
    max-width: 400px;
    position: absolute;
    top:0;
    right: 20px;
    justify-content: end;
}

.navigation_item{
    position: relative;
    width: 44px;
    height: 44px;
    display: block;
    margin: 13px 5px;
}

.navigation_item.user_icon_container{
	width: 50px;
	height:50px;
	margin-top: 10px;
	position: relative;	
}

.navigation_item.user_icon_container .count_symbol{
    width: 10px;
    height: 10px;
    top: 5px;
    right: 5px;
}

.navigation_item.user_icon_container .user_icon{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
}

.navigation_item.user_icon::after{
    content: "";
    width: 20px;
    height: 5px;
    position: absolute;
    bottom: -14px;
    left: 50%;
    margin-left: -10px;
    background: #222;
}

.navigation_item img,
.user_icon img,
.tool_icon img,
.thumb_icon img{
    width: 100%;
    height: 100%;
}
.navigation_item i {
    width: 44px;
    height: 44px;
    margin: 0 2px;
    display: block;
    text-align: center;
    line-height: 44px;
    font-size: 20px;
    border-radius: 22px;
}

.navigation_item.button{
    height: 44px;
    line-height: 44px;
    width: auto;
    padding: 0 20px;
}

.menu_button,
.menu_header{
    display: none;
}
.menu_item{
    position: relative;
}

.menu_item a {
    width: 100%;
    height: 100%;
	display: block;
	padding: 0 24px;
	text-decoration: none;
    color: #333;
    line-height: 65px;
}

.menu_item a:hover{
    color: #222;
    transition: .3s ease-in-out;
}

.menu_item a::after{
    content: "";
    width: 0;
    height: 5px;
    left:50%;
    text-align: center;
    position: absolute;
    background-size: auto auto;
    background-color: rgba(85, 85, 85, 1);
    background-image: repeating-linear-gradient(60deg, transparent, transparent 2px, rgba(51, 51, 51, 1) 2px, rgba(51, 51, 51, 1) 4px );
    bottom: -8px;
}

.menu_item a:hover::after{
    content: "";
    width: 20px;
    margin-left: -10px;
    background:#222;
    transition: .3s ease-in-out;
}

@media (max-width: 960px) {    
    .menu_button,
    .menu_header{
        display: block;
    }

    .navigation_menu_container{
        width: 300px;
        height: 100vh;
        overflow: auto;
        position: fixed;
        padding: 0;
        padding-bottom: 70px;
        display: block;
        top: 0;left:0;
        z-index: 999;
        background: rgba(255,255,255,.9);
        text-align: left;
        transition: .3s ease-in-out;
        -webkit-transform: translateX(-105%);
        transform: translateX(-105%);
        margin-left: 0;
    }

    .menu_header{
        display: flex;
        top:0;
        padding: 0;
        height: 70px;
        background: #fff;
    }
    .menu_item{
        width: 100%;
    }

    .menu_item a{
        width: 100%;
        height: 100%;
    }

    .menu_item a:hover{
        width: 100%;
        background: #ddd;
        transition: .3s ease-in-out;
        color: #222;
    }

    .menu_item a::after{
        content: "";
        width: 0;
        height: 0;
        left:0;
        bottom: 0;
        top:0;
    }
    
    #menu_drawer:checked ~ .navigation_menu_container {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        box-shadow: 6px 0 25px rgba(0,0,0,.15);
    }
    
    .navigation_item.user_icon_container .user_icon{
        margin-top: 0;
    }
}

@media (max-width: 767px) {
	.navigation_bar{
		width: 100%;
		height: 60px;
		padding: 0;
		text-align: center;
	}
    
	.site_logo {
        width: 120px;
        height: 40px;
        margin-top: 10px;
	}

    .navigation_left_container ,
    .navigation_right_container {
        max-width: 400px;
        height: 50px;
    }

    .navigation_right_container{
        right: 8px;
    }
    
    .navigation_left_container h3{
        line-height: 60px;
    }

    .navigation_item.user_icon_container::after{
        content: "";
        width: 12px;
        margin-left: -6px;
        bottom: -22px;
    }

    .navigation_item{
        min-width: 40px;
        height: 30px;
        margin: 10px 2px;
    }

    .navigation_item.button{
        height: 40px;
        line-height: 40px;
        width: auto;
        padding: 0 20px;
    }
    
    .navigation_item.user_icon {
        width: 36px;
        height: 36px;
        border-radius: 20px;
        margin-top: 10px;
    }

    .navigation_item.user_icon.selected::after{
        content: "";
        width: 2px;
        height: 100%;
        left:0;
        bottom: 0;
        top:0;
    }

    .navigation_item i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 24px;
        margin-right: 2px;
        border-radius: 20px;
    }
    
	.menu_header{
        height: 60px;
        padding: 0;
	}
}

.site_logo{
    width: 200px;
    height: 40px;
    margin-top: 15px ;
    position: relative;
    display:block; 
	background:url("../img/common/logo.svg") no-repeat;
}

.site_logo a{
    width: 100%;
    height: 100%;
    position: absolute;
}

.site_logo.white{
	background:url("../img/common/logo_ft.svg") no-repeat;
}

/* Menu */
.main_menu{
    min-height: 80vh ;
    padding: 0px 0px 30px;
}
.main_menu p{ 
    min-height: 50px;
    padding: 20px 20px;
}
.main_menu p:hover{
    background:rgba(0, 0, 0, 0.1);
}

/*footer */
.footer{
    width:100%;
    height: 240px;
    padding: 0;
    position: relative;
    background-size: auto auto;
    color:#fff;
    background: #333;
}

.footer_item_container{
    width:100%;
	height: 100%;
    display: flex;
    padding: 10px 20px 20px;
}

.footer_item{
    width: 20%;
    margin-right: 20px;
    padding: 10px 20px 20px;
    color: #fff;
    font-size: 12px;
}

.footer_item_header{
    margin-top: 10px;
    border-bottom: 1px solid #999;
    color:#fff;
    font-size: 12px;
}

.footer_item.detail{
    width: 25%;
    font-size: 12px;
    line-height: 2;
}

.footer_item.list{
    line-height: 2.5;
}

.footer_item a{
    color: #eee;
}

.footer_item a:hover{
    text-decoration: underline;
    color: #fff;
}

.footer_site_logo{
	background:url("./assets/img/common/logo_ft.svg") no-repeat;
}

.social_button_container{
    display: flex;
}

.social_button {
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
    margin: 5px;
    margin-left: 0;
    padding: 10px;
    text-decoration: none;
    transition: 0.5s;
    border-radius: 50%;
    overflow: hidden;
}

.social_button img{
    width: 100%;
    height: auto;
}

.footer > .copy{
    width: 100%;
    height: 30px;
    background: #111;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
    
}

.count_symbol{
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 100%;
    top: 8px;
    right: 8px;
    background: #fe496d;
}

@media (max-width: 767px) {    
	.site_logo {
        width: 150px;
        height: 30px;
        margin-top: 15px;
	}

    .button{
        height: 40px;
        font-size: 12px;
        padding: 0 10px;
        border-radius: 20px;
    }
    
    .button a{
        -webkit-transition: background 0s ease;
        -moz-transition: background 0s ease;
        -ms-transition: background 0s ease;
        -o-transition: background 0s ease;
        transition: background 0s ease;
    }
    
    .footer{
        height: auto;
    }
    .footer .site_logo{
        width: 100px;
    }

    .footer_item_container{
        display: block;
        padding: 8px;
    }

    .footer_item, .footer_item.detail{
        width: 45%;
        padding: 6px 10px;
    }
    .footer_item.detail{
        width: 100%;
    }
    .social_button {
        margin:  10px;
    }
}
#account_drawer:checked ~ .over_ray {
    z-index: 900;
    opacity: .2;
}
.account_menu_item{
    width: 100%;
    height: 44px;
    line-height: 44px;
    text-indent: 10px;
}

.account_menu_item a{
    width: 100%;
    height: 100%;
    display: block;
    color:#222;
}
.account_menu_item a:hover{
    background:#eee;
    color:#333;
}

/* new drawer */
.account_menu_drawer{
    width: 240px;
    top: 5px;
    left: -122px;
    margin-left: -60px;
    padding-bottom: 20px;
    position: absolute;
    z-index: 999;
    background: #fff;
    transition: .3s ease-in-out;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
}

#account_drawer:checked ~ .account_menu_drawer {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
    opacity: 1;
}

.account_menu_drawer .button_close{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: absolute;
    top:5px;right: 10px;
    text-align: center;
    line-height: 44px;
}

.account_menu_drawer .profile_container{
    width: 100%;
    padding: 5px 10px;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #eee;
}

.account_menu_drawer .profile_container .user_icon_container{
    display: block;
    padding: 5px;
}

.account_menu_drawer .profile_container .user_icon_container .user_icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.account_menu_drawer .profile_container .nick_name{
    margin: 5px 10px 0;
}

.account_menu_drawer .profile_container .public_id
{
    margin: 0 10px 10px;
    color: #ccc;
    font-size: 14px;
}

.account_menu_drawer .button_logout{
    width: 80%;
    height: 44px;
    margin: 20px auto 5px;
    line-height: 44px;
    border-radius: 22px;
    text-align: center;
    background: #eee;
}

.account_menu_drawer .button_logout a{
    width: 100%;
    height: auto;
    display: block;
    color: #888;
    transition: .5s ease-in-out;
    border-radius: 22px;
}

.account_menu_drawer .button_logout a:hover{
    background: #555;
    color: #eee;
}

.account_menu_container{
    padding: 5px 0 10px;
    border-bottom: 1px solid #eee;
}

#menu_drawer:checked ~ .over_ray,
#information_drawer:checked ~ .over_ray,
#account_drawer:checked ~ .over_ray{
    display: block;
    opacity: .2;
}

@media (max-width: 767px) {    
    .account_menu_drawer{
        left: -130px;
        margin-left: -60px;
    }
}

/* 1200px over */
@media (min-width: 1200px) {
    .account_menu_drawer{
        width: 300px;
        top: 10px;
        left: -50%;
        margin-left: -60px;
    }
}

.site_logo.ft{
	background:url("../img/common/logo_ft.svg") no-repeat;
}


@media (max-width: 767px) {    
    .footer{
        height: auto;
    }
    .footer .site_logo{
        width: 200px;
    }
    
    .footer_item_container{
        display: block;
        padding: 8px;
    }

    .footer_item, .footer_item.detail{
        width: 100%;
        padding: 6px 10px;
    }
    .footer_item.detail{
        width: 100%;
    }
    .social_button {
        width: 44px;
        height: 44px;
    }
}


/* list */
.icon_list_container,
.log_list_container{
    width: 100%;
    padding: 10px;
    display: flex;
    z-index: 0;
    overflow: hidden;
    font-size: 16px;
}

.icon_list_cell,
.log_list_cell{
    width : calc(30% - 20px);
	display:block;
    margin: 10px;
    padding: 0 0 8px;
    border-radius: 8px;
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
    overflow: hidden;
    background: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.icon_list_cell{
    width: 100px;
    height: 100px;
    padding: 0;
    border-radius: 50%;
}

.log_list_cell a{
    width: 100%;
    height: 100%;
    display: block;
    color :#333;
}

.icon_list_cell:hover,
.log_list_cell:hover{
    opacity: 0.8;
    box-shadow: none;
}

.log_list_cell > h3{
    height: 30px;
    font-size: 16px;
    line-height: 40px;
}
.log_list_cell > p{
    font-size: 16px;
}


.log_list_cell .image{
    width: 100%;
    height: auto;
    aspect-ratio: 1960 / 924;
    display: block;
    padding: 0;
}

.log_list_cell:hover .image{
    opacity: 0.8;
}

.log_list_cell .image img{
    width: 100%;
    height: auto;
}

.log_list_cell .info {
    padding: 0 15px 0px;
    display: block;
    position: relative;
}
.log_list_cell .info h2,
.log_list_cell .info h3{
    height: 20px;
    color: #444;
    
}

.log_list_cell .info p{
    color: #888;
    font-size: 80%;
}

.log_list_cell .info .supports{
    width: 100px;
    height: 30px;
    position: absolute;
    bottom:5px;
    right: 10px;
    text-align: right;
    line-height: 30px;
    font-size: 18px;
}


@keyframes gradientBackground {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media (max-width: 767px) {
    .log_list_container{
        display: block;
        overflow: auto;
        margin: 5px auto;
    }

    .log_list_cell{
        width :100%;
        margin: 5px auto;
        padding: 0 0 10px;
        display: block;
    }
}

/* Top */
.main_visual_container {
    position: relative;
    padding: 0;
}

.main_visual {
    height: 50vh;
    min-height: 530px;
    position: relative;
}


.page_visual{
    position: relative;
    padding: 0;
    height: 150px;
    background: #eee;
}


@media screen and (max-width: 767px) {
    .main_visual {
        min-height: auto;
        height: auto;
    }
}

.main_visual img {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 1px;
    width: calc(100% - 2px);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
  .main_visual img {
        z-index: 1;
        position: relative;
        top: auto;
        left: auto;
        width: calc(100% - 2px);
        height: auto;
        -o-object-fit: inherit;
        object-fit: inherit;
    }
}

/* ad_container*/
.ad_container{
    width: 100%;
    min-height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 2px solid #000;
    background-image: -webkit-repeating-linear-gradient(135deg, #000, #000 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.ad_container:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  border-top: 2px solid #000;
  background-image: -webkit-repeating-linear-gradient(135deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


/* tag */
.tag_container{
    width: 100%;
    padding: 10px 0;
    font-size: 80%;
}

.tag{
	position: relative;
	display: inline-block;
	margin: 0 10px 0 0;
	padding: .6em .6em .6em .6em;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	background: #777;
}
