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

@import url('https://fonts.googleapis.com/css?family=Noto Sans JP');

/* ======== BASIC ======== */
html {
	overflow-y:scroll;
}
body {
    margin:0;
	padding:0;
	letter-spacing:1px;
	line-height:2em;
	font-family:"Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	color:#333;
	background-color:#faffff;
	display: none;
}
br {
	letter-spacing:normal;
}
a {
	color:#777;
	text-decoration:none;
    transition: all 0.3s;/*アニメーション設定*/
}
a:hover {
	color:#46afac;
}
img {
	border:0;
	vertical-align:middle;
}
h1, h2, h3, h4, h5, h6, p, ul, dl, dt, dd {
	margin:0;
	padding:0;
}
li {
	list-style-type:none;
}
.clear {
	clear:both;
}
.f_red {
	color:#FF0000;
}
.f_bold {
    font-weight: bold;
}
.f_12 {
	font-size:12px;
}
.f_13 {
	font-size:13px;
}
.f_14 {
	font-size:14px;
}
.f_15 {
	font-size:15px;
}
.f_right {
	text-align: right;
}
.lh16 {	
	line-height:1.6em;
}
.lh14 {	
	line-height:1.4em;
}
.pb2 {
	padding-bottom:2px;
}
.pb5 {
	padding-bottom:5px;
}
.pb7 {
	padding-bottom:7px;
}
.pb10 {
	padding-bottom:10px;
}
.pb15 {
	padding-bottom:15px;
}
.pb20 {
	padding-bottom:20px;
}
.pb25 {
	padding-bottom:25px;
}
.pb30 {
	padding-bottom:30px;
}
.pb40 {
	padding-bottom:40px;
}
.pb50 {
	padding-bottom:50px;
}
.pb60 {
	padding-bottom:60px;
}
.pb70 {
	padding-bottom:70px;
}
.pb80 {
	padding-bottom:80px;
}
.pb100 {
	padding-bottom:100px;
}
.pt2 {
	padding-top:2px;
}
.pt5 {
	padding-top:5px;
}
.pt10 {
	padding-top:10px;
}
.pt15 {
	padding-top:15px;
}
.pt20 {
	padding-top:20px;
}
.pt25 {
	padding-top:25px;
}
.pt30 {
	padding-top:30px;
}
.pt40 {
	padding-top:40px;
}
.pt50 {
	padding-top:50px;
}
.pt60 {
	padding-top:60px;
}
.pt70 {
	padding-top:70px;
}
.pt80 {
	padding-top:80px;
}
.pl05 {
	padding-left:0.5em;
}
.pl1 {
	padding-left:1em;
}
.mt5 {
	margin-top: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.f_bold1 {
	font-size: 17px;
}
.f_bold2 {
	font-size: 18px;
}
.f_bold3 {
	font-size: 20px;
}
.f_bold4 {
	font-size: 15px;
}
.f_block {
    display: block;
}
.f_small {
	font-size: 13px;
}
.pad_top1 {
	display: block;
	padding-top: 5px;
}
.pad_top2 {
	display: block;
	padding-top: 8px;
}
.pad_top3 {
	display: block;
	padding-top: 12px;
}
.pad_top4 {
	display: block;
	padding-top: 16px;
}
.pad_top5 {
	display: block;
	padding-top: 20px;
}
/* ======== HEADER ======== */
#top {
    position: relative;
}
#header {
    width: 100%;
    height: 150px;
    position: relative;
}
#sub_header {
    width: 98%;
    padding: 5px 2% 0 0;
    height: 50px;
    position: fixed;
    top: 0;
    left: auto;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0);
    transition: all 1s;/*アニメーション設定*/
    overflow: visible;
}
#sub_header.bg_color {
    background-color: rgba(0, 0, 0, 0.5);
}
#sub_header h1 {
    width: 30%;
    position: fixed;
    top: 4px;
    left: 4px;
}
#sub_header h1 img {
    height: 45px;
    transform: scale(1);
    transition: all 0.3s;/*アニメーション設定*/
}
#sub_header h1 img:hover {
    transform: scale(1.1);
}
h3.sub_title {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}
h3.sub_title img {
    height: 66px;
}
/* ハンバーガーメニュー */
.pc_menu {
    display: none;
}
.menu-btn {
    position: fixed;
    top: 5px;
    right: 8px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
	cursor: pointer;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    background-color: #666;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    background-color: #666;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 80;
    background-color: #edfbfb;
    transition: all 0.5s;/*アニメーション設定*/
	overflow: scroll;
}
#menu-btn-check:checked ~ .menu-content {
    top: 0;/*メニューを画面内へ*/
}
.menu-content ul {
    padding: 60px 10px 20px;
}
.menu-content ul li {
    border-bottom: dotted 1px #666;
    list-style: none;
}
.menu-content ul li p.main_menu {
    border-bottom: dotted 1px #666;
    padding: 14px 15px 10px 0;
    transition: all 0.3s;/*アニメーション設定*/
}
.menu-content ul li img {
	height: 34px;
    padding-left: 5px;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#666;
    text-decoration: none;
    padding: 14px 15px 10px 0;
    position: relative;
}
.menu-content ul li.li_high a {
    padding: 11px 15px 12px 0;
}
.menu-content ul.sub_menu {
    padding: 0 0 0 5px;
}
.menu-content ul.sub_menu li {
    border-bottom: dashed 1px #666;
}
.menu-content ul.sub_menu li.li_btm {
    border: none;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #666;
    border-right: solid 2px #666;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 23px;
}
.pc_sub_menu {
	display: none;
}
/* contents */
#contents {
    margin: 0 auto;
    min-height: 400px;
    background-color: #faffff;
}
.box {
    width: 100%;
    padding: 60px 0 100px;
    background: linear-gradient(#dcf4f3, #faffff);
}
.box_btm {
    padding-bottom: 70px;
}
.box_contents {
    width: 93%;
    max-width: 1000px;
    margin: 0 auto;
}
p.title {
    padding-bottom: 30px;
}
p.title img {
    height: 40px;
}
p.title_big img {
    height: 33px;
}
p.title_big2 img {
    height: auto;
    width: 100%;
    max-width: 411px;
}
.para dt {
	display: block;
    padding: 4px 15px 6px;
    font-size: 18px;
    color: #3fb1af;
    font-weight: bold;
    border: 1px solid #3fb1af;
    margin-bottom: 20px;
}
.para dd {
	display: block;
	padding-bottom: 80px;
    padding-left: 15px;
}
.para dd.dd_btm {
	padding-bottom: 0;
}
.para li {
    padding-bottom: 30px;
}
.para li.li_btm {
    padding-bottom: 0;
}
.para_pl {
    padding-left: 15px;
}
.para_lh {
	line-height: 2.2em;
}
p.p_button {
	width: 100%;
    padding-top: 15px;
}
p.p_button a {
	background-color: #3fb1af;
	color: #fff;
	max-width: 86%;
	padding: 11px 7% 12px;
	font-weight: bold;
    transition: all 0.3s;/*アニメーション設定*/
}
p.p_button a:hover {
	background-color: #5cc6c1;
}
p.p_button_pink {
    padding-top: 23px;
}
p.p_button_pink a {
	background-color: #e89fbe;
    font-size: 16px;
	padding: 14px 7% 15px;
}
p.p_button_pink a:hover {
	background-color: #efb4d0;
}
.para_title {
	padding: 0 0 10px 19px;
	font-size: 18px;
	font-weight: bold;
	background:url(../images/icon_square.png) 0 9px no-repeat;
	-webkit-background-size:13px auto;
	-moz-background-size:13px auto;
	-o-background-size:13px auto;
	background-size:13px auto;
}
.para_title_lh {
	background:url(../images/icon_square.png) 0 10px no-repeat;
	-webkit-background-size:13px auto;
	-moz-background-size:13px auto;
	-o-background-size:13px auto;
	background-size:13px auto;
}
.border_title {
	display: block;
    padding: 4px 15px 6px;
    font-size: 18px;
    color: #3fb1af;
    font-weight: bold;
    border: 1px solid #3fb1af;
    margin-bottom: 20px;
}
.round_title {
    font-size: 18px;
    color: #3fb1af;
    font-weight: bold;
	padding: 0 0 30px 19px;
	background:url(../images/icon_round.png) 0 10px no-repeat;
	-webkit-background-size:12px auto;
	-moz-background-size:12px auto;
	-o-background-size:12px auto;
	background-size:12px auto;
}
/* チャンネルボタン */
ul.ch_btn {
	width: 100%;
    padding-top: 10px;
}
ul.ch_btn li {
    float: left;
    width: 48%;
    padding: 0 4% 0 0;
}
ul.ch_btn li.r_li {
    padding-right: 0;
}
ul.ch_btn a {
	background-color: #3fb1af;
	color: #fff;
	padding: 11px 5% 12px;
    font-size: 12px;
    text-align: center;
	font-weight: bold;
    display: block;
    white-space: nowrap;
    transition: all 0.3s;/*アニメーション設定*/
}
ul.ch_btn a:hover {
	background-color: #5cc6c1;
}
/* FOOTER */
#footer {
    width: 100%;
    min-height: 50px;
    padding: 60px 0 30px;
    background-color: #faffff;
    overflow: hidden;
}
#foot_contents {
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
}
p.foot_logo {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}
p.foot_logo img {
    width: 60px;
}
p.foot_logo:before,
p.foot_logo:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #888;
}
 
