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

* common.css

*********************************************************************
*/

body {
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	font-size: 13px;
	line-height: 2;
	color: #000000;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	word-break: break-all;
}
body.no-scroll {
	overflow-y: hidden;
	touch-action: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
iframe {
  max-width:100%;
}
a {
	color: #000000;
	text-decoration: none;
}
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
	outline: none;
}
#site a,
#site button,
#site .hover {
  transition: all 300ms 0s ease;
}
#site a:hover,
#site button:hover,
#site .hover:hover {
	opacity: 0.6;
}
.sp-area {
	display: none;
}
.sp-area-inline {
	display: none;
}
.clearfix:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0;
	clear: both;
}
/* WinIE7 only */
*:first-child+html .clearfix {
	height: 1%;
}
/* WinIE6 and below */
/* hide \*/
* html .clearfix {
	height: 1%;
}
#window-size-check {
	display: block;
}
@media screen and (min-width:641px) {
.pc-area {
	display: block;
}
.pc-area-inline {
	display: inline-block;
}
.sp-area,
.sp-area-inline	{
	display: none !important;
}
}
@media screen and (max-width:640px) {
body {
}
.pc-area,
.pc-area-inline {
	display: none !important;
}
.sp-area	{
	display: block;
}
.sp-area-inline	{
	display: inline-block;
}
#window-size-check {
	display: none;
}
}



/* ///////////////////////////////////////////////////////////////////

#site

/////////////////////////////////////////////////////////////////// */
#site {
	overflow: clip;
}
.global-inner {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 1000px;
	min-width: 1000px;
}
.global-inner-02 {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 600px;
	min-width: 600px;
}
.global-inner-03 {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 450px;
	min-width: 450px;
}
.global-inner-04 {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 700px;
	min-width: 700px;
}
.global-inner-05 {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 750px;
	min-width: 750px;
}

@media screen and (max-width:640px) {
#site {
	min-width: auto;
}
.global-inner,
.global-inner-02,
.global-inner-03,
.global-inner-04,
.global-inner-05 {
	margin: 0 6%;
	width: auto;
	min-width: auto;
}
}


/*===================================================================
  global-header
===================================================================*/
.global-header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 10;
  transition: all 300ms ease;
}
.scroll .global-header {
	background-color: rgba(255,255,255,0.8);
	backdrop-filter: blur(12px) brightness(115%);
}
.global-header .inner {
	display: flex;
	padding: 25px 4%;
	align-items: center;
	min-width: 1000px;
}
.global-header .logo {
	width: 210px;
}
.global-header .header-right-pc {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: end;
	flex: 1;
}
.global-header .header-right-pc .nav {
	flex: 1;
}
.global-header .header-right-pc .nav ul {
	text-align: right;
}
.global-header .header-right-pc .nav ul li {
	display: inline-block;
	height: 100%;
	margin-left: 40px;
	align-items: center;
}
.global-header .header-right-pc .nav ul li a {
	display: flex;
	position: relative;
	height: 100%;
	font-weight: 600;
	color: #000000;
	opacity: 1 !important;
	align-items: center;
}
.global-header .header-right-pc .nav ul li a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	padding-right: 10px;
	background: #000000;
	opacity: 0;
	transition: all 300ms ease;
}
.global-header .header-right-pc .nav ul li a::after {
	content: "";
	position: absolute;
	right: -13px;
	bottom: 0;
	width: 5px;
	height: 5px;
	border: solid 1px #000000;
	border-radius: 100px;
	opacity: 0;
	transition: all 300ms ease;
}
.global-header .header-right-pc .nav ul li a:hover::before,
.global-header .header-right-pc .nav ul li a:hover::after {
	opacity: 1;
}
.global-header .header-right-pc .shop {
	margin-left: 60px;
	width: 150px;
	line-height: 1.2;
}
.global-header .header-right-pc .shop a {
	display: block;
	padding: 0 10px;
	background: #000000;
	border-radius: 8px;
	text-align: center;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #ffffff;
}
.global-header .header-right-pc .shop a span {
	display: inline-block;
	padding: 10px 25px 10px 0;
	background-image: url(../images/0-icon-shop.png);
	background-size: 22px auto;
	background-position: right center;
	background-repeat: no-repeat;
}
.global-header .header-right-sp {
	display: none;
}


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

.global-header .inner {
	min-width: auto;
}
.global-header .logo {
	width: 45%;
}
.global-header .header-right-pc {
	display: none;
}
.global-header .header-right-sp {
	display: flex;
	justify-content: end;
	align-items: center;
	flex: 1;
}
.global-header .header-right-sp .menu-btn {
	width: 15%;
	cursor: pointer;
}
.global-header-02 {
	display: flex;
	position: fixed;
	top: -100%;
	background: #ffffff;
}
.scroll .global-header-02 {
	top: 0;
}
	
