@charset "utf-8";

@import url("reset.css");
@import url("page_common.css");
@import url("page_style.css");


/*----------------------------------
  common
------------------------------------*/

body {
	font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	font-size:1.4rem;
	line-height:1.8;
	color:#333;
    position: relative;
    overflow-x: hidden;
	background: #FFFDF1;
	-webkit-text-size-adjust:100%;
}

a {
	text-decoration:none; 
}

img {
	display: block;
	width:100%;
	height:auto;
}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 768px) {

}




/* PC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1024px){

body {
	font-size:1.6rem;
}

a {
}

a:hover{
	text-decoration:underline;
}

}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1280px){



}





/*----------------------------------
  Header
------------------------------------*/

header {
	position: relative;
	transition: .2s all ease;
    z-index: 9999;
}

header > div {
	padding: 8px 0 0;
    background: #FFF;
}

header h1#logo {
    width: 229px;
    margin-left: 20px;
    margin-bottom: 8px;
}

header h1#logo a {
	display: block;
}

header.fixed #fixed_area {
    width: 100%;
	position: fixed;
	top:0;
}

header #fixed_area > div {
	position:relative;
}

header #fixed_area.active > div {
	position:static;
}

header .sub-nav {
    display: flex;
    justify-content: flex-start;
    border-top: #c70057 solid 1px;
    border-bottom: #c70057 solid 1px;
	background:#FFF;
	width: calc(100% - clamp(50px, 5.625vw, 72px));
}

header .sub-nav li {
	flex: 1;
	display: flex;
    align-items: center;
	height: clamp(48px, 5.46875vw, 70px);
}

header .sub-nav li:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
	background-image: linear-gradient(transparent 25%, #c70057 25%, #c70057 75%, transparent 75%);
}

header .sub-nav li:last-of-type:after{
    display: none;
}

header .sub-nav li a {
	width: calc(100% - 1px);
	height: 100%;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 0px 5px;
    display: flex;
    justify-content: center;
    align-content: space-between;
    flex-wrap: wrap;
    line-height: 1.4;
}

header .sub-nav li a span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
	height: 100%;
    margin: 0px auto;
}

header .sub-nav li a span img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}



/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 768px) {

}




/* PC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1024px){
	
}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1280px){

header {
	width: 320px;
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
}

header > div {
    height: 100vh;
	padding: 20px 0 80px;
    box-shadow: 0 3px 8px rgb(0 0 0 / 15%);
    overflow-y: auto !important;

    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;

}

 /*Google Chrome、Safariへの対応*/
header > div::-webkit-scrollbar{
  display: none;
}

header h1#logo,
header .sub-nav {
    display: none;
}

header.fixed #fixed_area {
    width:320px;
	position:static;
}

}





/*----------------------------------
  main-navi
------------------------------------*/

header .menu {
    width:clamp(50px, 5.625vw, 72px);
    height:clamp(50px, 5.625vw, 72px);
    position:absolute;
    right:0;
    top:0;
    z-index:99;
	background:#c70057;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	transition: .2s all ease-in;
}
.m-trigger,
.m-trigger span {
	display: inline-block;
	transition: all .4s;
}
.m-trigger {
	position: relative;
	width: 16px;
	height: 14px;
	text-decoration: none;
}
.m-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #FFF;
	border-radius: 0;
}
.m-trigger span:nth-of-type(1) {
	top: 0;
}
.m-trigger span:nth-of-type(2) {
	transform: translateY(-50%);
	top: 50%;
}
.m-trigger span:nth-of-type(3) {
	bottom: 0px;
}
.menu:after {
	width: 100%;
    display: block;
    content: 'メニュー';
	color:#FFF;
    transition: .2s all ease-in;
    line-height: 1;
    text-align: center;
    font-size: 0.8rem;
	font-weight:bold;
    padding-top: 10px;
}
.menu.active:after {
	content:'閉じる';
	color: #c70057;
}


/*--挙動制御--*/

