@charset "utf-8";
/*
Theme Name: RINRI PROJECT Theme
Theme URI: rinri-project.jp
Description: RINRI PROJECT themes
Version: 1.0
Author: kobaishi
Author URI: e-f.co.jp
*/

@keyframes scrollText {
    0% { transform: translateX(0)}
    100% { transform: translateX(-100%)}
}

@keyframes cmnCoverAnime {
	0% {
        transform: translate(0);
        width: 0;
        height: 100%;
        border-radius: 10px;
    }
	50%, 60% {
        transform: translate3d(0, 0, 0);
        width: 99%;
    }
	100% {
		transform: translate3d(100%,0,0);
        width: 100%;
    }
}
.cmnImg-cover {
    position:relative;
    overflow: hidden;
}
.cmnImg-cover:after {
    content: '';
    display: block;
    background-image: linear-gradient(90deg, rgba(210, 153, 194, 1), rgba(255, 247, 194, 1));
    position: absolute;
    left: 0;
    top: 0;
}
.cmnImg-cover img {
    opacity: 0;
    filter: blur(10px);
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    transition-delay: 1s;
}
.cmnImg-cover.animated:after {
    animation: cmnCoverAnime 2s cubic-bezier(0.6,0,0.4,1);
    animation-fill-mode: forwards;
}
.cmnImg-cover.animated img {
    opacity: 1;
    filter: blur(0);
}

.wpulike {
    display: none;
}

/*------------------------------------------------------

   common

-------------------------------------------------------*/
:root {
    --base-color:  #333333;
    --blue-color:  #357acb;
    
    --bg-color:    #f4f3f1;

	--font-en:     "Barlow", sans-serif;
	--font-mincho: 'Noto Serif JP', serif;

    --activity-color01: #fc0071;
    --activity-color02: #e86200;
    --activity-color03: #357acb;
    --activity-color04: #29c3a7;
    --activity-color05: #dadc08;
    --activity-color06: #d8374a;
}


body {
	position: relative;
    font-size: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	color: var(--base-color);
    padding-top: 70px;
}
input,
select,
textarea,
radio,
checkbox,
button {
	font-family: 'Noto Sans JP', sans-serif;
}

img {
    vertical-align: middle;
}
.sp { display: none !important; }

.inner {
    width: 100%;
    max-width: 1330px;
	padding: 0 65px;
	margin:auto;
	position: relative;
}
.inner-in {
    padding: 0 70px;
}

a {
    color: var(--base-color);
}

.link {
    color: var(--blue-color);
	text-decoration: underline !important;
}


/* off */
.link-off a {
    cursor: default !important;
    color: #ccc !important;
}


/* nav-line */
.nav-line a:not(.no-line) {
	opacity: 1 !important;
	text-decoration: none !important;
    position: relative;
}
.nav-line a:not(.no-line):after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 0;
    border-top:solid 2px var(--base-color);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.nav-line a:not(.no-line):hover:after {
    transform-origin: left top;
    transform: scale(1, 1);
}

