@charset "UTF-8";
@import url("grid.css");
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  color: #333333;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}
a img:hover {
	opacity: 0.8;
}
.underline {
	border-bottom: 3px solid var(--base-color);
	padding-bottom: 0.5rem;
}
.center {
	text-align: center;
}
body{
    background-color: #f2f2f2;
}
/*ヘッダー
-------------------------------------*/
.head {
	/*display: flex;
    flex-direction: row;
    padding: 1em 0 1em 0;*/
}

.head h1 { 
    /*padding: 1rem 0;
	font-weight: 700;
	letter-spacing: 3px*/;
}
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style: none;
	margin-bottom: 0.5rem;
}
nav li {
    display: block;
    flex: 0 0 15%;
}
nav li a {
    text-decoration: none;
    text-align: center;
}
nav a:hover {
    text-decoration: underline;
}
nav a {
    padding: 1rem;
}

@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

/*SP*/
@media screen and (max-width: 768px){
.head {
	flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
}
.telbox {
	margin-left: 0;
	text-align: center;
}
.head #open,#close  {
    position: absolute;
    top: 28px;
    right: 12px;
    }
nav ul {
	flex-direction: column;
}

nav li {
	padding-top: 0;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}

/*メイン画像
-------------------------------------*/
.mainimg img {
	width: 1160px;
    margin: 0 auto;
/*    margin-top: 2em;*/
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}
/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 5rem 0;
}

/*キャッチタイトル
-------------------------------------*/
h2.catch {
	text-align: center;
	color: var(--link-color);
	font-size: 3.0rem;
	margin-bottom: 6rem;
}
/*SP*/
@media screen and (max-width: 768px){
h2.catch {
	font-size: 2.5rem;
	margin-bottom: 3rem;
}
}

/*フッター
-------------------------------------*/
footer {
    background-color: var(--white-color);
    padding: 3rem 0;
}
footer h5 {
    border-bottom: 1px solid var(--border-color);
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: var(--white-color);
}
.copyright a {
    color: var(--base-color);
    text-decoration: none;
	display: inline-block;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background-color: #0095DD;
    color: #ffffff;
    width: 50px;
    padding: 10px 5px;
    text-align: center;
    font-size: 16px;
}
#pagetop a:hover {
    background: #19599E;
}


/*------------------------------------
横幅設定
------------------------------------*/
/* 横幅 SP用 */
@media screen and (max-width:750px) {
    .container {
        width: 98%;
        max-width: 720px;
        margin: 0 auto;
    }
}

/* 横幅 PC用 */
@media screen and (min-width:751px) {
    .container {
        max-width: 1160px;
        margin: 0 auto;
    }
    .containerTop {
        max-width: 1160px;
        margin: 0 auto;
        margin-top: 0;
    }
    .container900 {
        max-width: 900px;
        margin: 0 auto;
        margin-top: 0;
    }
}

/*hrの飾り*/

/*------------------------------------
ボタン 共通
------------------------------------*/
/* ボタン形状 PC */
.btn {
    margin: 10px auto;
    /*box-shadow: 15px 15px 25px -5px rgba(0, 0, 0, 0.1);*/
    box-shadow: 2px 6px 17px -10px #44426c;
    font-family: 'Noto Sans JP';
    list-style: none;
}

.btn a {
    display: block;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;
}

.btnBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 20px auto 0 auto;
}
 .size-470 {
    width: 470px;
    height: 80px;
    border-radius: 40px;
}
.size-470 a {
    line-height: 76px;
    font-size: 20px;
}
.size-340 {
        width: 340px;
        height: 199px;
        border-radius: 6px;
        margin-top: 6px;
}
.size-340 a {
        line-height: 80px;
        font-size: 18px;
}
.color-green {
    background-color: #32b16c;
}
.color-navy {
    background-color: #1d2088;
}
.color-navy a {
	color: #fff;
}
.color-navy a:hover {
    opacity: 0.85;
    color:#FFD200;
}

