/* 見出し日本語表示フォントウェイト調整*/
h1,h2,h3
{
font-weight: 700 !important;
font-family: Anton, sans-serif !important;
}

/* リンク付画像マウスオーバー時透明度変更*/
a:hover img 
{ 
	filter:alpha(opacity=70);  /* IE7以下用 */
	-ms-filter: "alpha(opacity=70)"; /* IE8用 */
	-moz-opacity:0.7; /* Firefox 1.5未満, Netscape用 */
	-khtml-opacity: 0.7;  /* Safari 1.x, 他khtmlに対応したブラウザ用  */
	opacity: 0.7; /* Firefox 1.5以上, Opera, Safari用 */

	-webkit-transition:all 300ms;
	-moz-transition:all 300ms;
	-ms-transition:all 300ms;
	-o-transition:all 300ms;
	transition:all 300ms;
}  

/* ブログ単独記事表示タイトル*/
.post-title
{
        font-size:16px;
}


a:link, a:visited {
    color: #4D4D4D;
    text-decoration: none;
    transition: color 0.3s ease-in 0s;
}

.datetime{
margin: -1.5em 0;
max-width: 100%;
padding: 0em 0em;}

/*ブログ一覧表示間隔設定*/
.blogselection .clearover {
        margin: 0 0 0px 0;
}

/*トップページのみブログの続きを見るボタン非表示*/
.cc-indexpage .blogreadmore {
    display: none !important;
}

/*コメント非表示 */
.comment
{
display: none !important;
}

/*フッターエリアの重なり調整*/
.sidebar-options {
    background-color: #1e1e1e;
    position: relative;
}

/*TOPの一部項目背景色変更と幅調整未使用

#cc-m-13459184188 {
    padding-right: 100% !important;
    padding-left: 100% !important;
    margin-right: -100%;
    margin-left: -100%;
    background: #222;
}

#cc-m-13459184188.cc-m-all {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin: 0;
}
*/

/*TOPのの一部項目背景色変更と幅調整2*/
#cc-inner {
    overflow-x: hidden;
}

#cc-m-14477774288 {
    padding-right: 100% !important;
    padding-left: 100% !important;
    margin-right: -100%;
    margin-left: -100%;
    background: #1e1e1e;
    position: absolute;
    transform: rotate(-30deg);
    transform-origin: right top;
    z-index: 0;
}

#cc-m-14477774288 .cc-m-spacer {
    max-height: none;
    min-height: 30px;
}

/*TOPの背景色変更編集画面用2*/
#cc-m-14477774288.cc-m-all {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin: 0;
position: relative;
    transform: rotate(0deg);
    transform-origin: 0 0;
}

/*TOPのの一部項目背景色変更と幅調整2（下段）*/

#cc-m-14584471988 {
padding-right: 100% !important;
    padding-left: 100% !important;
    margin-right: -100%;
    margin-left: -40%;
    background: #1e1e1e;
    position: absolute;
    transform: rotate(30deg);
    transform-origin: left;
    z-index: 0;
}

#cc-m-14584471988 .cc-m-spacer {
    max-height: none;
    min-height: 30px;
}

/*TOPの背景色変更編集画面用2*/
#cc-m-14584471988.cc-m-all {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin: 0;
position: relative;
    transform: rotate(0deg);
    transform-origin: 0 0;
}

/*TOPのの一部項目背景色変更と幅調整3*/
#cc-m-13978114088 {
    padding-right: 100% !important;
    padding-left: 100% !important;
    margin-right: -100%;
    margin-left: -100%;
    background: #1e1e1e;
    background-image: url("https://image.jimcdn.com/app/cms/image/transf/dimension=2048x2048:format=jpg/path/sb4f777ceab41f4cc/image/i30f3cb5ab7f1ae1f/version/1645285326/image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
}

#cc-m-13978114788 > .cc-m-spacer {
    max-height: none;
    min-height: 30px;
}



/*TOPの背景色変更編集画面用3*/
#cc-m-13978114088.cc-m-all {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin: 0;
}

/*テキストをループ*/
.loop_wrap {
    position: absolute;
    z-index: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 50vw;
    font-weight: bold;
    color: #1e1e1e;
font-family: 'Teko', sans-serif;
}

.loop_wrap div {
  flex: 0 0 auto;
  white-space: nowrap;
  will-change: transform;
}

.loop_wrap div:nth-child(odd) {
  animation: loop 1000s -500s linear infinite;
}

.loop_wrap div:nth-child(even) {
  animation: loop2 1000s linear infinite;
}


@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/*テキストをループ（フォントサイズ小）*/
.loop_wrap2 {
    position: absolute;
    z-index: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 35vw;
    font-weight: bold;
    color: #1e1e1e;
font-family: 'Teko', sans-serif;
}

.loop_wrap2 div {
  flex: 0 0 auto;
  white-space: nowrap;
  will-change: transform;
}

.loop_wrap2 div:nth-child(odd) {
    animation: loop 1000s -500s linear infinite;
}
  
.loop_wrap2 div:nth-child(even) {
    animation: loop2 1000s linear infinite;
}


@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/* リンクボタン*/
#cc-m-14015052688
{
    position: relative;
    z-index: 1;
}
/* リンクボタン*/
.link
{
        display: inline-block;
        *display: inline;  
        *zoom: 1;
        width:100%;
        margin: 5px 0;
        padding: 30px 0;
        line-height: 20px;
        color: #ffffff !important;
        text-decoration: none !important;
        font-family: "Anton",sans-serif,"google";
        background: #222;
}

.link:hover
{
        background: #793f00;
        transition: color 0.3s ease-in 0s;
}