#global-nav-sp {
	overflow: auto;
	top: 0;
	left: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	backdrop-filter: blur(12px) brightness(115%);
	z-index: -1;
	opacity: 0;
  transition: all 300ms 0s ease;
}
#global-nav-sp.open {
	z-index: 200;
	opacity: 1;
}
#global-nav-sp .global-nav-sp-top {
	display: flex;
	margin-bottom: 40px;
	padding: 25px 4%;
	align-items: center;
}
#global-nav-sp .global-nav-sp-top .logo {
	margin: 0;
	width: 45%;
	line-height: 1;
}
#global-nav-sp .global-nav-sp-top .close-btn {
	display: flex;
	justify-content: end;
	align-items: center;
	flex: 1;
}
#global-nav-sp .global-nav-sp-top .close-btn img {
	width: 15%;
}
#global-nav-sp .global-nav-sp-main {
	padding-bottom: 50px;
}
#global-nav-sp .global-nav-sp-main .nav {
	margin-bottom: 30px;
}
#global-nav-sp .global-nav-sp-main .nav ul li {
	margin-bottom: 20px;
	text-align: center;
	font-size: 17px;
	font-weight: bold;
}
#global-nav-sp .global-nav-sp-main .nav ul li a {
	color: #ffffff;
}
#global-nav-sp .global-nav-sp-main .btn-list {
	margin-bottom: 60px;
}
#global-nav-sp .global-nav-sp-main .btn-list ul {
	text-align: center
}
#global-nav-sp .global-nav-sp-main .btn-list ul li {
	display: inline-block;
	margin: 0 1%;
	width: 38%;
}
#global-nav-sp .global-nav-sp-main .btn-list ul li a {
	display: block;
	padding: 8px 0;
	border-radius: 10px;
	background: #ffffff;
	font-weight: bold;
}
#global-nav-sp .global-nav-sp-main .btn-list ul li span {
	padding-right: 26px;
	background-position: right center;
	background-repeat: no-repeat;
}
#global-nav-sp .global-nav-sp-main .btn-list ul li.contact span {
	background-image: url(../images/0-icon-mail-02.png);
	background-size: 22px auto;
}
#global-nav-sp .global-nav-sp-main .btn-list ul li.shop span {
	background-image: url(../images/0-icon-shop-02.png);
	background-size: 22px auto;
}
#global-nav-sp .global-nav-sp-main .sns {
	margin-bottom: 15px;
	text-align: center;
}
#global-nav-sp .global-nav-sp-main .sns li {
	display: inline-block;
	margin: 0 2%;
	width: 10%;
}
#global-nav-sp .global-nav-sp-main .sub-nav {
	text-align: center;
}
#global-nav-sp .global-nav-sp-main .sub-nav li {
	display: inline-block;
	margin: 0 2%;
	font-size: 11px;
}
#global-nav-sp .global-nav-sp-main .sub-nav li a {
	color: #ffffff;
}
	
}




/*===================================================================
  contents
===================================================================*/
#contents {
}
.column2-left {
	float: left;
	width: 22%;
}
.column2-right {
	float: right;
	width: 75%;
}

@media screen and (max-width:640px) {
#contents {
	overflow: hidden;
}
.column2-left {
	float: none;
	width: auto;
}
.column2-right {
	float: none;
	width: auto;
}
}


/*===================================================================
  side
===================================================================*/
#side .side-post-area {
	margin-bottom: 30px;
	padding: 30px 30px;
	border-radius: 20px;
	background: #EFEFF6;
}
#side .side-post-area h2 {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
}
#side .side-post-area ul li a {
	display: block;
	position: relative;
	padding: 8px 15px 8px 0;
	text-decoration: none;
	border-bottom: solid 1px #C9C9D4;
	background-image: url(../images/0-icon-arrow.png);
	background-size: 11px auto;
	background-position: right center;
	background-repeat: no-repeat;
	color: #333333;
}


/*===================================================================
  breadcrumb
===================================================================*/
.breadcrumb-area {
	padding: 20px 4% 50px;
	text-align: right;
	font-size: 11px;
}
.breadcrumb-area > span {
	position: relative;
	margin-left: 10px;
	padding-left: 20px;
}
.breadcrumb-area > span:first-child {
	margin: 0;
	padding: 0;
}
.breadcrumb-area > span::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 6px;
	height: 2px;
	background: #A69F9F;
}
.breadcrumb-area > span:first-child::before {
	display: none;
}
.breadcrumb-area span {
	color: #000000;
}
.breadcrumb-area a {
	text-decoration: none !important;
}
.breadcrumb-area a span {
	font-weight: 600;
	color: #9B9BAB;
}