/*------------------------------------------------------

   header style

-------------------------------------------------------*/
#global-header {
	width: 100%;
    box-shadow: 1px 0 10px 3px #eee;
    background: #fff;
	position: fixed;
	left:0;
	top: 0;
	z-index: 1000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header-in {
    height: 70px;
    position: relative;
}
.site-title {
    width: 235px;
    line-height: 1;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 25px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.site-title a {
    display: flex;
    align-items: center;
}


.main-nav {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.main-nav__list {
    display: flex;
}
.main-nav__list >li {
    font-weight: 600;
    margin-right: 45px;
}
.main-nav__list >li:last-child {
    margin-right: 0;
}

.main-nav .to-contact {
    margin-left: 40px;
}
.to-contact a {
    display: block;
    color: #fff;
    background: var(--blue-color);
    padding: 10px 20px;
    border-radius: 100px;
}
.to-instagram {
    width: 30px;
    margin-left: 20px;
}


/* ----------------------------
   contets
-------------------------------*/
#container {
	overflow: hidden;
}

.contents {
    padding: 60px 0;
	position:relative;
}

/* cmn-title */
.cmn-title {
    margin-bottom: 30px;
}
.cmn-title h2 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-en);
    line-height: 1;
    color: var(--blue-color);
}
.cmn-title.anime h2 span {
    visibility: hidden;
    opacity: 0.1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cmn-title.anime.animated h2 span {
    visibility: visible;
    opacity: 1;
}
.cmn-title p {
    font-size: 32px;
    font-weight: 600;
}
.cmn-subtext {
    margin-top: 20px;
    font-weight: 500;
    color: var(--blue-color);
	line-height: 1.6;
}
.cmn-text {
    line-height: 2;
}
.cmn-desc {
    line-height: 2;
    text-align: center;
}

/* more */
.more {
    margin-top: 30px;
}
.more.center {
    text-align: center;
}
.more.right {
    text-align: right;
}
.more a {
	color: var(--blue-color);
    display: inline-block;
    font-weight: 600;
    width: 250px;
    padding: 13px 0 14px;
    text-align: center;
    background: #fff;
    border: solid 1px;
    border-radius: 1000px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    box-shadow: 1px 0 10px 3px #eee;
}
.more a span {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.more a:hover {
    color: #fff;
    background: var(--blue-color);
}

.more-center {
    text-align: center;
    margin-top: 50px;
}
.more-center a {
    width: 300px;
}

/**/
.new-more {
    margin-top: 40px;
}
.new-more a {
    color: var(--blue-color);
    padding: 0 5px 5px;
    border-bottom: solid 1px;
}
.new-more a span {
    margin-left: 10px;
    position: relative;
    right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.new-more a:hover span {
    right: -5px;
}

/**/
.cmn-contact {
    color: #fff;
    padding: 50px 0;
    background: var(--blue-color);
}
.cmn-contact .cmn-title h2,
.cmn-contact .cmn-subtext{
    color: #fff;
}

/*------------------------------------------------
   footer style
--------------------------------------------------*/
#global-footer {
    color: #fff;
    background: #111;
    padding: 64px 0 60px;
    position: relative;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-info {
    width: 340px;
}
.footer-info .footer-logo {
    margin-bottom: 20px;
}
.footer-info .footer-jasrac {
    margin-top: 30px;
}
.footer-info .footer-jasrac p {
    font-size: 12px;
    font-weight: 500;
    margin-top: 10px;
}
.footer-info .footer-address {
    font-size: 13px;
    line-height: 2;
}

.footer-nav {
    width: calc(100% - 400px);
    display: flex;
    justify-content: end;
}
.footer-nav__list {
    margin-left: 100px;
}
.footer-nav__list >li {
    font-weight: 500;
    margin-bottom: 30px;
}
.footer-nav__list >li:last-child {
    margin-bottom: 0;
}
.footer-nav__list >li a {
    color: #fff;
}
.footer-sub {
    margin-top: 40px;
/*
    display: flex;
    flex-wrap: wrap;
    align-items: center;
*/
}
.footer-sns__list {
    display: flex;
}
.footer-sns__list >li:not(:first-child) {
    margin-left: 10px;
}
.footer-sns__list a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 1000px;
}
.footer-sub .copyright {
    font-size: 12px;
    margin-left: auto;
	margin-top: 30px;
}

/* backtotop */
#backtotop {
    color: var(--blue-color);
	width: 40px;
    height: 40px;
    background: #fff;
    cursor:pointer;
	visibility: hidden;
	opacity: 0;
    border-radius: 100px;
    border: solid 2px;
	position:fixed;
	right: 10px;
	bottom: 30px;
	z-index: 10;
   -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
#backtotop.show {
	visibility: visible;
	opacity: 1;
	bottom: 50px;
}
#backtotop:hover {
    color: #fff;
    background: var(--blue-color);
}
#backtotop:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(-45deg);
    position: absolute;
    top: 16px;
    left: calc(50% - 6px);
}


/* -----------------------------------

media query

------------------------------------- */
@media (max-width: 1130px) {

    .inner {
        padding: 0 20px;
    }
    .inner-in {
        padding: 0;
    }
	.main-nav__list {
        display: none;
    }

}