header .menu.active {
    position:fixed;
    background: #FFF;
}
.m-trigger.active::after {
  border-color: #FFF !important;
}
.m-trigger.active span {
	background-color: #c70057;
}
.m-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
.m-trigger.active span:nth-of-type(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.m-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
/*
.m-trigger.active::after {
  -webkit-animation: circle .4s .25s forwards;
  animation: circle .4s .25s forwards;
}

/*==================== オーバーレイ領域 ====================*/

.navigation{
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  overflow-y: scroll;
  line-height:normal !important;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
.navigation .navigation_inner{
	display: table;
    width: 100%;
    height: 100%;
    padding: 16px 0 50px;
    box-sizing: border-box;
    background-color: #FFF;
}

.navigation .navigation_inner > h1 a {
	display: inline-block;
}

.navigation .navigation_inner > h1 img {
	width:229px;
    margin-left: 20px;
}

.navigation ul.navigation_menu {
    margin-top: 12px;
    padding: 0 20px;
}

.navigation ul.navigation_menu > li {
    padding: 8px 0;
}

.navigation ul.navigation_menu > li > a {
    height: 50px;
    padding: 0;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.navigation ul.navigation_menu > li > a:after{
	content:"";
	background:url("../img/icon/svg/arrow/ar_mv.svg") no-repeat center right;
	background-size:16px auto;
	display: block;
	width:16px;
	height:16px;
	margin:auto 0 auto auto;
}

.navigation ul.navigation_menu > li > a span {
    display: block;
    width: 50px;
    height: 50px;
}

.navigation ul.navigation_menu > li > a span img {
	
}

.navigation ul.navigation_menu > li > a strong {
    font-size: 1.6rem;
    font-weight: bold;
    display: block;
    margin-left: 15px;
    letter-spacing: 1px;
    line-height: 1;
}

.navigation_menu + ul {
    padding: 0 40px;
    margin-top: 20px;
    display:block;
}

.navigation_menu + ul li {
	
}

.navigation_menu + ul li + li {
}

.navigation_menu + ul li a {
	font-weight: bold;
    background-size: 16px auto;
    font-size: 1.4rem;
    display: inline-block;
    padding: 5px 40px 5px 0;
}

.navigation_menu + ul + span {
    margin: 40px auto 0;
}


/* nav-bottom */

.nav-bottom {
	margin-top:25px;
	padding-top:25px;
	border-top:dashed 1px #CCC;
}

.nav-bottom > a {
    width: 73%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #FFF;
    background-color: #FFF;
}
.nav-bottom > a img {
}

.nav-bottom .sns_menu {
    width: 73%;
	max-width: 320px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-bottom .sns_menu li {
	width:calc((100% - 30px) / 4);
    border-radius: 15px;
    overflow: hidden;
}

.nav-bottom .sns_menu li a {
	display: block;
}

.nav-bottom .sns_menu li a img {
}

.nav-bottom .sns_menu + a {
    max-width: 120px;
	width:100%;
	height: 32px;
    margin: 20px auto 0;
    padding: 8px 0;
    border-radius: 30px;
    border: 1px solid #CCC;
}

.nav-bottom > a.mb_10pt{
    margin-bottom: 10px;
}



/* PC用1024px～（PC）
---------------------------------------------------------------------*/
@media print,screen and (min-width: 768px){

.navigation ul.navigation_menu {
    margin-top: 30px;
}

}




/* PC用1024px～（PC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1024px){

}


/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1280px){

header .menu {
    display: none;
}

.navigation {
    position: static;
    display:block !important;
    overflow-y: auto !important;
}

.navigation .navigation_inner {
    background-color: transparent;
    padding: 0;
}

.navigation .navigation_inner h1 {
    width: calc(100% - 50px);
    margin: 0 auto;
}

.navigation .navigation_inner > h1 a {
	display: block;
}

.navigation .navigation_inner h1 img {
    width: 100%;
    margin-left: 0;
}

.navigation ul.navigation_menu {
    margin-top: 20px;
}

.navigation ul.navigation_menu > li > a strong {
    font-size: 1.4rem;
    margin-left: 10px;
    letter-spacing:0;
	line-height: 1.5;

  display:inline-block;
  background-image: linear-gradient(90deg, #FFF565, #FFF565);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 40%;
  transition: all 0.3s ease;
  cursor: pointer;

}

.navigation ul.navigation_menu > li {
    padding: 0;
}

.navigation ul.navigation_menu > li > a {
    height: 45px;
}

.navigation ul.navigation_menu > li > a span {
    width: 45px;
    height: 45px;
}

.navigation ul.navigation_menu > li > a:after{
	background-size:20px auto;
	width:20px;
	height:20px;
	transition: all 0.3s ease;
}

.navigation ul.navigation_menu > li > a:hover:after {
    background: url("../img/icon/svg/arrow/ar_mv_hover.svg") no-repeat center right;
    background-size: 20px auto;
}

.navigation ul.navigation_menu > li > a:hover strong {
    background-size: 100% 40%;
}

.navigation ul.navigation_menu > li + li {
    margin-top: 6px;
}

.navigation_menu + ul {
    padding: 0;
    margin-top: 15px;
    display: block;
}
	
.navigation_menu + ul li + li {
    margin-left: 0;
}

.navigation_menu + ul li a {
    font-size: 1.2rem;
    display: block;
	padding: 10px 20px 10px 30px;
    background-position: right 20px center;
	transition: .2s all ease;
}

.navigation_menu + ul li a:hover {
	text-decoration: none;
    background-color: #EEE;
}	
	
.navigation_menu + ul + span {
    display: none;
}

.nav-bottom {
    margin-top: 25px;
    padding-top: 0;
    border-top: none;
}

.nav-bottom > a {
    max-width: 180px;
    margin: 0 auto;
    border-radius: 5px;
}

.nav-bottom .sns_menu {
    width: 100%;
    max-width: 180px;
    margin: 25px auto 0;
}

.nav-bottom .sns_menu li {
    border-radius: 6px;
    overflow: hidden;
}

.nav-bottom .sns_menu + a {
    font-size: 1.4rem;
    height: 30px !important;
    margin: 15px auto 0;
    padding: 8px 0;
	background-size: 12px auto;
}


}



/*----------------------------------
  Main
------------------------------------*/

main {
	position: relative;
	padding-top:15px;
}

main:not(#index) {
    padding-bottom: 92px;	
}

header.fixed + main {
	margin-top:69px;
}

main:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url("../img/bg_tx.jpg") no-repeat top center;
    background-size: contain;
	position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

header.fixed + main:after {
	position:fixed;
    top: 66px;
} 

/* コンテンツ両端の空き間隔 */
.lim_size {
	padding:0 20px;
}

.none_size {
	padding:0;
}

/* 白背景影付コンテンツ領域 */
.lim_size .content-box {
	background:#FFF;
	padding:25px 18px 30px;
	border-radius:10px;
	box-shadow: 0 3px 8px rgb(0 0 0 / 15%);
}



/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 768px) {

}




/* PC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1024px){

main {
    padding-top: 30px;
}

main:not(#index) {
    padding-bottom: 170px;
}

.lim_size .content-box {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 3px 8px rgb(0 0 0 / 15%);
}

}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1280px){

main {
    width: calc(100% - 320px);
    margin: auto 0 auto auto;
}

main:after {
    width:100%;
	position:fixed;
    left: 0;
}

.lim_size {
    max-width: 1280px;
    margin-left:auto;
    margin-right:auto;
}

.none_size {
    max-width: 1280px;
    margin-left:auto;
    margin-right:auto;

}

}

/* PC用1600px～（PC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1600px){

.lim_size {
	padding:0;
}

.lim_size .content-box {
    padding: 80px 140px !important;
}



}




/*----------------------------------
  Footer
------------------------------------*/

footer {
	background:#FFFDF1;
}

footer > div {
	
}

/* sns_area */
.sns_area {
	background:#F5F5F5;
	padding:20px;
}

.sns_area > span {
	display: block;
	text-align: center;
	color:#008B11;
	font-weight:bold;
	font-size:1.8rem;
	line-height: 1;
}

.sns_area .sns_menu {
    width: 100%;
    margin: 15px auto 0;
    display: flex;
    justify-content:center;
    align-items: center;
}

.sns_area .sns_menu li {
	width:46px;
	border-radius: 8px;
    overflow: hidden;
}

.sns_area .sns_menu li + li {
	margin-left:10px;
}

.sns_area .sns_menu li a {
	display: block;
}

.sns_area .sns_menu li a img {
}

.sns_area .sns_menu + a {
    max-width: 150px;
    margin: 15px auto 0;
}

/* sitemap_area */
.sitemap_area {
	padding:20px 0;
}

.sitemap_area > a {
    max-width: 350px;
    width: calc(100% - 40px);
    margin: 0 auto;
	border-radius: 10px;
    overflow: hidden;
    display: block;
}

.sitemap_area > .bnr_set > a {
    max-width: 350px;
    width: calc(100% - 40px);
    margin: 0 auto;
	border-radius: 10px;
    overflow: hidden;
    display: block;
}

.sitemap_area > .bnr_set > a:first-of-type {
    margin-bottom:20px;
}


.sitemap_area ul.sitemap {
	border-top: 1px solid #CCC;
    margin-top: 20px;
}

.sitemap_area ul.sitemap > li {
    padding: 0 20px;
}

.sitemap_area ul.sitemap > li + li{
	border-top:1px solid #CCC;
}

.sitemap_area ul.sitemap > li > a {
	display: flex;
	justify-content:space-between;
	align-items: center;
	font-size:1.4rem;
    line-height: 1;
	font-weight:bold;
	color:#c70057;
	height:60px;
	text-decoration: none;
}

.sitemap_area ul.sitemap > li > a.tgl:after{
	transform: rotate(90deg);
	transition: .2s all ease;
}

.sitemap_area ul.sitemap > li > a.tgl.tgl_open:after{
	transform: rotate(-90deg);
}

.sitemap_area ul.sitemap > li > a + div {
	display: none;
}

.sitemap_area ul.sitemap > li ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
    padding-bottom: 15px;
	transition: .2s all ease;
}

.sitemap_area ul.sitemap > li ul li {
	width:calc((100% - 20px) / 2);
}

.sitemap_area ul.sitemap > li ul li:nth-child(n+3){
	margin-top:3px;
}

.sitemap_area ul.sitemap > li ul li a {
	font-size:1.2rem;
	color:#707070;
}


footer #topback {
	width:140px;
	height:36px;
	display: flex;
	justify-content: center;
	align-items: center;
	background:#f8e0eb;
	color:#c70057;
	font-weight:bold;
	line-height: 1;
	margin:0 auto -2px;
	border-radius:10px 10px 0 0;
	text-decoration: none;
}

footer #topback:after {
	content:"";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 6px 10.4px 6px;
	border-color: transparent transparent #c70057 transparent;
	margin-left: 0.2rem;
}

