@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Liter&display=swap');

/* ===================================
*
　★リセットCSS
*
===================================-*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
html {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}
q, blockquote {
    quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
}
a img {
    border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
html {
    overflow: auto;
    font-size: 62.5%;
    scroll-padding-top: 80px;
}
body {
	color: black;
	font-size: 1.8rem;
	line-height: 1.6;
	-webkit-text-size-adjust: none;
	position: relative;
	font-family: "Lato",'游ゴシック', 'YuGothic', 'Noto Sans JP', sans-serif;
	font-weight: 500;
}
a {
    color: #000;
    text-decoration:underline;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
a:hover {
    color: #009EDE;
    opacity: 0.6;
}
body p,body ul li a,body ul,body li,dl,dt,dd{
    font-family: "Lato",'游ゴシック', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-weight: 500;
}
button, input,input[type=button], input[type=reset], input[type=submit] {
    touch-action: manipulation;
    transition: border .15s linear, color .15s linear, background-color .15s linear;
    font-family: "Lato",'游ゴシック', 'YuGothic', 'Noto Sans JP', sans-serif;
    font-weight: 500;
}
img {
    vertical-align: bottom;
}
:focus {
    outline: none;
}
/* ===================================
*
　リセットCSS - SP
*
===================================-*/
@media screen and (max-width: 767px) {
	body {
		font-size: 1.5rem;
	}
}
/*===================================
max-width: 767px - SPここまで
===================================*/





/* ===================================
*
　★PC/SP 切り替え
*
===================================-*/
.pc{
	display: block;
}
.sp{
	display: none;
}
.flex{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
main{
	padding-top: 65px;
}
a.a_none{
        pointer-events: none;
        cursor: none;
}
/* ===================================
*
　PC/SP 切り替え - SP
*
===================================-*/
@media screen and (max-width: 767px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
    .flex{
        display: block;
    }
	main{
		padding-top: 80px;
	}
}
/*===================================
max-width: 767px - SPここまで
===================================*/



/* ===================================
*
　header
*
===================================-*/
/*-----------------------------
PC時header
-----------------------------*/
@media only screen and (min-width: 768px){
    header{
		height: 65px;
		width: 100%;
		min-width: 100%;
		position: fixed;
		z-index: 1000;
		background: #FFFBC7;
                top: 0;
    }
	header .inner{
        height: 65px;
        position: relative;
        width: 100%;
        margin: 0 auto;
	}
    header .logo{
		width: 150px;
		display: block;
		position: absolute;
		top: 50%;
		left: 20px;
		-webkit-transform: translate(0%, -50%);
		transform: translate(0%, -50%);
    }
	header .logo img{
        width: 100%;
    }
	header nav{
        background: #fffbc7;
	}
    .menu-trigger,
    .menu-trigger span {
      display: inline-block;
      transition: all .4s;
      box-sizing: border-box;
    }
    .menu-trigger{
        position: absolute;
        width: 28px;
        height: 26px;
        top: 25%;
        right: 20px;
    }
    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #3E3A39;
    }
    .menu-trigger span:nth-of-type(1) {
      top: 9px;
    }
    .menu-trigger span:nth-of-type(2) {
      top: 16px;
    }
    .menu-trigger span:nth-of-type(3) {
      top: 24px;
    }

    /* hamburger open/close */
    .menu-trigger.active span:nth-of-type(1) {
      -webkit-transform: translateY(10px) rotate(-45deg);
      transform: translateY(10px) rotate(-45deg);
    }
    .menu-trigger.active span:nth-of-type(2) {
      opacity: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
      -webkit-transform: translateY(-10px) rotate(45deg);
      transform: translateY(-10px) rotate(45deg);
		        top: 29px;
    }
    header nav ul.global_nav {
        position: relative;
        height: 100vh;
		display: none;
		        overflow: scroll;
        scrollbar-width: none;
    }
    header nav ul .dropdown {
        display: block;
        width: 100%;
    }
	header nav ul > li {
		    color: #3E3A39;
	}
	header nav ul > li a{
           color: #3E3A39;
        text-decoration: none;
        font-size: 1.3rem;
	}
    header nav ul > li a.none{
        pointer-events: none;
        cursor: none;
    }
    header nav ul > li em{
           color: #3E3A39;
    text-decoration: none;
    font-size: 1.3rem;
    font-style: normal;   
        pointer-events: none;
    cursor: none;
    }
	header nav ul > li .ttl1{
		    color: #3E3A39;
        text-decoration: none;
        font-size: 1.5rem;
		font-weight: 600;
pointer-events: none;
    cursor: none;
	}
	header nav .sub1{
		margin-top: 0px;
	}
	header nav .sub2{
		width: 100%;
                margin-left: 14px;
	}
	header nav li.box{
        position: absolute;
        width: 25%;
	}
	header nav li.box1{
		left: 5%;
		top: 5%;
	}
	header nav li.box2{
		left: 24%;
		top: 5%;
	}
	header nav li.box3{
        left: 44%;
        top: 5%;
	}
	header nav li.box4{
        left: 5%;
        top: 480px;
	}
	header nav li.box5{
        left: 68%;
        top: 5%;
	}
	header nav li.box6{
        left: 64%;
        top: 480px;
	}
	header nav li.box7{
        padding-bottom: 100px;
        left: 5%;
        top: 45%;
	}
}/*PC時header*/


