@charset "utf-8";

html{
    font-size: 62.5%;
    height: 100%;
}

body {
    color: #333;
    text-align: left;
    margin: 0;
    padding: 0;
    background: #fff;
    word-wrap: break-word;
    overflow: visible;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.5rem;
    line-height: 1.7;
    height: 100%;
}

img{
    max-width: 100%;
    height: auto;
}

a {
    color: #d80059;
    text-decoration: none;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    transition: 0.5s ease;
}

a:hover {
    color: #7d002f;
}

h1{

}

.index-main h2{
    color: #fff;
    font-size: 7rem;
    font-weight: bold;
    line-height: 1;
    font-family: 'Righteous', cursive;
    margin:0 0 -10px 20px;
}

/*
h3 {
position: relative;
padding: 1.5rem 3rem calc(1rem + 10px);
background: #d80059;
color: #fff;
font-size: 3rem;
line-height: 1.5;
margin-bottom: 40px;
font-weight: bold;
}

h3:before {
position: absolute;
top: -7px;
left: -7px;
width: 100%;
height: 100%;
content: '';
border: 2px solid #000;
}
*/

h4 {
    padding: 1.5rem 2rem 1rem;
    border-top: 3px solid #d80059;
    border-bottom: 3px solid #d80059;
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: bold;
}

h5 {
    position: relative;
    padding: 1.5rem 1rem;
    font-size: 2.5rem;
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: bold;
}