footer #copy {
	height:30px;
	background:#c70057;
	color:#FFF;
	font-size:1.2rem;
	font-weight:bold;
	display: flex;
	justify-content: center;
	align-items: center;
}



/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 768px) {

.sns_area {
    display: flex;
    justify-content: center;
    align-items: center;
	padding:20px;
}

.sns_area > span {

}

.sns_area .sns_menu {
    width: auto;
    margin: 0;
    margin-left: 30px;
}

.sns_area .sns_menu li {
    border-radius: 6px;
}

.sns_area .sns_menu li + li {
    margin-left: 16px;
}

.sns_area .sns_menu + a {
    margin: 0;
    margin-left: 30px;
}


}

/* MID用～1024px（NPC）
---------------------------------------------------------------------*/
@media print,screen and (max-width: 1023px){
    .sitemap_area > .bnr_set > a {
        max-width:500px;
    }
}

/* PC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1024px){

.sns_area {
	padding:40px 20px;
}

.sitemap_area {
    padding: 40px 0 60px;
	max-width: 1280px;
    margin: 0 auto;
}
	
/*
.sitemap_area > a {
    max-width: 1040px;
    width: 80%;
}
*/ 
    
.sitemap_area > .bnr_set{
    display: flex;
    justify-content:center;
    align-items: flex-start;
}
    