/*-----------------------------
SP時header
-----------------------------*/
@media only screen and (max-width: 767px){
    header{
		height: 80px;
		width: 100%;
		min-width: 100%;
		padding: 2% 3% 3%;
		position: fixed;
		z-index: 1000;
		        background: #fffbc7;
                top: 0;
    }
    header .logo{
        margin-top: 10px;
        width: 160px;
        display: block;
    }
	header .logo img{
        width: 100%;
    }
    .menu-trigger,
    .menu-trigger span {
      display: inline-block;
      transition: all .4s;
      box-sizing: border-box;
    }
    .menu-trigger{
        position: absolute;
        width: 28px;
        height: 32px;
        top: 28%;
        right: 5%;
    }
    .menu-trigger span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1px;
        background-color: #3e3a39;
    }
    .menu-trigger span:nth-of-type(1) {
      top: 8px;
    }
    .menu-trigger span:nth-of-type(2) {
      top: 16px;
    }
    .menu-trigger span:nth-of-type(3) {
      top: 24px;
    }

    /* hamburger open/close */
    .menu-trigger.active span:nth-of-type(1) {
      -webkit-transform: translateY(10px) rotate(-45deg);
      transform: translateY(10px) rotate(-45deg);
    }
    .menu-trigger.active span:nth-of-type(2) {
      opacity: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
      -webkit-transform: translateY(-10px) rotate(45deg);
      transform: translateY(-10px) rotate(45deg);
		        top: 28px;
    }
    header nav .gnav{
        display: none;
        height: calc(100vh - 130px);
        overflow-y: scroll;
    -webkit-overflow-scrolling: touch; 
    }
    header nav ul {
		position: absolute;
        top: 80px;
        left: 0;
        z-index: 1000;
        width: 100%;
        
    }
    header nav ul.global_nav {
		display: none;
    }
    header nav ul > li {
		display: block;
		text-align: center;
		background: #fffbc7;
		height: initial;
		padding-left: 0;
    }
    header nav ul > li a {
        display: block;
        color: #3e3a39;
        padding: 10px 5%;
        text-decoration: none;
        text-align: left;
    }
    header nav ul > li em{
        text-decoration: none;
        font-style: normal;
        text-align: left;
        display: block;
        padding-left: 19px;
        color:#3e3a39;
        padding: 5px 5%;
        font-size: 1.4rem;
    }
    header nav ul .dropdown {
    display: none;
    }
    header nav ul .group {
    display: none;
    }
	header nav ul > li {
		position: relative;
	}

	.add_dropdown{
		position: absolute;
		width: 50px;
		height: 100%;
		top: 0;
		right: 0;
		z-index: 10;
		cursor: pointer;
	}

	.add_dropdown:before{
		content: "";
		position: absolute;
		width: 21px;
		height: 1px;
		top: 21px;
		right: 13px;
		margin: auto;
		background: #3e3a39;
	}

	.add_dropdown:after{
		content: "";
		position: absolute;
		width: 1px;
		height: 21px;
		top: 11px;
		right: 23px;
		margin: auto;
		background: #3e3a39;
	}
	.add_dropdown.active:after{
		display: none;
	}
	header nav ul .dropdown{
		position: relative;
		top: 0;
        left: 0;
        width:100%;
	}
	header nav ul .dropdown li{
        position: relative;
        top: 0;
        background: #fffbc7;
        margin: 0;
	}
	header nav ul .dropdown li:last-child{
		border-bottom: none;
	}
	header nav ul .dropdown li a{
        color: #3e3a39;
        padding: 5px 5%;
        font-size: 1.4rem;
	}
	header .sub1{
		margin-top: 10px;
	}
    header nav .sub2{
           padding-left: 15px;
    }
    header nav .sub2 a{
               color: #878787;
    }
}/*SP時header*/






