/*ここから　リセットCSS*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'メイリオ', Meiryo, Osaka, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Arial', 'ＭＳ Ｐゴシック', 'MS PGothic', 'sans-serif';
    color: #ddd;
    background: #111;
}

s {
    text-decoration: none;
}

li {
    list-style: none;
}

a:hover {
    cursor: pointer;
}

/*ここまで　リセットCSS*/

/*画面サイズ 769px以上から適用*/
@media screen and (min-width: 769px) {

    .navToggle,
    .globalMenuSp {
        display: none;
    }
}

/*ここまで　画面サイズ 769px以上から適用*/
/*ここから一般*/
a,
p,
h1,
h2,
h3,
h4,
h5,
ul {
    text-decoration: none;
    color: #dddddd;
}

h2 {
    text-align: center;
    margin: 80px 0 50px;
    font-size: 2rem;
}

h2.for_details {
    padding-top: 80px;
}

h3 {
    text-align: center;
    margin: 35px 0 20px;
    font-size: 1.5rem;
}

h3.link {
    padding-top: 80px;
}

h3.for_details {
    padding-top: 80px;
}

h3.news_archives {
    padding-top: 10px;
}

h4 {
    text-align: center;
    margin: 10px 0 10px;
    font-size: 1.2rem;
}

h5 {
    text-align: center;
    margin: 20px 0 40px;
    font-size: 1.2rem;
}

h6 {
    text-align: left;
    margin: 10px 100px 10px;
    font-size: 1.2rem;
}

th,
td,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    color: #ddd;
}

/*ここまで一般*/
/*ここから　webpage本体*/
/*ここから ヘッダー*/
header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1rem 0;
    position: fixed;
    height: 80px;
    top: 0;
    left: 0;
    z-index: 10;
    background: #111;
    opacity: 0.85;
}

.top_image:hover {
    opacity: 0.6;
}

.nav_inner {
    width: 75%;
}

.g_nav {
    display: flex;
    width: 100%;
    max-width: 960px;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 500;
}

.g_nav li a {
    display: block;
    width: 100%;
}

.g_nav li {
    position: relative;
    line-height: 1;
    width: 100%;
}

.g_nav li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    background-color: #ddd;
    width: 0;
    transition: .4s;
}

.g_nav li a:hover::after {
    width: 100%;
}

.drop_down {
    *zoom: 1;
}

.drop_down:before,
.drop_down:after {
    content: "";
    display: table;
}

.drop_down li {
    position: relative;
    margin: 0;
    padding: 0;
    text-align: center;
}

.drop_down li a {
    display: block;
    margin: 0;
    padding: 15px 0 11px;
}

.drop_down li ul {
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
}

.drop_down li ul li {
    width: 100%;
}

.drop_down li ul li a {
    padding: 15px 15px;
    border-top: 1px solid #7c8c0e;
    background: #000;
    text-align: left;
}

.drop_down li a:hover {
    opacity: 70%;
}

#drop_down li ul {
    opacity: 0;
    top: 50%;
    visibility: hidden;
    transition: .5s;
}

#drop_down li:hover ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

#drop_minus li #drop_minus1 {
    opacity: 0;
    top: -500%;
    left: 10%;
    visibility: hidden;
    transition: 1s;
}

#drop_minus li:hover #drop_minus1 {
    top: -350%;
    left: 10%;
    visibility: visible;
    opacity: 1;
}

#drop_minus li #drop_minus2 {
    opacity: 0;
    top: -900%;
    left: 10%;
    visibility: hidden;
    transition: 1s;
}

#drop_minus li:hover #drop_minus2 {
    top: -900%;
    left: 10%;
    visibility: visible;
    opacity: 1;
}