.sitemap_area > .bnr_set > a {
    max-width:inherit;
    width:calc(50% - 40px);
}
    
.sitemap_area > .bnr_set > a:first-of-type {
    margin-bottom:0;
}

 
.sitemap_area ul.sitemap {
    border-top: none;
    margin-top: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.sitemap_area ul.sitemap > li {
	width: 25%;
	padding:0;
}

.sitemap_area ul.sitemap > li > a {
    font-size: 1.8rem;
    height: 30px;
    border-left: 3px solid #c70057;
    padding-left: 20px;
}

.sitemap_area ul.sitemap > li + li > a {
    margin-left: -2px;
	pointer-events: none;
}

.sitemap_area ul.sitemap > li > a:after {
	display: none;
}

.sitemap_area ul.sitemap > li > a + div {
    display: block !important;
    margin-top: 10px;
    padding-left: 23px;
}

.sitemap_area ul.sitemap > li + li {
    border-top: none;
    border-left: 1px solid #CCC;
}

.sitemap_area ul.sitemap > li ul {
    display: block;
    padding-bottom: 0;
}

.sitemap_area ul.sitemap > li ul li {
    width:100%;
}

.sitemap_area ul.sitemap > li ul li:nth-child(n+3) {
    margin-top: 0;
}

.sitemap_area ul.sitemap > li ul li + li {
    margin-top: 5px !important;
}

.sitemap_area ul.sitemap > li ul li a {
    font-size: 1.4rem;
	display: block;
}

footer #topback {
    width: 280px;
    height: 50px;
    border-radius: 10px 10px 0 0;
	margin:0 auto;
}

footer #topback:after {
    border-width: 0 7px 12.1px 7px;
    margin-left: .5rem;
}

footer #copy {
    height: 80px;
    font-size: 1.4rem;
}

}



/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1280px){

footer {
    width: calc(100% - 320px);
    margin: auto 0 auto auto;
}

}



/*----------------------------------
  error
------------------------------------*/

.error404 {
	
}

.error404 div ul {
	margin-top:30px;
}

.error404 div ul li + li {
	margin-top:5px;
}

.error404 div ul li a {
	text-decoration: underline;
}




/* TAB用768px～（TAB）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 768px) {

}




/* PC用1024px～（NPC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1024px){

.error404 div ul {
	margin-top:50px;
}

.error404 div ul li a:hover{
	text-decoration:none;
}

}




/* PC用1280px～（PC）
---------------------------------------------------------------------*/

@media print,screen and (min-width: 1280px){



}