/* ===================================
*
　★footer
*
===================================-*/
footer{
    background: #fffbc7;
}
footer .address{
    background: #fff;
}
footer .inner{
    width: 90%;
    max-width: 915px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer .sns{
    margin-top: 30px;
    margin-bottom: 7px;
}
footer .sns a{
    width: 24px;
    display: block;
    margin-right: 15px;
}
footer .sns a:nth-child(2){
    width: 26px;	
}
footer .sns a:nth-child(3){
	    width: 26px;
}
footer .sns a img{
	width: 100%;
}
footer .menu li{
	margin-right: 20px;
}
footer .menu li a{
    color: #231815;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
}
footer .address p{
    font-size: 1rem;
    color: #231815;
    font-weight: 600;
    line-height: 1.6;
    font-family: '游ゴシック', 'YuGothic', 'Noto Sans JP', sans-serif;
}
footer .address .map img{
	width: 48px;
	margin-left: 3px;
}
footer .logo{
	display: block;
	width: 227px;
	margin-right: 40px;
}
footer .footer_bottom{
    padding: 0;
    border-top: 0.5px solid #eaeaea30;
}
footer .footer_bottom a{
    width: 137px;
}
footer .footer_bottom a img{
	width: 100%;
}
footer .logo_area{
	align-items: center;
    margin-left: -11px;
}
footer .logo_area a{
	margin-right: 30px;
}
footer .copy{
	font-size: 1.2rem;
	color: #919191;
	font-weight: 400;
	display: inline;
}
footer .footer_bottom .inner{
	justify-content: space-between;
	align-items: center;
}
/* ===================================
*
　footer - SP
*
===================================-*/
@media only screen and (max-width: 767px){
	footer .sns{
        display: flex;
        margin: 10% 0;
	}
	footer .logo{
		margin-bottom: 5%;
		width: 187px;
		margin-right: 0px;
	}
	footer .address p{
		font-size: 1.3rem;
	}
	footer a{
		color: #fff;
		text-decoration: none;
	}
	footer .map{
		position: relative;
		top: -4px;
	}
	footer .inner{
		padding: 10% 0;
	}
	footer .footer_bottom a{
        width: 60%;
        display: block;
        margin-bottom: 10px;
}
	footer .logo_area{
		margin: 0;
	}
	footer .copy{
		    margin: 30px 0;
    display: block;
    padding-bottom: 30px;
	}
}/*===================================
max-width: 767px - SPここまで
===================================*/




