@charset "utf-8";

@media screen and (max-width: 768px) {

/* smt menu
==============================================*/
	.smt-fixed {
		position: fixed;
		width: 100%;
		height: 100%;
		overflow-y: hidden;
	}
    
    
	/* オーバーレイ */
	.smt-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		visibility: hidden;
		opacity: 0;
		transition: .3s;
		background-color: #000000;
		z-index: 5;
	}
    
    
	/* アクティブ */
	.smt-fixed .smt-overlay {
		visibility: visible;
		opacity: .6;
	}
    
    
	/* ヘッダー */
	header  {
		width:100%;
        background-color: #fff;
		z-index:9;
		-webkit-user-select:none;
		-moz-user-select:none;
		user-select:none;
	}
	header .inner {
		position:relative;
		-webkit-box-sizing:border-box;
		-moz-box-sizing:border-box;
		box-sizing:border-box;
	}
    
    
	/* ナビゲーション */
	header .smt-nav {
		position: fixed;
		/*top: 56px;*/
		right: 0;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		width: 80vw;
		height: 100%;
		-webkit-tap-highlight-color: rgba(0,0,0,0);
		z-index:9999;
		background-color: #f5f5f5;

        contain: paint;
		pointer-events: auto;
		will-change: transform;
		-webkit-backface-visibility:hidden;

        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all 0.5s;
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
	}
    
	header.smt-open .smt-nav {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
	}
	
	header .smt-navare {
		position: relative;
		width: 100%;
		height: 100%;
	}
    
    
	/* ナビゲーションアイコン */
	header .smt-botn {
		position: absolute;
        top: 30px;
        right: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 9;
        -webkit-appearance: none;
        border: 0;
        background: transparent;
        border-radius: 0;
        height: 52px;
        width: 33px;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        cursor: pointer;
        pointer-events: auto;
        contain: paint;
        touch-action: manipulation;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all 0.5s;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        transform: translate(0, 0);
        background-color: #fff;
	}
	header.smt-open .smt-botn {
		width: 32px;
	}
	
	
	.ico-bar {
		display: block;
		width: 100%;
		height: 2px;
		background-color: #d0d0d0;
		transition: .3s;
		margin-top: 8px;
	}
	.ico-bar + .ico-bar {
		margin-top: 8px;
	}
	.ico-txt {
        position: absolute;
        white-space: nowrap;
        transition: .3s;
        font-size: 1.0rem;
        letter-spacing: 0.03em;
        line-height: 1;
        top: 5px;
        left: 50%;
        transform: translate(-50%, 0);
	}
	
    
	/* アクティブ */
	.smt-open .ico-bar {
		/*background-color: #808080;*/
	}
	header.smt-open .smt-botn .button {
		pointer-events: none;
	}
	header.smt-open .smt-botn .ico-txt:nth-of-type(1) {
		opacity: 0;
	}
	header.smt-open .smt-botn .ico-bar:nth-of-type(2) {
		transform: translate(0,0px) rotate(45deg);
	}
	header.smt-open .smt-botn .ico-bar:nth-of-type(3) {
		transform: translate(0,-10px) rotate(-45deg);
	}
    
    
	/* menu-hed */
	.menu-hed {
        /*background-color: #ffffff;*/
        margin-bottom: 10px;
    }
	.menu-hed ul {
        display: -webkit-flex;
        display: flex;
    }
	.menu-hed li {
        margin-left: 13px;
    }
	.menu-hed li:nth-of-type(2) {
        margin-left: 40px;
    }
    .menu-hed li a {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        letter-spacing: normal;
        font-size: 1.45rem;
    }
    .menu-hed li a i {
        font-size: 2.0rem;
        color: #151144;
        width: 36px;
        height: 36px;
        border: 1px solid #c7c7c7;
        border-radius: 50%;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        background-color: #fff;
    }
    .menu-hed li a span {
        margin-left: 5px;
        letter-spacing: 0.05em;
        color: #151144;
    }
    .menu-hed li a:hover {
        /*background-color: #cef1e7;*/
    }
    
    
	
	.smt-navflow {
		display: block;
		width: 100%;
        height: 100%;
		overflow-y: auto;
		overflow-x: hidden;
        
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 5px;
        margin-bottom: 40px;
        padding-bottom: 120px;
	}
    
    /* menu-list */
	.menu-list {
	}

	.menu-list li {
		padding: 20px 10px;
        padding-left: 5px;
		text-transform: uppercase;
		border-bottom: 1px solid #d2d2d2;
        box-shadow: 0 1px 2px #ffffff;
	}
	.menu-list li:last-of-type {
	}
	.menu-list li a {
        font-size: 1.6rem;
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
        line-height: 1;
        font-weight: 600;
	}
	.menu-list li a span {
        margin-left: 10px;
        letter-spacing: 0.05em;
	}
	.menu-list li a small {
        font-weight: normal;
        font-size: 1.3rem;
	}
    
    .menu-list.two li a span {
        font-size: 1.55rem;
        line-height: 1.2;
        letter-spacing: normal;
        font-feature-settings : "palt";
    }
    
	.menu-list li.active-tab {
		background-color: #d4d4d4;
	}
	.menu-list li.active-tab a p {
		color: #ffffff;
	}
    

	/* サブmenu 
	.menu-list .menu-submenu {
		padding-top: 5px;
		padding-bottom: 10px;
		padding-left: 10px;
		padding-right: 10px;
		background-color: #fff;
		
		contain: paint;
		touch-action: manipulation;
		pointer-events: auto;
		-webkit-backface-visibility:hidden;
	}
	.menu-list .menu-submenu li {
		border-bottom: 1px solid #ddd;
	}
	.menu-list .menu-submenu li:last-of-type {
		border-bottom: none;
	}

	.menu-list .menu-submenu li a {
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
		position: relative;
		padding-top: 7px;
		padding-bottom: 7px;
		line-height: 1;
	}
	.menu-list .menu-submenu li a .pho {
        width: 50px;
        height: 50px;
        border-radius: 50px;
        overflow: hidden;
	}
	.menu-list .menu-submenu li a i {
        width: 50px;
        height: 35px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
	}
	.menu-list .menu-submenu li a:hover {
	}
	.menu-list .menu-submenu li a span {
        padding: 0 6px;
        margin-left: 5px;
        letter-spacing: 0.05em;
        color: #151144;
	}
	.menu-list .menu-submenu li a span.wa {
	}
*/
    
    
	/* ナビゲーション：accordion 
	.accordion-toggle,
	.accordion-content {
		cursor: pointer;
		position: relative;
	}
	.accordion-content {
		display: none;
	}
	.accordion-toggle a.pras:before,
	.accordion-toggle a.pras:after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 15px;
		width: 15px;
		height: 2px;
		margin-top: -1px;
		background-color: #a0a0a0;
		-webkit-transform-origin: 50% 50%;
		-ms-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
		-webkit-transition: all 0.3s;
		transition: all 0.3s ease-out;
		
	}
	.accordion-toggle a.pras:before {
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 1;
		z-index: 2;
	}
	.accordion-toggle.active-tab {
		transition: all 0.3s ease;
	}
	.accordion-toggle a.pras.active {
	}
	.accordion-toggle a.pras.active:before {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		background-color: #ffffff !important;
	}
	.accordion-toggle a.pras.active:after {
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
		opacity: 0;
		background-color: #ffffff !important;
	}
*/

	/* 矢印 */
	.menu-list li {
		cursor: pointer;
		position: relative;
	}
	.menu-list li a.sarw::before,
	.menu-list li a.sarw::after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		width: 10px;
		height: 1px;
		margin-top: -1px;
        background-color: #444;
		-webkit-transform-origin: 2% 45%;
		-ms-transform-origin: 2% 45%;
		transform-origin: 2% 45%;
		-webkit-transition: all 0.3s;
		transition: all 0.3s ease-out;
		transform: rotate(135deg);
	}
	.menu-list li a.sarw::before {
		-webkit-transform: rotate(225deg);
		-ms-transform: rotate(225deg);
		transform: rotate(225deg);
		opacity: 1;
		z-index: 2;
	}
    
    
	/* menu-other 
	.menu-other {
        padding-top: 13px;
        padding-bottom: 13px;
        border-bottom: 1px solid #c7c7c7;
        box-shadow: 0 1px 1px #ffffff;
	}
	.menu-other ul {
	}
	.menu-other li {
        margin: 8px 0;
	}
	.menu-other li a {
        font-size: 1.4rem;
        line-height: 1;
        padding: 5px 0;
        color: #151144;
	}
*/
    
	/* menu-sns 
	.menu-sns {
        margin-top: 15px;
	}
	.menu-sns ul {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
	}
	.menu-sns li {
        margin: 0 10px;
	}
	.menu-sns li a {
        width: 40px;
        height: 40px;
        border: 1px solid #c7c7c7;
        border-radius: 50%;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        background-color: #fff;
	}
	.menu-sns li a i {
	}
*/
    
	/* menu-fot */
	.menu-fot {
        margin-top: 20px;
	}
	.menu-fot .logo {
        width: 95px;
        margin: 0 auto;
	}
	.menu-fot .txt {
        text-align: center;
        margin-top: 15px;
        font-family: serif;
        font-size: 1.4rem;
        line-height: 1.6;
	}
    
	/* menu-copy */
	.menu-copy {
        margin-top: 20px;
	}
	.menu-copy h2 {
        font-family: 'Gotu', sans-serif;
        color: #717171;
        margin-left: 5px;
        font-size: 1.0rem;
	}

    
    /*///// 変更 /////*/
    header .smt-botn {
        height: 45px;
        width: 46px;
        padding: 0 8px;
        border: 1px solid #0c94cf;
        border-radius: 3px;
    }
    .ico-txt {
        color: #3188e2;
    }
    .ico-bar {
        margin-top: 15px;
        background-color: #3188e2;
    }
    header.smt-open .smt-botn {
        width: 46px;
    }
    .smt-open .ico-bar {
        /*background-color: #6b6b6b;*/
    }
    
    .menu-list li a i {
        font-size: 1.1rem;
        line-height: 1;
        background-color: #4db2f3;
        color: #fff;
        width: 10px;
        height: 11px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        border-radius: 2px;
    }
    .menu-list li a i.icon-home {
        font-size: 1.8rem;
        color: #4db2f3;
        background: none;
        width: auto;
        height: auto;
        display:block;
        border-radius:initial;
        margin-left: -3px;
        margin-right: -3px;
    }
    
    .menu-list li a.not {
        pointer-events: none;
        color: #b5b5b5;
        font-weight: normal;
    }
    .menu-list li a.not::before,
    .menu-list li a.not::after {
        background-color: #f5f5f5;
    }
    .menu-list li a.not i {
        background-color: #f5f5f5;
    }

    
    /*///// 変更2 /////*/
    .menu-list.waku {
        border: 1px solid #1584b5;
        margin-top: 8px;
        margin-right: 5px;
        margin-bottom: 5px;
        border-radius: 4px;
        background-color: #fff;
    }
    .menu-list.waku li {
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        padding: 10px 10px;
        min-height: 50px;
        border-bottom: 1px solid #b4b4b4;
    }
    .menu-list.waku li:last-of-type {
        border-bottom: 0;
        box-shadow: none;
    }
    .menu-list.waku li a .txt {
        margin-left: 10px;
    }
    .menu-list.waku li a span {
        margin-left: 0;
    }
    .menu-list.waku li a .mk {
        font-size: 1.1rem;
        margin-top: 2px;
        background: #ffe049;
        padding: 2px 3px;
        font-weight: normal;
        color: #fff;
        border-radius: 7px;
    }
    .menu-list.waku li.not a .mk {
        background: #6c6c6c;
    }
    .menu-list.waku .tai {
        background: #2a74af;
        text-align: center;
        padding: 8px 0;
        padding-bottom: 7px;
        border-radius: 3px 3px 0 0;
        color: #fff;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .menu-list.waku .tai i {
        font-size: 1.7rem;
        margin-right: 5px;
        margin-left: -10px;
    }
    .menu-list.waku .tai span {
        font-size: 1.3rem;
        line-height: 1;
        letter-spacing: 0.03em;
        font-weight: bold;
    }
    
    
	.menu-list.waku li a.sarw::before,
	.menu-list.waku li a.sarw::after {
		right: 6px;
	}
    .menu-list li em {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        right: 30px;
        font-style: normal;
        display: inline-block;
        font-size: 1rem;
        line-height: 1;
        background-color: #fb4848;
        color: #fff;
        border-radius: 3px;
        padding: 3px 3px;
    }
    .menu-list.waku li.not {
        pointer-events: none;
        background: #d5d5d5;
    }
    
    
    
    .menu-list li.not a {
        color: #aeaeae;
        font-weight: 500;
        pointer-events: none;
    }
    .menu-list li.not a i {
        background-color: #f5f5f5;
    }
    .menu-list li.not a.sarw::before,
    .menu-list li.not a.sarw::after {
        background-color: #f5f5f5;
    }
    
    

}




@media screen and (max-width: 575px) {
    
    header .smt-botn {
        top: 13px;
        right: 8px;
    }

    header .smt-botn {
        height: 40px;
        width: 43px;
        padding: 0 4px;
    }
    header.smt-open .smt-botn {
        height: 40px;
        width: 43px;
    }
    
    .menu-list li {
		padding: 16px 10px;
	}
    
	header .smt-nav {
        min-width: 290px;
    }
    .smt-fixed .smt-pusher {
        -webkit-transform: translate3d(-290px, 0, 0);
        -moz-transform: translate3d(-290px, 0, 0);
        transform: translate3d(-290px, 0, 0);
    }    
    
    
    
    
}


@media screen and (max-width: 390px) {
    
    header .smt-botn {
        top: 10px;
        right: 6px;
    }
    
    
    
    
    
}










