@charset "utf-8";
/* CSS Document */


/** ================================================================================================


	リュウカツサイト共通 タグリセット

	@author   K.Sekioka of HEVIZ Co.,Ltd.

	@version  1.0 2018.3.6   Created.
	          2.0 2019.9.13  Revised.


==================================================================================================== **/



html {
    display:block;
    position:relative;
    margin:0;
    padding:0;
}


body {
    display:block;
    position:relative;
    margin:0;
    padding:0;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

    color:#444444;
    font-family:'Noto Sans JP', 'Yu Gothic Medium', 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif;
/*	font-family:'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho Pro', 'MS PMincho', serif; */
    font-size:14px;
    font-weight:400;
    line-height	: 1.8;

	background-color: #ffffff;

	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}



/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/


a {
	color: #BF1B78;
    transition:all 0.3s linear;
    text-decoration:none;
}

a:focus   { outline: thin dotted; }
a:link    { color: #BF1B78; }
a:visited { color: #BF1B78; }
a:hover   { color: #cc0000; }
a:active  { color: #cc0000; }


img,
video,
svg {
/*	width : auto; */
	max-width : 100%;
	height : auto;
    border : 0;
	border-style: none;
}

article, aside, div, figure, footer, form, header, main, section {
    display		: block;
    margin		: 0;
    padding		: 0;
}


/* clearFix Hack */
.clearFix::after,
.clearfix::after { content:"."; display:block; height:0; clear:both; visibility:hidden; }
body.openSiteNav {
    overflow: hidden;
}



/** ---------------------------------------------------------------------------


    Wordpress Classic Editor用の設定


------------------------------------------------------------------------------- **/

.wpEdit {
    word-break: break-all;
}
.wpEdit::after { content:"."; display:block; height:0; clear:both; visibility:hidden; }


.wpEdit h1 {
    clear: both;
    margin: 3em 0 2em 0;
    font-size:24px;
    font-weight: 700;
}
.wpEdit h2 {
    clear: both;
    margin: 3em 0 2em 0;
    font-size:22px;
    font-weight: 700;
    color:#cf1380;
}
.wpEdit > h2:first-child {
    margin: 0 0 2em 0;
}

.wpEdit h3 {
    clear: both;
    margin: 3em 0 2em 0;
    padding: 10px;
    font-size:20px;
    font-weight: 700;
    
    background-color:#f5f5f5;
    border-left:3px solid #cf1380;
}

.wpEdit h4 {
    clear: both;
    margin: 3em 0 2em 0;
    font-size:18px;
    font-weight: 700;
    padding: 0 10px;
    border-left:3px solid #cf1380;
}

.wpEdit h5 {
    display: block;
    position: relative;
    clear: both;
    margin: 3em 0 2em 0;
    padding: 0 10px 0 15px;
    font-size:16px;
    font-weight: 700;
}
.wpEdit h5::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top:50%;
    width: 10px;
    height: 4px;
    background-color:#cf1380;
    transform: translateY(-50%);
}

.wpEdit h6 {
    clear: both;
    margin: 2em 0 1em 0;
    font-size:14px;
    font-weight: 700;
}

.wpEdit strong, .wpEdit b {
    font-weight: 700;
}

.wpEdit em {
    font-style: italic;
}

.wpEdit ul {
    margin: 1em 0;
    padding: 0;
}

.wpEdit ul > li {
    margin: 0 0 0 1em;
    padding: 0;
    list-style-type: disc;
}

.wpEdit ul ul > li {
    list-style-type:circle;
}

.wpEdit ol {
    margin: 1em 0;
    padding: 0;
}

.wpEdit ol > li {
    margin: 0 0 0 1em;
    padding: 0;
    list-style-type: decimal;
}
.wpEdit ol ol > li {
    list-style-type: upper-roman;
}

.wpEdit ol ol ol > li {
    list-style-type: lower-latin;
}

.wpEdit img {
/*  width: auto; */
    max-width: 100%;
    height: auto;
    vertical-align: baseline;
}

.wpEdit .alignnone {}

.wpEdit .alignright {
    float:right;
    margin: 1em 0 1em 1em;
    vertical-align: bottom;
}

.wpEdit .alignleft {
    float: left;
    margin: 1em 1em 1em 0;
    vertical-align: baseline;
}

.wpEdit .aligncenter {
    display: block;
    margin: 1em auto;
    vertical-align: bottom;
}

@media all and (max-width: 767px) {
    
    .wpEdit .alignright,
    .wpEdit .alignleft,
    .wpEdit .aligncenter {
        display: block;
        float:none;
        margin: 1em auto;
    }
}

.wpEdit figcaption {
    font-size: 12px;
    color: #666666;
}

.wpEdit blockquote {
    display: block;
    position: relative;
    margin: 2em 0;
    padding: 10px 50px;
    background-color: #f5f5f5;
    border-radius: 10px;
    font-size: 16px;
}
.wpEdit blockquote::before {
    content: "“";
    display: block;
    position: absolute;
    left: 10px;
    top:10px;
    margin: 0;
    padding: 0;

    font-size:60px;
    font-weight: 400;
    line-height: 50px;
    color:#d0d0d0;
}

.wpEdit blockquote::after {
    content: "”";
    display: block;
    position: absolute;
    right: 10px;
    bottom:-5px;
    margin: 0;
    padding: 0;

    font-size:60px;
    font-weight: 400;
    line-height: 50px;
    color:#d0d0d0;
}


.wpEdit hr {
    display: block;
    clear: both;
    margin: 2em 0;
    overflow: hidden;
    border-top-style:solid;
    border-top-width: 1px;
    border-top-color: #888888;
}



.wp-caption img{
    display: block;
    margin: 0 auto 5px;
    vertical-align: bottom;
}

.wp-caption .wp-caption-text {
    margin: 0;
    font-size: 12px;
}

/** Responsive for Smart Phone ---------------------------- **/

@media all and (max-width: 767px) {

    .wp-caption .wp-caption-text {
        text-align: center;
    }
}