/*.language {
    display: flex;
    width: 100%;
    max-width: 500px;
    justify-content: space-around;
    padding-right: 50px;
    margin-top: 20px;
}

.language li a:hover {
    color: #0433ac;
}*/
/*ここまで ヘッダー*/
/*ここから 本文*/
.wrapper {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

section + section {
    margin-top: 10rem;
}

section p {
    width: 80%;
    margin: 20px auto;
}

.article_ul {
    width: 80%;
    margin: 50px auto 80px;
}

.top_article {
    margin-top: 6rem;
}

.bg {
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(50, 50, 50, 1) 50%, rgba(0, 0, 0, 1) 100%);
    background-size: cover;
}

.check_it {
    background: #333;
}

.title_bar {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
    text-align: left;
    padding: 0.25rem;
    border-left: 10px solid #555;
    border-bottom: 1px solid #555;
}

div.title_bar {
    margin-top: 70px;
    margin-bottom: 30px;
}

.with_time {
    margin-bottom: 0;
}

.open {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

p.note {
    font-weight: 400;
}

p {
    text-align: justify;
    /* 両端揃え */
    text-justify: inter-ideograph;
    /* 両端揃えの種類　IE・Edge対策として（英文のみの場合はこれを削除） */
}

p.first {
    margin-top: 3rem;
}

.emphasis {
    font-size: 1.2rem;
    font-weight: 600;
}

.smaller {
    font-size: 1rem;
    font-weight: 500;
}

p.emphasis {
    width: 80%;
    margin: 15px auto;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
    margin: 0 10px;
    width: 90%;
}

.title_color,
.emphasizing_color {
    color: #82ebfe;
}

.s-title{
    font-size: 1.1rem;
    font-weight: 500;
}

.long_margin-top {
    margin-top: 2rem;
}

.long_margin-top2 {
    margin-top: 6rem;
}

.longer_margin-top {
    margin-top: 16rem;
}

.long_margin-bottom {
    margin-bottom: 2rem;
}

.longer_margin-bottom {
    margin-bottom: 8rem;
}

div.longest_margin-bottom {
    margin-bottom: 12rem;
}

.article_box {
    width: 90%;
    max-width: 800px;
    margin: 2rem auto 4rem;
    /*background-color: #333;*/
    border-radius: 15px;
    padding: 1rem;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(50, 50, 50, 1) 50%, rgba(0, 0, 0, 1) 100%);
}

.center_article_box {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 7rem;
}

.box {
    width: 100%;
    max-width: 780px;
    margin: 2rem auto 4rem;
    /*background-color: #333;*/
    border-radius: 15px;
    padding: 0.2rem;
    z-index: 2;
    background: linear-gradient(90deg, rgba(30, 30, 30, 1) 0%, rgba(50, 50, 50, 1) 50%, rgba(30, 30, 30, 1) 100%);

}

.article_box1 {
    width: 90%;
    max-width: 800px;
    margin: 2rem auto 4rem;
    text-align: center;
    /*background-color: #333;*/
    border-radius: 15px;
    padding: 1rem;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(50, 50, 50, 1) 50%, rgba(0, 0, 0, 1) 100%);
}

.center_article_box1 {
    display: inline-block;
    text-align: left;
    /*width: 90%;
    max-width: 800px;*/
    margin: 0 auto;
}

.box1 {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    width: 48%;
    /*max-width: 780px;*/
    margin: 2rem auto 4rem;
    /*background-color: #333;*/
    border-radius: 15px;
    padding: 0.2rem;
    z-index: 2;
    background: linear-gradient(90deg, rgba(30, 30, 30, 1) 0%, rgba(50, 50, 50, 1) 50%, rgba(30, 30, 30, 1) 100%);

}

.index_img:hover {
    opacity: 0.6;
}

/*ここから　動画*/
.hero {
    width: 100%;
    margin: 0 auto;
    background-position: 50%;
    background-size: cover;
    pointer-events: none;

}

