@charset "UTF-8";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/*Flexboxの設定*/

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex_jc_sapace_between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex_jc_sapace_around {
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex_ai_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*ここまでFlexboxの設定*/

body {
    font-family: 'Kosugi', sans-serif;
    color: #333;
    font-size: 16px;
    border: 3px solid #fff;
    line-height: 1.6;
}

.wrapper {
    min-height: 100vh;
    position: relative;
    padding-bottom: 38px;
}

header {
    border-bottom: 3px solid #333;
}

header .contain {
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
}

.header_left_content {
    display: flex;
    align-items: center;
}

.header_title {
    font-size: 23px;
    float: left;
    margin-right: 10px;
}

.header_menu ul {
    display: flex;
    margin: 0;
}

.header_menu li {
    margin: 0 20px;
}

.menu-icon {
    color: white;
    font-size: 25px;
    padding: 21px 0;
    display: none;
}

.menu-close-icon {
    color: white;
    font-size: 25px;
    padding: 21px 0;
    display: none;
}

header .header_right_content button {
    width: auto;
    padding: 15px 30px;
    margin: 0;
}

.header_menu button {
    transition: opacity 0.3s;
}

.header_menu button:hover {
    opacity: 0.6;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

body.index .container {
    min-height: auto;
}

.container {
    min-height: calc(100vh - 126px);
    padding-bottom: 70px;
}

.contain {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

a {
    color: #333;
    text-decoration: none;
}

li {
    list-style: none;
}

button {
    -webkit-appearance: none;
    font-size: inherit;
    font-family: inherit;
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
}

.btn {
    margin-top: 10px;
    margin-right: 0;
    display: inline-block;
    padding: 10px 30px;
    text-decoration: none;
    color: #fff;
    background: #fd9535;
    border-radius: 4px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.19);
    transition: background 0.3s;
}

.btn:hover {
    background: rgba(253, 149, 53, 0.6);
}

button:focus {
    outline: none!important;
    box-shadow: none!important;
}

:disabled.btn:hover {
    background-color: #DCDCDC;
}

:disabled {
    background-color: #DCDCDC;
    cursor: not-allowed;
    /* 禁止カーソル */
}

button.btn {
    border: none;
    padding: 15px 30px;
    outline: none;
    cursor: pointer;
}

.fas {
    margin-left: 5px;
}

.container h1 {
    font-size: 30px;
    font-style: normal;
    clear: left;
    margin-bottom: 20px;
    margin-top: 10px;
    margin-left: 10px;
}

.container p {
    margin-bottom: 15px;
    margin-left: 10px;
}

img {
    width: 100%;
}

footer {
    background-color: #696969;
    color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

#footerMenu {
    text-align: center;
    margin: 10px 0 20px 0;
    line-height: 1;
}

#footerMenu li {
    display: inline;
    list-style-type: none;
    margin-right: 6px;
    padding-left: 10px;
}

#footerMenu li + li {
    border-left: 1px solid #fff;
}

#footerMenu button {
    color: #fff;
    font-size: 9pt;
    vertical-align: 20%;
}

#footerMenu button:hover {
    color: #eee;
}

.copyright {
    text-align: center;
    font-size: 12px;
}

.back {
    background-color: #696969;
}

.back:hover {
    background: rgba(76, 76, 76, 0.44)
}

.title_wrap {
    text-align: center;
    padding-top: 10px;
}

.title_wrap h1 {
    padding: 0 0 1em;
    position: relative;
    display: inline-block;
    margin: 50px 0 1em;
}

.title_wrap h1:before {
    content: '';
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 60px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: black;
    border-radius: 2px;
}

.top_img {
    margin-top: 40px;
}

.top_text p {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 60px;
    line-height: 1.4;
}

.bg {
    background-color: #dcdcdc;
}

.recommend_movie_btn {
    text-align: center;
}

.recommend_movie_btn .btn {
    padding: 20px 60px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.recommend_team_btn {
    text-align: center;
}

.recommend_team_btn .btn {
    padding: 20px 60px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.new {
    background-color: #dcdcdc;
}

.new_btn {
    text-align: center;
    padding-bottom: 100px;
}

.new_btn .btn {
    padding: 20px 60px;
    margin-top: 40px;
}

.error {
    color: red;
}

/* sct.html */

.withdraw h2,
.sct h2 {
    font-size: 25px;
    border-left: 5px solid #333;
    padding-left: 10px;
    margin-bottom: 20px;
}

.content_box_wrap .content_box {
    margin-bottom: 60px;
    line-height: 1.6;
}

.content_box_wrap .content_box_item {
    padding: 0 10px;
}

ul.list_item_wrap li {
    margin-bottom: 10px;
    padding-left: 1em;
    position: relative;
}

ul.list_item_wrap li:last-child {
    margin-bottom: 0;
}

ul.list_item_wrap li::before {
    content: "・";
    position: absolute;
    left: 0;
}

.cancel_btn_wrap {
    text-align: center;
    margin: 100px 0 70px;
    border: 2px solid #ccc;
    padding: 30px 10px;
    background-color: #f5f5f5;
}

.cancel_btn {
    background-color: #333333;
}

.cancel_btn:hover {
    opacity: 0.6;
    background-color: #333;
}

.sct table {
    width: 100%;
    border-collapse: collapse;
}

.sct tr {
    border-bottom: 1px solid #ccc;
}

.sct th,
.sct td {
    text-align: left;
    padding: 20px;
    font-weight: normal;
}

.font_bold {
    font-weight: bold;
}

.mt_30 {
    margin-top: 30px;
}

.mb_10 {
    margin-bottom: 10px;
}

.mb_50 {
    margin-bottom: 50px;
}

.display_none {
    display: none;
}

.text_center {
    text-align: center;
}

#loading {
    display: table;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.8;
    z-index: 999;
}

#loading .loadingMsg {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    padding-top: 140px;
    background: url(../image/ajax-loader.gif) center center no-repeat;
}

.error_ul {
    font-size: 16px;
}

.list {
    margin-bottom: 45px;
}

.list_wrap {
    border: 1px solid #808080;
    width: calc(25% - 30px);
    float: left;
    margin: 10px 15px;
    cursor: pointer;
    background-color: #fff;
}

.list_wrap:hover {
    opacity: .5;
}

.list_text {
    text-align: center;
    padding: 10px;
}

.list_img a {
    transition: 0.3s ease-in-out;
}

.list_img a:hover {
    opacity: .5;
}

.list_text p {
    margin: 5px 0;
}

.team_list_wrap {
    float: left;
    width: calc(25% - 30px);
    margin: 20px 15px;
}

.list_img {
    width: 100%;
    height: 180px;
    object-fit: cover; 
}

.list_img img {
    width: 100%;
    height: 180px;
    object-fit: cover; 
}