h5:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    content: '';
    background-image: -webkit-repeating-linear-gradient(135deg, #d80059, #d80059 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg, #d80059, #d80059 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ここからheaderなど */

/*ハンバーガー*/

.outer-menu {
    position: fixed;
    top: 0;
    right: 60px;
    z-index: 1;
    font-family: 'Righteous', cursive;
}
.outer-menu .checkbox-toggle {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    width: 60px;
    height: 60px;
    opacity: 0;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
    transform: rotate(135deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
    opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
    pointer-events: auto;
    visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
    transform: scale(1);
    transition-duration: .75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
    opacity: 1;
    transition: opacity .4s ease .4s;
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
    transform: rotate(225deg);
}
.outer-menu .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: .5em 1em;
    background: #d80059;
    border-radius: 0 .12em .12em 0;
    cursor: pointer;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.outer-menu .hamburger > div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: #FEFEFE;
    transition: all .4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: inherit;
    transition: all .4s ease;
}
.outer-menu .hamburger > div:after {
    top: 10px;
}
.outer-menu .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    backface-visibility: hidden;
    outline: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.outer-menu .menu > div {
    width: 200vw;
    height: 200vw;
    color: #FEFEFE;
    background: #d80059;
    border-radius: 50%;
    transition: all .4s ease;
    flex: none;
    transform: scale(0);
    backface-visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.outer-menu .menu > div > div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity .4s ease;
    overflow-y: auto;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.outer-menu .menu > div > div > ul {
    list-style: none;
    padding: 0 1em;
    margin: 0;
    display: block;
    max-height: 100vh;
}
.outer-menu .menu > div > div > ul > li {
    padding: 0;
    margin: 1em;
    font-size: 24px;
    display: block;
}
.outer-menu .menu > div > div > ul > li > a {
    position: relative;
    display: inline;
    cursor: pointer;
    transition: color .4s ease;
    color: #fff;
}
.outer-menu .menu > div > div > ul > li > a:hover {
    color: #fff;
}
.outer-menu .menu > div > div > ul > li > a:hover:after {
    width: 100%;
}
.outer-menu .menu > div > div > ul > li > a:after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: -0.15em;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width .4s ease;
}
/*ハンバーガー*/


footer{
    background: #fff;
    padding: 15px;
    font-size: 1rem;
    text-align: center;
    position: sticky;
    top: 100vh;
}

/*トップ*/

.top-img{
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:url(../img/top.png) no-repeat center;
    background-size: cover;
}

.top-img::after{
    content: '';
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(#000 35%, transparent 35%),
        radial-gradient(#000 35%, transparent 35%);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.3;
}

.top-logo{
    width: 50%;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.7))
}

.list-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

body.blog ul.blog-list li,
body.category-blog ul.blog-list li{
    padding: 5px 0;
    border-bottom: 4px dotted #ff9600;
}
body.gallery ul.blog-list li,
body.category-gallery ul.blog-list li{
    padding: 5px 0;
    border-bottom: 4px dotted #0099d7;
}

body.youtube ul.blog-list li,
body.category-youtube ul.blog-list li{
    padding: 5px 0;
    border-bottom: 4px dotted #820092;
}

ul.blog-list li a{
    padding: 15px 25px;
    display: block;
    border-radius: 15px;
}

body.category-blog ul.blog-list li a:hover,
body.blog ul.blog-list li a:hover{
    background: #ffdba7;
    color: #d80059;
}

body.gallery ul.blog-list li a:hover{
    background: #bdecff;
    color: #d80059;
}

body.youtube ul.blog-list li a:hover{
    background: #e3c7e7;
    color: #d80059;
}

ul.blog-list li span{
    color: #999;
    font-size: 1.3rem;
}

ul.gallery-list{
    display: flex;
    flex-wrap: wrap;
}

ul.gallery-list li {
    margin: 0.5em 0;
    padding:0 1%;
    width: 16.6%;
}

ul.gallery-list li a {
    display: block;
}

ul.gallery-list li img{
    width: 100%;
    height: auto!important;
    border-radius: 5px;
    border: 1px solid #bbb;
}

ul.gallery-list li:hover{
    animation: hurueru .1s  infinite;
}
@keyframes hurueru {
    0% {transform: translate(0px, 0px) rotateZ(0deg)}
    25% {transform: translate(2px, 2px) rotateZ(1deg)}
    50% {transform: translate(0px, 2px) rotateZ(0deg)}
    75% {transform: translate(2px, 0px) rotateZ(-1deg)}
    100% {transform: translate(0px, 0px) rotateZ(0deg)}
}

.button{
    padding: 15px;
    position:relative;
    text-transform:uppercase;
    color:#fff;
    letter-spacing:0.2rem;
    font-size:3rem;
    font-family: 'Righteous', cursive;
    background: #d80059;
    display: block;
    width: 50%;
    margin: 30px auto 0;
    border-radius: 100px;
    line-height: 1;
    text-align: center;
}

.button:hover{
    color: #fff;
}


.button span{
    letter-spacing:0;
    display:inline-block;
    position:relative;
    transition:all .5s ease-in-out;
}

.button:hover span:nth-of-type(1){
    animation:h .5s infinite;
}

.button:hover span:nth-of-type(2){
    animation:o .5s infinite;
}

.button:hover span:nth-of-type(3){
    animation:v .5s infinite;
}

.button:hover span:nth-of-type(4){
    animation:e .5s infinite;
}

@keyframes h{
    0%{transform:translate(-4px, 0);}
    25%{transform:translate(5px, -5px);}
    50%{transform:translate(0, 0);}
    80%{transform:translate(0, 0);}
    100%{transform:translate(0, 0);}
}

@keyframes o{
    0%{transform:translate(0, 0);}
    25%{transform:translate(-4px, 0);}
    50%{transform:translate(3px, 4px);}
    80%{transform:translate(0, 0);}
    100%{transform:translate(0, 0);}
}

@keyframes v{
    0%{transform:translate(0, 0);}
    25%{transform:translate(0, 0);}
    50%{transform:translate(-2px, -3px);}
    75%{transform:translate(3px, 7px);}
    100%{transform:translate(0, 0);}
}

@keyframes e{
    0%{transform:translate(0, 0);}
    20%{transform:translate(-6px, 2px);}
    80%{transform:translate(0, -7px);}
    100%{transform:translate(0, 0);}
}

/*ここまで*/

.content{
    padding: 50px;
}

.content.blog{
    background: #ff9600;
}

.content.gallery{
    background: #0099d7;
}
.content.profile{
    background: #90c300;
}
.content.youtube{
    background: #820092;
}

.plofile-box{
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    display: flex;
}

.plofile-box img{
    width: 20%;
    height: auto;
}

.plofile-right{
    margin-left: 3%;
}

.plofile-right span{
    font-weight: bold;
    font-size: 3rem;
    color: #d80059;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.sns-box{
    display: flex;
    justify-content: space-between;
    font-family: 'Righteous', cursive;
    margin-top: 15px;
    font-size: 2rem;
}

.sns-box li{
    width: 48%;
    text-align: center;
}

.sns-box li a{
    border-radius: 5px;
    padding: 15px;
    background: #d80059;
    color: #fff;
    display: block;
    border: 1px solid #d80059;
}

.sns-box li a:hover{
    background: #fff;
    color: #d80059;
}

.content-inner{
    width: 1000px;
    margin: 0 auto;
}



/* 投稿ページ（.single-post） */

body.blog.single-post {
    background: #ff9600; /* 全体背景はここ */
}

.single-post main {
    display: block;
    width: 1000px;
    margin: 0 auto;
    padding-top: 5em;
}

.content-area.single {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 3em;
}

.single-post h2 {
    color: #fff;
    font-size: 7rem;
    font-weight: bold;
    line-height: 1;
    font-family: 'Righteous', cursive;
    margin: 0 0 -10px 20px;
}

.single-post h3 {
    font-size: 150%;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
body.blog.single-post h3 {
    border-bottom: 4px dotted #ff9600;
}
body.youtube.single-post h3 {
    border-bottom: 4px dotted #820092;
}


.content-area.single .date {
    color: #999;
}

.single-thumbnail {
    margin-bottom: 15px;
    text-align: center;
}

.single-text h2 {
    color: #333;
    font-size: 150%;
    border-left: 5px solid #333;
    padding: 15px;
    margin: 0 0 30px 0;
    background: #eee;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    line-height: 1.7;
}
.single-text p {
    margin-bottom: 30px;
}

/* 記事下SNSボタン */
.addtoany_content {
    clear: both;
    margin: 16px auto;
    margin-top: 5em;
    width: 100%;
    padding: 15px;
    text-align: center;
    border: 3px solid #ddd;
}

/* 記事一覧 （.archive）*/

body.category-blog.archive {
    background: #ff9600; /* 全体背景はここ */
}

body.category-gallery.archive {
    background: #0099d7; /* 全体背景はここ */
}

body.category-youtube.archive {
    background: #820092; /* 全体背景はここ */
}


.archive main {
    display: block;
    width: 1000px;
    margin: 0 auto;
    padding-top: 5em;
}

.content-area .blog-list {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
}

.archive h2 {
    color: #fff;
    font-size: 7rem;
    font-weight: bold;
    line-height: 1;
    font-family: 'Righteous', cursive;
    margin: 0 0 -10px 20px;
}

ul.blog-list li a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
ul.blog-list img.attachment-post-list.size-post-list.wp-post-image {
    width: 80px !important;
    margin-right: 15px;
}

.noimage{
    width: 80px;
    margin-right: 15px;
}

/* ギャラリー */
body.gallery.single-post {
    background: #0099d7; /* 全体背景はここ */
}

.category-gallery main {
    display: block;
    width: 1000px;
    margin: 0 auto;
    padding-top: 5em;
}

.category-gallery .content-area {
    background: #fff;
    border-radius: 10px;
    padding: 30px;		
}

.news-list-text span {
    font-size: 80%;
    color: #999;
}

/* TOP */
.top-logo {
    max-width: 800px;
    min-width: 300px;
}
.button {
    font-size: 150%;
    letter-spacing: 0px;
}
.blog-list span {
    margin-right: 10px;
}
.plofile-box {
    display: table;
}
.plofile-box img {
    display: table-cell;
}
.plofile-right {
    margin-left: 0;
    display: table-cell;
    width: 70%;
    vertical-align: top;
    padding-left: 30px;
}
.plofile-box img {
    width: 100%;
    border-radius: 5px;
}

/* 最新の記事 */
.recent_post {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
}
.post_name span {
    color: #999;
    font-size: 1.3rem;
    margin-bottom: 5px;
}
ul.blog-list img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 5px;
    border:1px solid #bbb;
}
/* 次のページ 前のページ */

.paging{
    display: flex;
}

.paging i{
    font-size: 2rem;
}

.fa-circle-arrow-left{
    margin-right: 10px;
}

.fa-circle-arrow-right{
    margin-left: 10px;
}

hr.paging-top {
    margin-bottom:0;
}
hr.paging-bottom {
    margin-top:0;
}
.paging a {
    display: block;
    transition: all 0.3s ease;
    vertical-align:top;
    color:#d80059;
    font-weight: bold;
    width: 50%;
    padding: 5px;
}

.paging ul {
    width: 100%;
}

.paging a:first-child{
    border-right:1px solid #ccc;
}
.paging a:last-child{
    border-left:1px solid #ccc;
}

body.blog .paging a:hover {
    background-color:#ffdba7;
}
body.youtube .paging a:hover {
    background-color:#e3c7e7;
}
.paging .prev {
    align-items: center;
    display: flex;
    text-align:left;
    height: 100%;
}
.paging .prevbox {
    width:50%;
}
.paging .prev .p-title{
    display: block;
    font-size:.8em;
    margin:0 0 3px 0;
}
.paging .prev ul li {
    font-size: 16px;
}
.paging .next {
    align-items: center;
    display: flex;
    text-align:right;
    height: 100%;
}
.paging .nextbox {
    width:50%;
}

.paging .next .p-title{
    display: block;
    font-size:.8em;
    margin:0 0 3px 0;
}
.paging .next ul li {
    font-size: 16px;
}

/* TOPに戻る */
.go_top a:before {
    content: "\f015";
    font-family: FontAwesome;
    margin-right: 5px;
}
.go_top {
    text-align: center;
    margin: 5em 0;
}
.go_top a{
    font-size: 120%;
    color: #fff;
}

a.dummylink{
    cursor:default;
    padding: 0;
}

a.dummylink:hover{
    background-color: transparent!important;
}

/* ページナビ */
.wp-pagenavi {
    text-align: center;
    margin: 3em 0;
}

.wp-pagenavi span, .wp-pagenavi a {
    background: #fff;
    border: none !important;
    padding: 10px !important;
    display: inline-block;
    margin: 5px !important;
    border-radius: 5px;
}
.wp-pagenavi a:hover {
    background: #d80059;
    color: #fff;
}

/* youtube 記事一覧 */
.youtube li a img {
    aspect-ratio: 16/9;
}
.youtube ul.gallery-list li {
    margin: 0.5em 0;
    padding: 0 1%;
    width: 25%;
}

/* youtube 個別ページ */

body.youtube.single-post {
    background: #820092; /* 全体背景はここ */
}

.category-youtube .content-area {
    background: #fff;
    border-radius: 10px;
    padding: 30px;		
}
.category-youtube li a img {
    aspect-ratio: 16/9;
}
.category-youtube ul.gallery-list li {
    margin: 0.5em 0;
    padding: 0 1%;
    width: 25%;
}

/* youtube popup */
.featured-video-plus.fvp-center iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
}
div#DOMWindow {
    aspect-ratio: 16/9;
    width: 80%;
    height: auto;
}