@media (max-width: 815px) {

	body {
		min-width: 375px;
        padding-top: 60px;
        overflow-x: hidden;
	}
	body.menu-fix {
		overflow: hidden;
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}

	.inner {
		 width: 100%;
        padding: 0 20px;
	}
    .inner-in {
        padding: 0;
    }
    #global-header {
    }
    .header-in {
        height: 60px;
    }
    .site-title {
        width: 150px;
        top: 25px;
        transform: none;
    }

    #menu-btn {
        width: 40px;
        height: 15px;
        cursor: pointer;
        position: fixed;
        right: 20px;
        top: 25px;
        z-index: 99999999999999999999999;
       -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #menu-btn span {
        width: 100%;
        height: 2px;
        background: var(--blue-color);
        position: absolute;
        left: 0;
       -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #menu-btn span.m {
        top: 0;    
    }
    #menu-btn span.b {
        bottom: 0;
    }
    #menu-btn.active span.t {
        transform: rotate(45deg);
        top: 7px;
    }
    #menu-btn.active span.b {
        transform: rotate(-45deg);
        bottom: 6px;
    }

    #sp-nav {
        width: 100%;
        height: 100%;
        background: #fff;
        padding: 70px 20px;
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        left: 0;
        top:0;
        z-index: 9999;
       -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #sp-nav.active {
        opacity: 1;
        visibility: visible;
    }
    .sp-nav__list >li {
        border-bottom: dotted 1px var(--blue-color);
    }
    .sp-nav__list >li a {
        display: block;
        padding: 10px;
        color: var(--blue-color);
        font-size: 16px;
        font-weight: 500;
    }
    .sp-sns__list {
        margin-top: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sp-sns__list >li {
        width: 50px;
        margin: 0 10px;
    }
    
    .cmn-title {
        margin-bottom: 30px;
    }
    .cmn-title h2 {
    }
    .cmn-title p {

    }
    .cmn-subtext {
        font-size: 13px;
    }

    .more {
        text-align: center;
    }

    #global-footer {
        padding: 60px 0 30px;
    }
    .footer-main {
        display: block;
    }
    .footer-info {
        width: 100%;
    }
    .footer-nav {
        display: none;
    }
    .footer-sub {
        margin-top: 20px;
        display: block;
    }
    .footer-sub .copyright {
        font-size: 10px;
        margin-top: 20px;
    }
	
	.to-er {
		width: 100px;
		top: -100px;
	}
	.to-er a .icon {
		width: 100px;
		height: 100px;
	}

}


/* ----------------
news
--------------------------*/
.news__list >li {
    border-bottom: dotted 1px;
}
.news__list >li a {
    display: flex;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 15px;
}
.news__list >li a:hover {
	background: #eee;
}
.news__list >li a span {
    display: inline-block;
    font-weight: 500;
}
.news__list >li a .news-date {
    margin-right: 25px;
    font-family: var(--font-en);
    color: #666;
}
.news-category {
    color: var(--blue-color);
    font-size: 80%;
    width: 100px;
    background: #f4f6fb;
    text-align: center;
    margin-right: 25px;
}
.news-category.event {
	color: green;
}
.news-category.visit {
	color: #fc0071;
}
.news-category.magazine {
	color: #000;
}
.news__list >li a .news-title {
    width: calc(100% - 280px);
}

@media (max-width: 815px) {

    .news__list >li a {
        display: block;
		padding: 15px 0;
    }
    .news__list >li a span.news-title {
		display: block;
        width: auto;
        margin-top: 10px;
        font-size: 16px;
        font-weight: 500;
    }
    
}


/* ----------------
magazine
--------------------------*/
.icon-theme {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 2px 15px 3px;
    color: #fff;
    background: var(--base-color);
}
.theme-color-life {
    color: #29c3a7;
}
.theme-bg-life {
    background: #29c3a7;
}
.theme-color-work {
    color: #357acb;
}
.theme-bg-work {
    background: #357acb;
}
.theme-color-family {
    color: #e86200;
}
.theme-bg-family {
    background: #e86200;
}
.theme-color-entertainment {
    color: #fc0071;
}
.theme-bg-entertainment {
    background: #fc0071;
}