.userBox {
    background:url(../img/bg_userkai.png) no-repeat;
    padding-top: 1em;
    padding-left: 2em;
    padding-right: 2em;
}
.userBox2 {
    background:url("../img/bg_userkai_l.png") no-repeat;
    padding-top: 1em;
    padding-left: 2em;
    padding-right: 2em;
}
.mt94 {
    margin-top: 94px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    color: #1d2088;
    padding-top: 1.5em!important;
    marigin-bottom: 1em!important;
}
h2.ondemand {
    font-size: 24px;
    font-weight: bold;
    color: #1d2088;
    padding-top: 0!important;
    marigin-bottom: 1em!important;
}
.userNameBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
}
.userName {
    width: 500px;
    height: 146px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #FFF;
    border-radius: 4px;
    list-style: none;
    margin-top: 0;
}
.userName h3 {
    font-size: 18px;
    font-weight: bold;
    height: 27px;
    line-height: 27px;
    margin-left:20px;
}
.userName img.logo {
    float: left;
}
.userName .right {
    float: left;
}
.userName .right p.title {
    font-size: 14px;
    margin-bottom: 0;
    height: 44px;
    line-height: 130%;
}
.userName .youtubeBtn {
    background-color: #dcdcdc;
    border-radius: 4px;
    width: 310px;
    height: 40px;
    line-height: 38px;
    border: solid 2px #a40000;
}
.userName .youtubeBtn a {
    color: #a40000;
    font-weight: bold;
    border-radius: 4px;
    width: 310px;
    height: 40px;
    padding-left: 3em;
    line-height: 40px;
    background: url(../img/icon_movie.png) 10px 10px no-repeat;
}

.userName .youtubeBtn a:hover {
    color: #FFF;
    background: #a40000 url(../img/icon_movie_wh.png) 10px 10px no-repeat;
    /*background-color: #a40000;*/
}
.movie_icon {
    margin-right:6px;
    margin-top:2px;
}

/*注意書エリア*/
.notice {
    margin-top: 3em;
    padding: 1.5em;
    font-size: 16px;
    background-color: #FFFFFF;
    /*background-color: #E4E4E4;*/
    border: 1px solid #64bdd4;
}
.notice p{
    margin-bottom: 0;
}
.line {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}
.line span {
    display: block;
    margin: 0 .8rem;
    height: 10px;
    width: 10px;
    /*-webkit-transform: rotate(45deg);
    transform: rotate(45deg);*/
    background-color: #0095DD;
}
.line::after, .line::before {
    content: "";
    display: block;
    height: 1px;
    width: auto;
    flex-grow: 1;
    background-color: #0095DD;
}
/*lineheight*/
.lh160{
    line-height: 160%;
}



/*--------------------------------------------------
スマホバージョン
--------------------------------------------------*/
@media screen and (max-width:750px) {

.btn {
    margin: 10px auto;
    /*box-shadow: 15px 15px 25px -5px rgba(0, 0, 0, 0.1);*/
    box-shadow: 2px 6px 17px -10px #44426c;
    font-family: 'Noto Sans JP';
    list-style: none;
}

.btn a {
    display: block;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

.btnBox {
    display: flex;
    flex-direction: column;
    margin: 40px auto 0 auto;
}
.size-500 {
        width: 400px;
        height: 60px;
        border-radius: 6px;
        margin-top: 6px;
}
.size-500 a {
        line-height: 60px;
        font-size: 18px;
}
.color-navy {
    background-color: #1d2088;
}
.color-navy a {
	color: #fff;
}
.color-navy a:hover {
    opacity: 0.85;
    color:#FFD200;
}

.userBox {
    background-color: #E4EBF9;
    padding-top: 1em;
    padding-left: 2em;
    padding-right: 2em;
}

.mt94 {
    margin-top: 54px;
}

.userBox h2 {
    font-size: 24px;
    font-weight: bold;
    color: #1d2088;
    margin-bottom: 20px;
}
.userNameBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
}
.userName {
    width: 500px;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #FFF;
    border-radius: 4px;
    list-style: none;
    text-align: center;
}
.userName h3 {
    font-size: 18px;
    font-weight: bold;
    height: 27px;
    line-height: 27px;
    margin-left:20px;
}
.userName img.logo {
   float: none;
}
.userName .right {
    float: none;
}
.userName .right p.title {
    font-size: 14px;
    margin-bottom: 0;
    height: 44px;
    line-height: 130%;
}
.userName .youtubeBtn {
    background-color: #dcdcdc;
    border-radius: 4px;
    width: 310px;
    height: 40px;
    line-height: 38px;
    border: solid 2px #a40000;
    margin: 0 auto;
}
.userName .youtubeBtn a {
    color: #a40000;
    font-weight: bold;
    border-radius: 4px;
    width: 310px;
    height: 40px;
    padding-left: 3em;
    line-height: 40px;
    background: url(../img/icon_movie.png) 10px 10px no-repeat;
}

.userName .youtubeBtn a:hover {
    color: #FFF;
    background: #a40000 url(../img/icon_movie_wh.png) 10px 10px no-repeat;
    /*background-color: #a40000;*/
}
.movie_icon {
    margin-right:6px;
    margin-top:2px;
}
}