.link2
{
        display: inline-block;
        *display: inline;  
        *zoom: 1;
        width:100%;
        margin: 5px 0;
        padding: 16px 0;
        line-height: 24px;
        color: #ffffff !important;
        text-decoration: none !important;
        font-family: "Anton",sans-serif,"google";
        background: #222;
}

.link2:hover
{
        background: #793f00;
        transition: color 0.3s ease-in 0s;
}

/*ページフェードイン */
body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


/*ページフェードアウト（動作自体はJSで記載） */
body {
  transition: opacity 0.4s ease;
}

body.fade-out {
  opacity: 0;
}

/*背景スライドショー部分に半透明のグラデーション処理 */
.jtpl-header
{
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.6) 8%, rgba(255, 255, 255, 0)50%);
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.6) 8%, rgba(255, 255, 255, 0)50%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 8%, rgba(255, 255, 255, 0)50%);
  background-size: cover;
}

.jtpl-header {
    min-height: 50vh;
}

/*見出し1の最初の文字だけサイズ変更 */
h1:first-letter {
  font-size: 1.5em;
}

/*画面幅調整 */
.jtpl-content__inner, .jtpl-footer__inner, .jtpl-sidebar__inner {
        max-width: 100%;
        padding: 0px;
}

.jtpl-footer, .jtpl-section-aside .jtpl-section-aside__inner {
    max-width: 100%;
    padding: 0;
}

.jtpl-topbar-section {
        box-sizing: border-box;
        margin: 0 auto;
        max-width: 100%;
        padding: 0% 15%;
        display: -ms-flexbox;
        display: flex;
        display: -webkit-flex;
        vertical-align: middle;
        -ms-flex-align: center;
        align-items: center;
}

   
div.cc-m-all.cc-m-toolbox-right div.cc-m-all-toolbox {
    position: absolute;
    top: -117px;
    right: 0px;
    bottom: auto;
    left: auto;
    -webkit-border-radius: 4px 4px 4px 0;
    border-radius: 4px 4px 4px 0;
}
    
div.flexmodul, div.n {
    padding: 5px 0px;
        
}


/*画像を画面幅いっぱいに表示 */
.cc-imagewrapper img {
max-width: 100.55% !important;
}


/*カラム表示時のサイズ調整 */
.j-hgrid {
    max-width: 90%;
    margin: 0 auto;
}

.n {
    padding: 5px 0;
}

.cc-m-hgrid-column .n {
    padding: 5px;
}

/*テキスト位置調整（未使用）
.j-text {
    word-wrap: break-word;
    padding: 0% 2% !important;
}

.j-module h1 {
    padding: 0% 1%;
}

.j-module h2 {
    padding: 0% 1%;
}

.j-module h3 {
    padding: 0% 1%;
} */

.j-meta-links {
    float: left;
    padding: 20px;
    width: 55%;
}

/*画像付きテキスト位置調整（未使用）
.j-textWithImage {
    padding: 0 1% !important;
} */


/*パンくずリスト位置調整 */
.jtpl-breadcrumb ol {
    padding: 1% 1%;
    margin: 0;
    list-style: none;
}

/*旧ブログレイアウト調整 */
.j-blog .j-blog-meta h2.j-blog-headline {
    padding: 0% 1%;
}

.j-blogarticle h2 {
padding: 0 !important;
}

.j-blogarticle .cc-imagewrapper {
padding: 0% 1%;
max-width: 95%;
}

.j-blog-post--header {
padding: 0 1%;
}

.j-blog-meta h1{
    margin: 0 auto !important;
    width: 98% !important;
}

.j-blog .j-text {
    padding: 0% 1% !important;
}

.j-blog .j-blog-post--date {
    padding: 0 !important;
    font-size: 24px;
}

.n.j-comment {
    padding: 0 1%;
}

.datetime {
    background-color: rgba(0,0,0,0);
    color: #444;
    font-size: 24px;
    margin: 1% 4%;
}

.pager_navi {
    text-align: center;
    font-size: 24px;
}

.blogreadmore {
    margin: 1% 4% !important;
}



h1.pagetitle {
    color: #fff !important;
    font-weight: normal;
    line-height: 48px;
    padding: 0 5px !important;
    margin-top: -230px !important;
    margin-bottom: 230px !important;
    text-shadow: 1px 1px 10px #000;
    text-align: left;
    position: relative;

}

h1.pagetitle span {
    border-top: 2px solid #fff;
    display: block;
    font-size: 26px;
    font-weight: normal;
    line-height: 50px;
    padding: 0 0 0 2px;
}

@media (max-width: 1024px){
h1.pagetitle {
    color: #fff !important;
    font-weight: normal;
    line-height: 48px;
    padding: 0 5px !important;
margin-top: -140px !important;
    margin-bottom: 110px !important;
    text-shadow: 1px 1px 10px #000;
    text-align: left;
    position: relative;

}

}

@media (max-width: 767px){
.datetime {
    margin: 0.3em;
    max-width: 100%;
    padding: 0em 0em;
}

h1.pagetitle {
    color: #fff !important;
    font-weight: normal;
    line-height: 48px;
    padding: 0 5px !important;
    margin-top: -68px !important;
    margin-bottom: 30px !important;
    text-shadow: 1px 1px 10px #000;
    text-align: left;
    position: relative;

}
.j-blogarticle .cc-imagewrapper {
padding: 0;
max-width: 100%;
}

.blogreadmore {
    margin: 0 !important;
}

.j-blog .j-text {
    padding: 0% 2% !important;
}

.j-blog .j-text .j-blog-post--date {
    padding: 0 !important;
}

/*カラム表示時のサイズ調整（スマホ表示時） */
.j-hgrid {
    margin: 0 auto;
    max-width: 100%;
}
}