p.foot_logo:before {
    margin-right: 1rem;
}
 
p.foot_logo:after {
    margin-left: 1rem;
}
#foot_copyright {
    width: 60%;
    padding-right: 5%;
    float: left;
    font-size: 13px;
	line-height: 1.5em;
}
.copyright {
    font-size: 12px;
    padding-top: 5px;
}
#foot_icon {
    width: 35%;
    float: right;
}
#foot_icon p {
    width: 30%;
    padding-right: 5%;
    float: right;
}
#foot_icon p.sns_ig {
    padding-right: 0;
}
#foot_icon img {
    width: 100%;
    max-width: 45px;
    transition: all 0.3s;/*アニメーション設定*/
    position: relative;
    top: 0;
}
#foot_icon img:hover {
    top: -10px;
}
/* ======== return ======== */
#return p {
    z-index: 40;
}
#return p a {
    position: relative;
	display: block;
	width: 35px;
	height: 35px;
	background-color: #53c1bc;
	opacity: 0.85;
	filter: alpha(opacity=85);
	-ms-filter: "alpha( opacity=85 )";
}
#return p a:hover {
	background-color: #3fb1af;
	opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}
#return a span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(-45deg);
    position: absolute;
    right: 13.5px;
    top: 15.5px;
}
/* フェードイン */
.fade_box {
    /* 最初は非表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン時に入るクラス */
.is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
/* スマホ横～ */
@media screen and (min-width:480px) {
    h3.sub_title img {
        height: 72px;
    }
    #foot_copyright {
        width: 250px;
        padding-right: 10px;
    }
    #foot_icon {
        width: 155px;
    }
    #foot_icon p {
        width: 45px;
        padding-right: 10px;
    }
    #foot_icon p.sns_ig {
        padding-right: 0;
    }
}
/* Kindle縦～ */
@media screen and (min-width:550px) {
}
/* フッター調整～ */
@media screen and (min-width:650px) {
}
/* タブレット縦～ */
@media screen and (min-width:750px) {
    #sub_header {
        height: 57px;
    }
    #sub_header h1 {
        top: 5px;
        left: 5px;
    }
    #sub_header h1 img {
        height: 50px;
    }
    .menu-btn {
        height: 45px;
        width: 45px;
    }
    #contents {
        min-height: 450px;
    }
	p.p_button a {
		padding: 11px 5% 12px;
	}
    p.p_button_pink a {
        padding: 14px 5% 15px;
    }
    .f_block {
        display: inline;
    }
    /* チャンネルボタン */
    ul.ch_btn li {
        width: auto;
        padding: 0 15px 0 0;
    }
    ul.ch_btn li.r_li {
        padding-right: 0;
    }
    ul.ch_btn a {
        padding: 11px 30px 12px;
        font-size: 13px;
    }
	/* ======== return ======== */
	#return p a {
		width: 40px;
		height: 40px;
	}
	#return a span::before {
		width: 7px;
		height: 7px;
		right: 15px;
		top: 17px;
	}
}
/* PC */
@media screen and (min-width:1024px) {
    #header {
        height: 230px;
    }
    #sub_header {
        height: 57px;
    }
    #sub_header h1 {
        top: 5px;
        left: 6px;
    }
    #sub_header h1 img {
        height: 52px;
    }
    h3.sub_title {
        bottom: 15px;
        left: 48%;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
    }
    h3.sub_title img {
        height: 90px;
    }
    /* ハンバーガーメニュー */
    .pc_menu {
        display: inline;
    }
	.sp_menu {
		display: none;
	}
	.menu-content {
		display: block;
		width: 80%;
		padding: 5px 2% 0 0;
		height: 57px;
		position: fixed;
		top: 0;
		left: auto;
        right: 0;
		z-index: 55;
		background: none;
    	transition: none; /*アニメーション設定*/
		overflow: visible;
	}
	.menu-content ul {
		padding: 10px 0 0;
	}
	.menu-content ul li {
		border: none;
		list-style: none;
		float: right;
	}
	.menu-content ul li.li_dash {
		border: none;
	}
	.menu-content ul li+li {
		padding-right: 2%;
	}
	.menu-content ul li img {
		height: 32px;
        transform: scale(1);
        transition: all 0.3s;/*アニメーション設定*/
	}
	.menu-content ul li img:hover {
        transform: scale(1.1);
    }
	.menu-content ul li p.main_menu {
		border: none;
		padding: 0;
		height: 52px;
	}
	.menu-content ul li p.main_menu img {
		height: 32px;
	}
	.menu-content ul li a {
		width: auto;
		box-sizing: content-box;
		padding: 0;
		position: relative;
		text-decoration: none;
	}
	.menu-content ul li.li_high a {
		padding: 0;
	}
	.menu-content ul li a::before {
		content: "";
		width: auto;
		height: auto;
		border: none;
		transform: none;
		position: absolute;
		right: auto;
		top: auto;
	}
	/* PCサブメニュー */
	.pc_sub_menu {
		position: fixed;
		top: 62px;
		display: block;
	}
	.pc_sub_menu p {
		height: 0;
		transition: all 0.5s; /*アニメーション設定*/
		overflow: hidden;
	}
	.pc_sub_menu.bg_color {
        background-color: rgba(0, 0, 0, 0.5);
    }
	.pc_sub_menu_on p {
		overflow: visible;
		height: 26px;
        padding: 2px 10px 10px;
        margin-left: -10px;
	}
	.pc_sub_menu_on p.pc_sub_menu_btm {
        padding-bottom: 10px;
	}
	.menu-content ul li .pc_sub_menu img {
		height: 26px;
    }
    /* contents */
    p.title {
        padding-bottom: 40px;
    }
    p.title img {
        height: 45px;
    }
    p.title_big2 img {
        height: 45px;
        width: auto;
        max-width: 560px;
    }
    .para dt {
        float: left;
        width: 7em;
        text-align: center;
        padding: 6px 15px 8px;
    }
    .para dd {
        padding-left: 13.5em;
        padding-top: 7px;
    }
    .para dd.dd_btm {
        padding-bottom: 0;
    }
    .para_lh {
        line-height: 2.5em;
    }
	p.p_button a {
		padding: 11px 30px 12px;
	}
    p.p_button_pink a {
        padding: 14px 30px 15px;
    }
    .para_title {
        padding: 0 0 10px 22px;
	    font-size: 20px;
        background:url(../images/icon_square.png) 0 8px no-repeat;
        -webkit-background-size:15px auto;
        -moz-background-size:15px auto;
        -o-background-size:15px auto;
        background-size:15px auto;
    }
    .para_title_lh {
        background:url(../images/icon_square.png) 0 11px no-repeat;
        -webkit-background-size:15px auto;
        -moz-background-size:15px auto;
        -o-background-size:15px auto;
        background-size:15px auto;
    }
    .border_title {
        padding: 6px 15px 8px;
        font-size: 19px;
    }
    .round_title {
        font-size: 19px;
        padding: 0 0 40px 21px;
        background:url(../images/icon_round.png) 0 9px no-repeat;
        -webkit-background-size:13px auto;
        -moz-background-size:13px auto;
        -o-background-size:13px auto;
        background-size:13px auto;
    }
    /* FOOTER */
    #footer {
        padding-top: 80px;
    }
    p.foot_logo img {
        width: 70px;
    }
}
/* PC */
@media screen and (min-width:1366px) {
    #sub_header {
        height: 62px;
    }
    #sub_header h1 {
        top: 7px;
        left: 8px;
    }
    #sub_header h1 img {
        height: 54px;
    }
	.menu-content {
		padding: 7px 3% 0 0;
		height: 62px;
	}
	.menu-content ul li+li {
		padding-right: 3%;
	}
	.menu-content ul li img {
		height: 35px;
        padding-bottom: 4px;
	}
	.menu-content ul li p.main_menu {
		height: 55px;
	}
	.menu-content ul li p.main_menu img {
		height: 35px;
	}
	/* PCサブメニュー */
	.pc_sub_menu {
		top: 67px;
	}
	.pc_sub_menu_on p {
		height: 28px;
	}
	.menu-content ul li .pc_sub_menu img {
		height: 28px;
    }
    h3.sub_title img {
        height: 100px;
    }
}
/* PC */
@media screen and (min-width:1500px) {
    #sub_header {
        height: 70px;
    }
    #sub_header h1 {
        top: 9px;
        left: 9px;
    }
    #sub_header h1 img {
        height: 56px;
    }
	.menu-content {
		padding-top: 10px;
		height: 70px;
	}
	.menu-content ul li img {
		height: 38px;
        padding-bottom: 4px;
	}
	.menu-content ul li p.main_menu {
		height: 60px;
	}
	.menu-content ul li p.main_menu img {
		height: 38px;
	}
	/* PCサブメニュー */
	.pc_sub_menu {
		top: 75px;
	}
	.pc_sub_menu_on p {
		height: 30px;
	}
	.menu-content ul li .pc_sub_menu img {
		height: 30px;
    }
    h3.sub_title img {
        height: 103px;
    }
}