.magazine-info {
    font-weight: 500;
}
.magazine-info__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 15px 3px;
    border: solid 1px;
    border-radius: 5px;
}
.magazine-info__title {
    line-height: 1.6;
    font-weight: 600;
    margin-top: 10px;
}
.magazine-info__date {
    font-size: 14px;
    margin-top: 10px;
    color: var(--blue-color);
}

@media (max-width: 815px) {
    
    .icon-theme {
        font-size: 12px;
    }

}


/* ----------------
listen
--------------------------*/
.listen-thumb {
    text-align: center;
    padding-top: 63%;
    height: 0;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    /*background: #ccc;*/
    background: linear-gradient(to bottom right, rgb(248, 57, 168), rgb(81, 48, 97));
}
.listen-senior .listen-thumb {
    background: linear-gradient(to bottom right, rgb(248, 57, 168), rgb(81, 48, 97));
}
.listen-couple .listen-thumb {
    background: linear-gradient(to bottom right, rgb(248, 15, 15), rgb(207, 63, 245));
}
.listen-child-rearing .listen-thumb {
    background: linear-gradient(to bottom right, rgb(247, 93, 139), rgb(254, 220, 64));
}
.listen-society .listen-thumb {
    background: linear-gradient(to bottom right, rgb(57, 210, 248), rgb(48, 97, 96));
}

.listen-thumb img {
    width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.listen-thumb.no-audio {
    background: #ccc !important;
}
.listen-thumb.no-audio p {
    font-size: 30px;
    font-family: var(--font-en);
    font-weight: 500;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.listen-info {
    font-weight: 500;
}
.listen-info__title {
    font-weight: 600;
    line-height: 1.6;
}
.listen-info__e-comment {
    font-size: 14px;
    color: var(--blue-color);
    margin-top: 10px;
}
.listen-info__audio {
    display: block;
    width: 100%;
}
.listen-info__coming {
    margin-top:10px;
}
.listen-info__category {
    margin-left: -5px;
}
.listen-info__category >li {
    font-size: 12px;
    font-style: italic;
    display: inline-block;
    color: #fff;
    padding: 2px 10px 3px;
    background: #222;
    margin: 10px 0 0 5px;
}



/* ----------------
radio
--------------------------*/
.radio-thumb {
    text-align: center;
    padding-top: 63%;
    height: 0;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    /*background: #ccc;*/
    background: linear-gradient(to bottom right, rgb(248, 57, 168), rgb(81, 48, 97));
}
.radio-senior .radio-thumb {
    background: linear-gradient(to bottom right, rgb(248, 57, 168), rgb(81, 48, 97));
}
.radio-couple .radio-thumb {
    background: linear-gradient(to bottom right, rgb(248, 15, 15), rgb(207, 63, 245));
}
.radio-child-rearing .radio-thumb {
    background: linear-gradient(to bottom right, rgb(247, 93, 139), rgb(254, 220, 64));
}
.radio-society .radio-thumb {
    background: linear-gradient(to bottom right, rgb(57, 210, 248), rgb(48, 97, 96));
}

.radio-thumb img {
    width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.radio-thumb.no-audio {
    background: #ccc !important;
}
.radio-thumb.no-audio p {
    font-size: 30px;
    font-family: var(--font-en);
    font-weight: 500;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.radio-info {
    font-weight: 500;
}
.radio-info__title {
    font-weight: 600;
    line-height: 1.6;
}
.radio-info__e-comment {
    font-size: 14px;
    color: var(--blue-color);
    margin-top: 10px;
}
.radio-info__audio {
    display: block;
    width: 100%;
    margin-top:10px;
}
.radio-info__coming {
    margin-top:10px;
}
.radio-info__category {
    margin-left: -5px;
}
.radio-info__category >li {
    font-size: 12px;
    font-style: italic;
    display: inline-block;
    color: #fff;
    padding: 2px 10px 3px;
    background: #222;
    margin: 10px 0 0 5px;
}

@media (max-width: 815px) {


}


/* ----------------
contact
--------------------------*/
#contact {
    background: var(--bg-color);
}
#contact .cmn-title .sub {
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    color: var(--blue-color);
    padding: 0 20px;
    white-space: nowrap;
    position:  relative;
}
#contact .cmn-title .sub:before,
#contact .cmn-title .sub:after {
    content: '・・・・';
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    letter-spacing: -9px;
    position: absolute;
}
#contact .cmn-title .sub:before {
    transform: rotate(70deg);
    left: 0;
    top: -5px;
}
#contact .cmn-title .sub:after {
    transform: rotate(-65deg);
    right: 0;
    top: 4px;
}
.contact-in {
    display: flex;
    justify-content: space-between;
}
.contact-form {
    width: 760px;
    padding: 0 60px;
}
.contact-form.full {
    width: 100%;
    padding: 0;
}
.contact-form table {
    font-size: 15px;
    width: 100%;
    border-collapse: collapse;
}
.contact-form table th {
    font-weight: 500;
    width: 170px;
    text-align: left;
    padding-top: 15px;
    vertical-align: top;
}
.contact-form table td {
    padding-bottom: 40px;
}
.cmn-input,
.cmn-input-s,
.cmn-input-m,
.cmn-select,
.cmn-select-s,
.cmn-textarea {
	font-size: 16px;
}