@media screen and (max-width:640px) {
.breadcrumb-area {
}
}


/*===================================================================
  main
===================================================================*/
.entry-content > *:last-child {
	padding-bottom: 150px;
}
.entry-content.entry-content-02 {
	background-color: #F8F8FF;
}
.entry-content p {
	margin-bottom: 20px;
	line-height: 2;
}
.entry-content a {
	color: #9B9BAB;
	text-decoration: underline;
}
.entry-content a:hover {
}
.link-list-area {
	margin: 100px 0;
}
.link-list-area h2 {
	margin-bottom: 30px;
	font-size: 36px;
	text-align: center;
	color: #028a2b;
}
.link-list-area ul {
	text-align: center;
}
.link-list-area ul li {
	display: inline-block;
	margin: 0 10px 20px;
	width: 47%
}
.link-list-area ul li.w-max {
	width: 98%
}

@media screen and (max-width:640px) {
.entry-content > *:last-child {
	padding-bottom: 100px;
}
}




/* ///////////////////////////////////////////////////////////////////

#global-footer

/////////////////////////////////////////////////////////////////// */

#global-footer {
	padding: 120px 0 30px;
	background: #000000;
	color: #ffffff;
}
#global-footer a {
	color: #ffffff;
}
#global-footer .global-footer-item-01 {
	display: flex;
	margin-bottom: 40px;
	justify-content: space-between;
}
#global-footer .global-footer-item-01 .logo {
	margin-right: 50px;
	width: 250px;
}
#global-footer .global-footer-item-01 .nav {
	flex: 1;
	text-align: right;
}
#global-footer .global-footer-item-01 .nav li {
	display: inline-block;
	margin-left: 30px;
	font-weight: bold;
}
#global-footer .global-footer-item-02 {
	display: flex;
	margin-bottom: 60px;
	align-items: end;
	flex-direction: row-reverse;
	justify-content: space-between;
}
#global-footer .global-footer-item-02 .global-footer-item-left {
	margin-right: 50px;
	width: 250px;
}
#global-footer .global-footer-item-02 .global-footer-item-right {
	flex: 1;
}
#global-footer .global-footer-item-02 .global-footer-item-right .sns {
	margin-bottom: 40px;
	text-align: right;
}
#global-footer .global-footer-item-02 .global-footer-item-right .sns li {
	display: inline-block;
	margin-left: 30px;
	width: 55px;
}
#global-footer .global-footer-item-02 .global-footer-item-right .sub-nav {
	text-align: right;
}
#global-footer .global-footer-item-02 .global-footer-item-right .sub-nav li {
	display: inline-block;
	margin-left: 30px;
}
#global-footer .copyright {
	text-align: right;
	font-size: 10px;
}


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

#global-footer {
	padding: 60px 0 100px;
}
.body-top #global-footer {
	padding-bottom: 100px;
}
#global-footer .global-footer-item-01 {
	display: block;
}
#global-footer .global-footer-item-01 .logo {
	margin: 0 0 50px;
	width: auto;
}
#global-footer .global-footer-item-01 .logo img {
	width: 75%;
}
#global-footer .global-footer-item-01 .nav {
	text-align: left;
}
#global-footer .global-footer-item-01 .nav li {
	display: block;
	margin: 0 0 15px;
}
#global-footer .global-footer-item-02 {
	display: block;
	margin-bottom: 60px;
}
#global-footer .global-footer-item-02 .global-footer-item-left {
	margin: 0;
	width: auto;
}
#global-footer .global-footer-item-02 .global-footer-item-right .sns {
	margin-bottom: 40px;
	text-align: left;
}
#global-footer .global-footer-item-02 .global-footer-item-right .sns li {
	margin: 0 6% 0px 0;
	width: 17%;
}
#global-footer .global-footer-item-02 .global-footer-item-right .sub-nav {
	margin-bottom: 20px;
	text-align: left;
}
#global-footer .global-footer-item-02 .global-footer-item-right .sub-nav li {
	margin: 0 20px 0 0px;
}
#global-footer .copyright {
	text-align: left;
}

}


/* ///////////////////////////////////////////////////////////////////

other

/////////////////////////////////////////////////////////////////// */
.link-point {
	scroll-margin-top: 120px;
}
.link-point-02 {
	margin-top: -120px;
	padding-top: 120px;
}
.effect-01 {
	position: relative;
  transition: 1s;
	opacity: 0;
}

@media screen and (max-width:640px) {
.link-point {
	scroll-margin-top: 120px;
}
}