.hero video,
.hero img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.top-layer {
    width: 100%;
    padding-top: 10px;
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: -80px;
    background: linear-gradient(90deg, rgba(30, 30, 30, 0.9) 0%, rgba(50, 50, 50, 0.9) 50%, rgba(30, 30, 30, 0.9) 100%);
    background-size: cover;
}

.top-layer iframe {
    display: block;
    margin: 0 auto;
}

/*ここまで　動画*/
.fade_in {
    animation-name: fade-in1;
    animation-duration: 4s;
    /*アニメーション時間*/
    animation-timing-function: ease-out;
    /*アニメーションさせるイージング*/
    animation-delay: 1s;
    /*アニメーション開始させる時間*/
    animation-iteration-count: 1;
    /*繰り返し回数*/
    animation-direction: normal;
    /*往復処理をするかどうか*/
    animation-fill-mode: forwards;
    /*アニメーション後のスタイルをどうするか*/
}

@keyframes fade-in1 {
    0% {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/**/

/*ここから 記事パート1*/
/*ここから　記事パート1　全ページ共通*/
.first_part {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    line-height: 2.5;
}

.for_details {
    padding-top: 50px;
}

/*ここまで　記事パート1　全ページ共通*/
/*ここから　topページのみ*/
.contents_wrap {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    margin: 3rem auto;
}

.contents_wrap:nth-child(odd) {
    flex-direction: row-reverse;
}

.contents_text {
    width: 65%;
}

.contents_img {
    width: 30%;
}

.contents_img img {
    display: block;
    width: 100%;
    height: auto;
}

.to_youtube,
.to_website {
    color: #28b8b3;
    font-weight: bold;
}

.to_youtube,
.to_website:hover {
    color: #5e74fe;
}

.youtube iframe {
    display: block;
    margin: 0 auto 120px;
}

.ss_results {
    max-width: 960px;
    width: 80%;
    margin: 15px auto 80px;
}

.time {
    padding-left: 5rem;
}

.time li {
    padding-bottom: 1rem;
}

.ss_results table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.ss_results th {
    width: 80%;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
    padding: 1rem 1rem;
    line-height: 2.5;
}

.ss_results td {
    width: 20%;
    max-width: 860px;
    font-weight: 500;
}

.ss_results1 {
    max-width: 960px;
    width: 80%;
    margin: 15px auto 80px;
}

.ss_results1 table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.ss_results1 table th {
    padding-bottom: 2.5rem;
    background-color: #222;
}

.ss_results1 th {
    width: 30%;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
    vertical-align: text-top;
    padding: 1rem 1rem;
    line-height: 2.5;
}

.ss_results1 td {
    width: 30%;
    max-width: 860px;
    font-weight: 500;
    vertical-align: text-top;
    padding-left: 0.5rem;
}

.ss_results1 table td:nth-child(odd) {
    padding-top: 0.5rem;
    background-color: #333;
}

.ss_results1 table td:nth-child(even) {
    padding-top: 0.5rem;
    background-color: #555;
}

.ss_results1 table td:nth-child(3) {
    color: #82ebfe;
    padding-top: 0.5rem;
    background-color: #555;
}

/*.ss_results2 {
    max-width: 960px;
    width: 80%;
    margin: 15px auto 80px;
}*/

.ss_results2 table {
    width: 80%;
    max-width: 860px;
    margin: 2rem auto;
    text-align: left;
    border: 1px solid #333;
}

.ss_results2 table th {
    background: linear-gradient(90deg, rgba(30, 30, 30, 0.9) 0%, rgba(50, 50, 50, 0.9) 50%, rgba(30, 30, 30, 0.9) 100%);
}

.ss_results2 th {
    width: 25%;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
    vertical-align: middle;
    padding: 1rem 1rem;
    line-height: 2.5;
    border: 1px solid #333;
}

.ss_results2 th:nth-of-type(2) {
    width: 60%;
}

.ss_results2 th:nth-of-type(3) {
    width: 15%;
}

.ss_results2 td {
    width: 60%;
    max-width: 860px;
    font-weight: 500;
    vertical-align: middle;
    padding-left: 0.5rem;
    border: 1px solid #333;
}

.ss_results2 table td:first-of-type {
    color: #82ebfe;
    background: linear-gradient(90deg, rgba(30, 30, 30, 0.9) 0%, rgba(50, 50, 50, 0.9) 50%, rgba(30, 30, 30, 0.9) 100%);
}

.ss_results2 table td:nth-of-type(2) {
    width: 15%;
    background: linear-gradient(90deg, rgba(30, 30, 30, 0.9) 0%, rgba(50, 50, 50, 0.9) 50%, rgba(30, 30, 30, 0.9) 100%);
}

.ss_results2 table td:nth-of-type(odd) {
    padding-top: 0.5rem;
    background-color: #777;
}

.ss_results2 table td:nth-of-type(even) {
    padding-top: 0.5rem;
    background-color: #555;
}

.ss_results2 table td:nth-of-type(3) {
    padding-top: 0.5rem;
    background-color: #555;
}

.event_time_table2 table {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.event_time_table2 th {
    width: 40%;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
    padding: 1rem 1rem;
    line-height: 2.5;
}

.event_time_table2 td {
    width: 40%;
    max-width: 860px;
    font-weight: 500;
}

.event_time_table3 table {
    width: 80%;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.event_time_table3 th {
    width: 50%;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
    padding: 1rem 1rem;
    line-height: 2.5;
}

.event_time_table3 td {
    width: 30%;
    max-width: 860px;
    font-weight: 500;
}

/*ここから topページ read more button*/
/*.cp_box *,
.cp_box *:before,
.cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}*/
/*.cp_box {
	position: relative;
}*/
/*.cp_box label {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 320px;
	/* グラデーションの高さ */
/*cursor: pointer;
	text-align: center;
	/* 以下グラデーション設定 */
/*background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 60%);
}*/
/*.cp_box input:checked + label {
	background: inherit;
	/* 開いた時にグラデーションを消す
}*/
/*.cp_box label:after {
	line-height: 2.5rem;
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 50%;
	width: 16rem;
	content: 'Read More';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #dddddd;
	border-radius: 6px;
	background-color: rgba(178, 178, 178, 1);
}*/

/*.cp_box label:hover {
        cursor: pointer;
        background-color: rgba(0, 0, 0, 1);
        opacity: 90%;
    }*/
.cp_box input {
    display: none;
}

/*.cp_box .cp_container {
	overflow: hidden;
	height: 100%;
	/* 開く前に見えている部分の高さ */
/*transition: all 0.5s;
	margin-bottom: 2rem;
}*/
/*.cp_box input:checked + label {
	 display: none ;/* 閉じるボタンを消す場合解放
}*/
/*.cp_box input:checked + label:after {
	content: ' Read Less';
}*/
/*.cp_box input:checked ~ .cp_container {
	height: auto;
	padding-bottom: 80px;
	/* 閉じるボタンのbottomからの位置
	transition: all 0.5s;
}*/
/*ここまで topページ read more button*/
/*ここから　news arvhives関連*/
p.news {
    text-align: center;
    margin: 8rem auto 2rem;
    font-size: 1.7rem;
    font-weight: 600;
}

/*ここから　NEWS ARCHIVES・BREAKING NEWS button*/
.news_archives button {
    margin: 1.5rem auto;
    padding: 2rem 5rem;
    text-decoration: none;
    color: #ddd;
    font-size: 1.2rem;
    background: #212121;
    border-bottom: solid 4px #627295;
    border-radius: 6px;
}

.news_archives button:hover {
    cursor: pointer;
    opacity: 0.6;
}

.news_archives button:active {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    /*下に動く*/
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
    /*影を小さく*/
    border-bottom: none;
}

/*ここまで　NEWS ARCHIVES・BREAKING NEWS button*/
/*ここから　news arvhivesページ*/
.news_archives {
    font-weight: 550;
    text-align: center;
}

/*ここから　pop up*/
.popupModal1 {
    text-align: center;
}

.popupModal1 > input {
    /* ラジオボックス非表示 */
    display: none;
}

.popupModal1 > input:nth-child(1) + label {
    cursor: pointer;
}

.popupModal1 > input:nth-child(1) + label:hover {
    opacity: 0.6;
}

.modalPopup2 {
    /* 初期設定 ポップアップ非表示 */
    display: none;
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 {
    /* ラジオ１ チェックでポップアップ表示 */
    display: block;
    z-index: 998;
    position: fixed;
    width: 90%;
    height: 80%;
    border-radius: 20px;
    left: 50%;
    top: 50%;
    margin-top: 30px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, rgba(85, 85, 85, 1) 0%, rgba(60, 60, 60, 1) 50%, rgba(85, 85, 85, 1) 100%);
    padding: 10px 20px;
    overflow: hidden;
}

@media (min-width: 769px) {

    /* PCのときはページの真ん中の600x600領域 */
    .popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 {
        width: 600px;
        height: 600px;
        padding: 30px;
    }

    .popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label {
        left: 50% !important;
        top: 50% !important;
        margin-left: 270px !important;
        margin-top: -310px !important;
    }
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 > div {
    /* */
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 > div > iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label + .modalPopup2 > div > img {
    /* ポップアップの中の要素 */
    max-width: 100%;
}

.popupModal1 > input:nth-child(1) + label ~ label {
    display: none;
    /* ラジオ１ 以外のラベルを初期は非表示 */
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 997;
    text-indent: -999999px;
    overflow: hidden;
}

.popupModal1 > input:nth-child(1):checked + label + input:nth-child(3) + label + input:nth-child(5) + label {
    background: rgba(33, 33, 33, 0.5);
    display: inline-block;
    position: fixed;
    left: 10px;
    bottom: 20px;
    z-index: 999;
    width: 44pt;
    height: 44pt;
    font-size: 40px;
    border-radius: 50%;
    line-height: 44pt;
    text-align: center;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
}

.popupModal1 > input:nth-child(1) + label + input:nth-child(3):checked + label + input:nth-child(5) + label + .modalPopup2,
.popupModal1 > input:nth-child(1) + label + input:nth-child(3) + label + input:nth-child(5):checked + label + .modalPopup2 {
    /* ラジオ２と３ どっちかチェックでポップアップ非表示 */
    display: none;
}

.modalPopup2 {
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.popupModal1 .modalTitle {
    padding-bottom: .5em;
    margin: .5em 0;
    border-bottom:
        1px solid #ccc;
    font-weight: bold;
}

.popupModal1 .modalMain {
    color: #222;
    text-align: left;
    font-size: 14px;
    line-height: 1.8em;
}

/*ここまで　pop up*/
/*ここから　pop up 内要素　read more button*/
.read_more {
    display: inline-block;
    margin: 1.5rem auto;
    padding: 0.5rem 1rem;
    text-decoration: none;
    background: #212121;
    color: #ddd;
    border-bottom: solid 4px #627295;
    border-radius: 3px;
}

.read_more:active {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    /*下に動く*/
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
    /*影を小さく*/
    border-bottom: none;
}

.read_more:hover {
    opacity: 60%;
}

/*ここまで　pop up 内要素　read more button*/
/*ここまで　news arvhivesページ*/
/*ここまで　news arvhives関連*/
/*ここまで　topページのみ*/
/*ここから　記事パート1　Aboutページのみ*/
.about_hiroki table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about_hiroki th {
    width: 30%;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
    padding: 0 2rem;
    line-height: 2.5;
}

/*ここまで　記事パート1　Aboutページのみ*/
/*ここから　記事パート1　highlights resultsページのみ*/
.highlights h3,
.results h3 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.highlights table,
.results table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.highlights th,
.results th {
    width: 34%;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
    padding: 1rem 1rem;
    line-height: 2.5;
}

.highlights td,
.results td {
    width: 33%;
    max-width: 860px;
    font-weight: 500;
}

.highlights td:last-child,
.results td:last-child {
    width: 20%;
}

/*ここまで　記事パート1　highlights resultsページのみ*/
.event_time_table table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.event_time_table th {
    width: 25%;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
    padding: 1rem 1rem;
    line-height: 2.5;
}

.event_time_table td {
    width: 60%;
    max-width: 860px;
    font-weight: 500;
}

/*ここまで 記事パート1*/
/*ここから　写真*/
/*img {
    pointer-events: none;
}*/

/*img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    touch-callout: none;
    user-select: none;
}*/

.main_img,
.second_img,
.footer_img,
.margin0_img,
.gallery section {
    width: 100%;
    height: auto;
    background-color: #212121;
    pointer-events: none;
}

.index_img {
    width: 100%;
    height: auto;
}

.fourth_img {
    width: 100%;
    height: auto;
    background-color: #212121;
    /*pointer-events: none;*/
}

.fifth_img {
    width: 100%;
    height: auto;
    /*background-color: #212121;*/
    /*pointer-events: none;*/
}

.fifth_img img {
    margin: 0 auto;
    text-align: center;
    display: block;
}

.main_img img,
.second_img img {
    width: 100%;
    max-width: 960px;
    margin: 6rem auto;
    text-align: center;
    display: block;
}

.third_img {
    position: relative;
    margin: 5rem auto;
    pointer-events: none;
}

.third_img img {
    width: 100%;
}

.third_img p {
    position: absolute;
    top: 87%;
    left: 50%;
    color: #fff;
    bottom: 50px;
    font-size: 1.1rem;
    font-weight: 530;
    text-align: center;
    -ms-transform: translate(-50%, -87%);
    -webkit-transform: translate(-50%, -87%);
    transform: translate(-50%, -87%);
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 1px #666,
        -2px 2px 1px #666,
        2px -2px 1px #666,
        -2px -2px 1px #666;
    line-height: 1.4;
}

.sixth_img {
    width: 100%;
    text-align: center;
    height: auto;
    pointer-events: none;
}

.sixth_img img {
    width: 100%;
}

.background {
    width: 100%;
    height: auto;
    background: #212121;
    padding-bottom: 0;
}

.margin0_img img {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    display: block;
}

.footer_img img {
    width: 100%;
    max-width: 960px;
    margin: 6rem auto 0;
    text-align: center;
    display: block;
}

.index_img img {
    width: 80%;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    display: block;
}

.index_img {
    position: relative;
    margin: 0 auto;
}

.index_img a {
    display: block;
}

.index_img p {
    position: absolute;
    top: 70%;
    left: 50%;
    color: #fff;
    /*bottom: 50px;*/
    font-size: 1.5rem;
    font-weight: 530;
    text-align: center;
    -ms-transform: translate(-50%, -87%);
    -webkit-transform: translate(-50%, -87%);
    transform: translate(-50%, -87%);
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 1px #666,
        -2px 2px 1px #666,
        2px -2px 1px #666,
        -2px -2px 1px #666;
}

.photographer {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 30px auto 30px;
}

.photographer p {
    position: absolute;
    width: 100%;
    display: block;
    color: white;
    bottom: 5px;
    right: 5px;
    font-size: 0.8rem;
}

/*ここまで　写真*/
/*ここから 記事パート2*/
.second_part {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    line-height: 2.5;
}

/*ここから announcements*/
.announcements_team table {
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
    padding: 0.25rem;
}

.announcements_team th {
    width: 40%;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
    padding: 0 1rem;
    line-height: 2.5;
    font-weight: 500;
}

/*.announcements_team td {
    font-weight: 600;
}*/

.article_ul li::before {
    content: '';
    border-left: 6px solid #666;
    margin-right: 1rem;
}

.article_ul li {
    margin-bottom: 20px;
    text-indent: -1rem;
    padding-left: 2rem;
    margin-left: -1rem;
}

.event_table table {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    text-align: left;
    border: 1px solid #333;
}

.event_table table tr th {
    width: 25%;
    max-width: 860px;
    margin: 0 auto;
    padding: 1rem 1rem;
    line-height: 2.5;
    border: 1px solid #333;
    vertical-align: middle;
    font-weight: 500;
    background-color: #333;
}

.event_table table tr td {
    width: 60%;
    max-width: 860px;
    padding-left: 1rem;
    border: 1px solid #333;
    vertical-align: middle;
    background-color: #777;
}

.event_table table tr td:last-child {
    width: 15%;
    max-width: 860px;
    padding-left: 1rem;
    border: 1px solid #333;
    vertical-align: middle;
    background-color: #555;
}

/*ここまで announcements*/
/*ここから follow Hiroki*/
.sns {
    display: flex;
    justify-content: space-between;
    width: 45%;
    margin: 30px auto 40px;
}

.sns a {
    transition: all ease 0.8s;
}

.sns a:hover {
    opacity: 0.6;
}

/*ここまで follow Hiroki*/
/*ここから blogページ*/
.cssgrid {
    width: 100%;
    max-width: 960px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 1fr;
    grid-gap: 0.8rem;
    border: 1px solid #ddd;
    padding: 0.8rem;
    margin: 0 0 2rem;
}

.cssgrid > div {
    background: #666;
    overflow: auto;
    min-width: 0;
    padding: 2rem 1rem 1rem;
    height: 500px;
}

.cssgrid img {
    max-width: 270px;
    width: auto;
    max-height: 445px;
}

.cssgrid_item {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.8rem auto;
}

.cssgrid_v_photos {
    text-align: center;
}

ul.blog_ul {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0px;
}

ul.blog_ul li {
    width: 30%;
    display: inline-block;
    font-size: 1.2rem;
}

.blog_ul li::before {
    content: '';
    border-left: 6px solid #666;
    margin-right: 1rem;
}

.blog_ul li {
    margin-bottom: 20px;
    text-indent: -1rem;
    padding-left: 2rem;
    margin-left: -1rem;
}

.twitter {
    max-width: 650px;
    margin: 0 auto;
}

.twitter-timeline {
    width: 100%;
}

.facebook {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.youtube {
    max-width: 560px;
    margin: 0 auto;
}

.youtube iframe {
    width: 100%;
}

/*ここまで blogページ*/
/*ここから partnersページ*/
.partners_cssgrid {
    width: 100%;
    max-width: 960px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 1fr;
    grid-gap: 0.8rem;
    border: 1px solid #ddd;
    padding: 0.8rem;
    margin: 0 auto 2rem;
}

.partners_cssgrid > div {
    background: #888;
    overflow: auto;
    min-width: 0;
    padding: 0 10px;
    height: 230px;
    /*grid-gap: 10px;*/
    margin: 0 auto;
}

.partners_cssgrid_item h3 {
    margin: 30px auto 20px;
    font-size: 95%;
}

.partners_cssgrid_item {
    width: 220px;
    /*text-align: center;*/
    /*margin: 0 auto;*/
}

.partners_cssgrid_item_title {
    width: 200px;
    height: 60px;
}

.partners_cssgrid_item_img {
    width: 190px;
    height: 120px;
    position: relative;
    margin: 0 auto 10px;
    /*text-align: center;*/
}

.partners_cssgrid_item_img img {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
}

.partners_cssgrid_item_img img:hover {
    opacity: 50%;
}

/*ここからfooter前partners*/
/*ここから galleryページ*/
.emphasis a > p {
    font-size: 2.5rem;
}

/*これはなくてもよいかも　要確認*/
.icon {
    display: flex;
    width: 100%;
    max-width: 960px;
    justify-content: space-between;
    font-size: 1.2rem;
}

.gallery section .full img {
    width: 100%;
    max-width: 960px;
}

.gallery ul li img {
    margin: 0 auto;
}

.v_photos {
    display: flex;
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.v_photos img {
    width: 260px;
}

.photos {
    display: flex;
    width: 66%;
    max-width: 960px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.photos img {
    width: 300px;
}

.smallest_photos {
    display: flex;
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.smallest_photos img {
    width: 120px;
}

.grid {
    width: 100%;
    max-width: 960px;
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
}

.grid2 {
    width: 100%;
    max-width: 960px;
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(384px, 1fr));
}

.items {
    margin: 0 auto;
}

.grid img {
    max-width: 100%;
    height: auto;
}

.grid2 img {
    max-width: 100%;
    height: auto;
}

/*ここまで galleryページ*/
/*ここまで 記事パート2*/

.effect-fade {
    opacity: 0;
    transform: translate(0, 45px);
    transition: all ease 1.2s;
}

.effect-fade.effect-scroll {
    opacity: 1;
    transform: translate(0, 0);
}

/*ここまで　本文*/
/*ここから　PAGE_TOP*/
.page-top {
    margin: 0;
    padding: 0;
    display: none;
}

.page-top p {
    margin: 0;
    padding: 0;
    position: fixed;
    right: 2%;
    bottom: 100px;
}

.move-page-top {
    display: block;
    transition: all 0.3s;
    opacity: 0.60;
}

.move-page-top:hover {
    opacity: 30%;
}

/*ここまで　PAGE_TOP*/
/*ここから　partners_footer*/
.partners_footer {
    width: 100%;
    background: linear-gradient(90deg, rgb(195, 195, 195) 0%, rgba(221, 221, 221, 1) 50%, rgba(195, 195, 195, 1) 100%);
    /*margin-top: 80px;*/
    padding-top: 20px;
    padding-bottom: 50px;
}

.partners_footer_inner {
    max-width: 960px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    grid-auto-rows: 1fr;
    grid-gap: 0.8rem;
    padding: 0.8rem;
    margin: 0 auto;
}

/*ここまで　partners_footer*/
/*ここから　footer*/
.footer {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(30, 30, 30, 1) 50%, rgba(0, 0, 0, 1) 100%);
}

.footer a,
.footer s {
    color: #ddd;
}

.footer a {
    display: inline-block;
    font-size: 1.2rem;
}

.footer_inner {
    width: 100%;
    max-width: 960px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.footer_inner nav {
    width: 65%;
}

.footer_nav {
    display: flex;
    justify-content: space-between;
}

.footer_nav li a {
    display: block;
}

.footer_nav li {
    position: relative;
    line-height: 1;
    font-weight: 600;
}

.footer_nav li a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    height: 1px;
    background-color: #ddd;
    width: 0;
    transition: .4s;
}

.footer_nav li a:hover::after {
    width: 100%;
}

/*ここから　footer sns*/
.footer_sns {
    display: flex;
    width: 25%;
    justify-content: space-between;
    padding-top: 5px;
    padding-top: 15px;
}

.footer_sns a {
    transition: all ease 0.8s;
}

.footer_sns a:hover {
    opacity: 0.3;
}

/*ここまで　footer sns*/
/*ここから　footer copyright*/
.footer_p {
    width: 100%;
    max-width: 960px;
    margin: 50px auto 10px;
    text-align: right;
}

/*ここまで　footer copyright*/
/*ここまでfooter*/
/*ここまで　webpage本体*/
/* ここから新サイト */
header {
    display: none;
    height: 0;
}
.main_img img {
    margin: 0 auto;
}
.footer {
    display: none;
}