.cmn-input {
    width: 100%;
    height: 50px;
    border: none;
	background: #fff;
    text-indent: 10px;
}
.cmn-input-s {
    width: 30%;
    height: 50px;
    border: none;
	background: #fff;
    text-indent: 10px;
}
.cmn-select-s {
    width: 30%;
    height: 50px;
    border: none;
	background: #fff;
}
.cmn-textarea {
    width: 100%;
    height: 210px;
    border: none;
	background: #fff;
}

.input-address-box:not(:last-child) {
    margin-bottom: 10px;
}
.input-address-box .cmn-input {
    width: calc(100% - 5em);
}
.contact-form ::placeholder{
  color:#ccc
}

#btn-send {
	cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 500;
    max-width: 220px;
    width: 100%;
    text-align: center;
    line-height: 1;
    padding: 15px 0;
    margin: auto;
    color: #fff;
    border: solid 1px;
    background: var(--blue-color);
    border-radius: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#btn-send:hover {
	color: var(--blue-color);
	background: #fff;
}



@media (max-width: 815px) {

    #contact .cmn-title .sub {
        font-size: 11px;
        margin-bottom: 10px;
        margin-left: -15px;
    }
    .contact-in {
        display: block;
    }
    .contact-form {
        width: 100%;
        padding: 0;
    }
	.contact-form table th {
		display: block;
		width: 100%;
        padding-bottom: 10px;
	}
	.contact-form table td {
		padding: 0 0 20px;
		display: block;
		width: 100%;
	}

}


/*------------------- 4/1 */
.ver0401 .cmn-title {
    margin-bottom: 60px;
}
.ver0401 .cmn-title h2 {
    font-size: 50px;
    font-weight: 600;
    font-family: var(--font-en);
    line-height: 1;
    color: var(--blue-color);
}
.ver0401 .cmn-title.anime h2 span {
    visibility: hidden;
    opacity: 0.1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.ver0401 .cmn-title.anime.animated h2 span {
    visibility: visible;
    opacity: 1;
}
.ver0401 .cmn-title p {
	font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
}
.ver0401 .cmn-title.inline h2 {
    display: inline-block;
    vertical-align: middle;
}
.ver0401 .cmn-title.inline p {
    display: inline-block;
    margin-top: 0;
    margin-left: 20px;
    vertical-align: middle;
}


@media (max-width: 815px) {

    .ver0401 .cmn-title {
        margin-bottom: 30px;
    }
    .ver0401 .cmn-title h2 {
        font-size: 36px;
    }
    .ver0401 .cmn-title p {
	    font-size: 14px;
    }

}