/******
記事執筆用 
******/

.single-text h2{
    padding: 10px;
    font-size: 120% !important;
    background: transparent;
    margin: 30px 0 !important;
}

body.blog .single-text h2 {
    border-color: #ff9600;
    }
body.youtube .single-text h2 {
    border-color: #820092;
}
.single-text h3 {
    font-size: 120% !important;
}
.single-text h4 {
    font-size: 120%;
    border: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px !important;
}
.single-text h4:before {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    position: absolute;
    left: 0;
    color: #5ab9ff;
    font-weight: 900;
}
.single-text h5 {
    font-size: 120%;
    margin-bottom: 30px !important;
}
.single-text h5:after {
    display:none;
}
.single-text ul,
.single-text ol{
    padding: 1em 2em;
}
.single-text ul li {
    list-style: disc;
}
.single-text ol li {
    list-style-type: decimal;
}

blockquote {
    position: relative;
    padding: 10px 15px 10px 60px;
    box-sizing: border-box;
    font-style: italic;
    background: #efefef;
    color: #555;
    margin: 1.5em 0;
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 18px;
    left: 15px;
    content: "\f10d";
    font-family: FontAwesome;
    color: #cfcfcf;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}
.single-text table {
    width:100%;
}
.single-text table th,
.single-text table td {
    border: 1px solid #ccc;
    padding: 5px;
}
.single-text table th {
    background: #eee;
}
.single-text img.aligncenter {
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
}
.single-text img.alignright {
    display: block;
    margin-bottom: 30px;
    margin-right: 0;
    margin-left: auto;
}

.single-text img.alignleft {
    display: block;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: auto;
}


/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .content-inner{
        width: auto;
    }

}