html {
	font-size: 625%;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: .15rem;
	background: #FFF;
	color: #232323;
	letter-spacing: 0.08em;
	line-height: 2;
}

a:hover {
	opacity: 0.7;
}

main {
	width: 100%;
	overflow: hidden;
}

.sp_only {
	display: none;
}

.center1000 {
	margin: 0 auto;
	max-width: 1000px;
}

.center875 {
	margin: 0 auto;
	max-width: 875px;
}

.tri {
	width: 0;
	height: 0;
	border-left: 6px solid #797069;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	margin-right: 7px;
}

.tri_white {
	width: 0;
	height: 0;
	border-left: 6px solid #FFF;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	margin-right: 7px;
}

.tri_blue {
	width: 0;
	height: 0;
	border-left: 6px solid #657491;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	margin-right: 15px;
}


/*ヘッダー*/

header {
	position: fixed;
	z-index: 100;
}

#header {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	box-sizing: border-box;
}

.header_not_top_wrap {
	flex: 0 1 auto;
	width: calc(100% - 54px);
}

.header_not_top {
	position: relative;
	padding: 3px 20px 3px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.85);
	height: 54px;
	box-sizing: border-box;
}

.header_not_top h1 {
	flex: 0 1 auto;
	width: 214px;
}

.header_not_top img {
	width: 100%;
}

.header_not_top img.icon_mail {
	position: absolute;
	width: 36px;
	right: 106px;
	top: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.header_not_top img.icon_insta {
	position: absolute;
	width: 26px;
	right: 59px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.header_not_top img.icon_facebook {
	position: absolute;
	width: 26px;
	right: 13px;
	top: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.header_icon_wrap {
	flex: 0 1 auto;
	width: 72px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_icon_wrap a {
	flex: 0 1 auto;
	width: 35%;
}

.header_icon_wrap img {
	width: 100%;
}

.hamburger_btn {
	flex: 0 1 auto;
	display: block;
	position: relative;
	cursor: pointer;
	width: 54px;
	height: 54px;
	background-color: rgba(255, 255, 255, 0.85);
	display:none;
}

.hamburger_btn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 2px;
	border-radius: 2px;
	background: #4b3f39;
	width: 45%;
}

.hamburger_btn span:nth-of-type(1) {
	top: 15px;
}

.hamburger_btn span:nth-of-type(2) {
	top: 25px;
}

.hamburger_btn span:nth-of-type(3) {
	top: 35px;
}

.mm-navbar__title {
	padding-top: 15px;
	padding-bottom: 15px;
}

.mm-navbar__title>span {
	font-size: .14rem;
	font-family: 'Poppins', sans-serif;
	color: #333333;
	letter-spacing: .02rem;
	font-weight: 500;
}

.mm-btn {}

.mm-panels>.mm-panel,
.mm-navbar_sticky,
.mm-listview {
	background-color: #e6e6e6;
}

.mm-listitem__text {
	padding-left: 35px;
	position: relative;
	color: #333333!important;
	font-size: .14rem;
}

.mm-listitem__text div {
	color: #a09a96;
	display: inline-block;
}

.mm-listitem__text::before {
	border: none;
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background-image: url(/wp-content/themes/original/images/menu_arrow.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 51%;
	left: 15px;
	transform: translate(0, -50%);
}


/*
.mm-btn_next:after {
 display: none;
}
*/

.mm-listitem_m_bottom {
	margin-bottom: 20px;
}

.mm-listitem:after {
	display: none;
}

.mm-btn_next:after {
	top: 2px;
}

.mm-btn:before:not(.mm-listitem__text::before) {
	border: 2px solid #9e9e9e;
}

.mm-menu a {
	padding: 9px 0 9px 38px;
}

.mm-menu_offcanvas {
	max-width: 328px;
}


/*inview*/

.fadein,
.fadein2 {
	opacity: 0.3;
	transform: translateY(30px);
}

.fadein3 {
	opacity: 0;
	transition: 3.3s cubic-bezier(.19, 1, .22, 1);
}


/*
.fadein p {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 3.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.fadein_on p{
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
*/

.fadeup {
	opacity: 0;
	transform: translateY(.15rem);
}

.fadein_on {
	transition: all 0.7s ease-in;
	opacity: 1 !important;
	transform: translate(0);
}

.fadein2_on {
	transition: all 0.8s ease-in;
	opacity: 1 !important;
}

.fadein3_on {
	transition: 3.3s cubic-bezier(.19, 1, .22, 1);
	opacity: 1 !important;
}

.fadeinLR {
	opacity: 0;
	transform: translateX(0px);
	transition: all 1.2s linear;
}

.fadeinRL {
	opacity: 0;
	transform: translateX(0px);
	transition: all 1.2s linear;
}

.fadein_reset {
	transform: translate(0);
	opacity: 1 !important;
}

.fadeup_on {
	transition: all 1.2s ease-in;
	transform: translateY(0);
	opacity: 1 !important;
}

.fadeinLR_on {
	transition: all 1.2s ease-in;
	transform: translateY(0);
	opacity: 1 !important;
}

.fadeinRL_on {
	transition: all 1.2s ease-in;
	transform: translateY(0);
	opacity: 1 !important;
}

.link_wrap {
	margin-top: 53px;
	display: flex;
	justify-content: space-between;
}

.link_wrap a {
	padding: 6px 0 7px;
	flex: 0 1 auto;
	width: 47%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #808080;
	color: #fff;
	text-decoration: none;
	text-align: center;
	font-size: .16rem;
	font-weight: 400;
	box-sizing: border-box;
	box-shadow: 3px 3px 0 #e6e6e6;
	position: relative;
	letter-spacing: 0;
}
@media screen and (min-width: 900px){
	.link_wrap a.footer_agency{
		display:none;
	}
}
.link_wrap span {
	margin-right: 10px;
	flex: 0 1 auto;
	width: fit-content;
	position: absolute;
	left: 20px;
}


/*footer*/

footer {
	margin-top: 75px;
	border-top: solid 1px #a0a0a0;
}

.footer_top {
    padding-top: 46px;
    padding-bottom: 20px;
}
.footer_menu {
	display: flex;
	justify-content: space-between;
	font-size: .14rem;
}

.footer_menu2 {
	display: flex;
	justify-content: space-between;
	margin: 0 -10px;
}

.footer_top ul {
	margin-bottom: 15px;
	list-style: none;
	font-size: .14rem;
}

.footer_top li {
	flex: 0 1 auto;
	width: fit-content;
	line-height: 1.1;
	margin-bottom: 18px;
}

.footer_menu2 span {
	color: #808080;
}


/*
.footer_top li:not(:last-child){
	margin-right: 40px;
}
*/

.footer_top a {
	text-decoration: none;
	color: #232323;
	font-size: .14rem;
	letter-spacing: 0;
}

.footer_top>span {
	margin: 11px auto 4px;
	display: block;
	text-align: center;
	color: #808080;
}

.footer_bg {
	/*border-top: solid 1px #a0a0a0;*/
	background-color: #f2f2f2;
}

.footer_bottom {
	padding: 25px 0 105px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.footer_left {
	flex: 0 1 auto;
	width: 50%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.footer_left img {
	flex: 0 1 auto;
	width: 27%;
}

.footer_left p {
	flex: 0 1 auto;
	width: 65%;
	font-size: .14rem;
	line-height: 1.5;
}

.footer_right {
	flex: 0 1 auto;
	width: 45%;
}

.footer_right img {
	width: 100%;
}

.footer_icon_wrap {
	margin: 0 0 20px auto;
	max-width: 80px;
	display: flex;
	justify-content: space-between;
}
.footer_icon_wrap.sp_only{
	display: none;
}

.footer_icon_wrap a {
	flex: 0 1 auto;
	width: 40%;
}

.footer_banner_wrap {
	display: flex;
	justify-content: space-between;
}

.footer_banner_wrap a {
	flex: 0 1 auto;
	width: 48%;
}

footer small {
	padding-bottom: 10px;
	display: block;
	text-align: center;
	font-size: .12rem;
}

@media screen and (max-width: 1080px) {
	.center1000 {
		width: calc(100% - 60px);
	}
}

@media screen and (max-width: 955px) {
	.center875 {
		width: calc(100% - 60px);
	}
}


/*スマホ*/

@media screen and (max-width: 899px) {
	html {
		font-size: 580%;
	}
	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
	html {
		font-size: 580%;
	}
	.top_intro,
	.center875 {
		width: calc(100% - 60px);
	}
	.header_insta,
	.header_facebook {
		display: none;
	}
	.header_not_top img.icon_mail {
		right: 3px;
		width: 33px;
	}
	.link_wrap a {
		letter-spacing: 0;
	}
	footer {
		margin-top: 65px;
		border-top: none;
	}
	.footer_bg{
		background-color: #f2f2f1;
	}
	.footer_top {
		display: none;
	}
	.footer_bottom,
	.footer_left,
	.footer_right {
		flex-direction: column;
		align-items: center;
	}
	.footer_bottom {
		padding: 50px 0 13px;
	}
	.footer_left img {
		width: 44%;
		max-width: 240px;
	}
	.footer_left p {
		margin-top: 43px;
		width: 100%;
		text-align: center;
		line-height: .24rem;
	}
	.footer_left,
	.footer_right {
		width: 100%;
	}
	.footer_icon_wrap {
		margin: 38px auto 0;
	}
	.footer_banner_wrap {
		flex-direction: column;
		align-items: center;
	}
	.footer_banner_wrap a {
		width: 60%;
	}
	main {
		margin-bottom: 50px;
	}
	.mm-menu a {
		padding: 7px 10px 7px 35px;
	}
	.listitem_m_bottom {
		margin-bottom: 14px;
	}
	.footer_banner_wrap{
		display: none;
	}
	.link_wrap span{
		left: auto;
		right: 20px;
	}
	.link_wrap a{
		margin-bottom: 43px;
		min-height: 71px;
	}
	footer small {
		font-size: .1rem;
	}
	.link_wrap .footer_agency {
		border: solid 2px #4b3f39;
		background-color: #fff;
		font-size: .13rem;
		text-align: center;
		color: #4b3f39;
		flex-direction: column;
		box-shadow: none;
		margin-bottom: 0;
	    padding: 3px 0 8px;
	}
	.link_wrap .footer_agency_bold{
		display: block;
		font-size:.24rem;
		font-weight: 700;
		text-align: center;
		width: 100%;
		position: static;
	}
	.footer_icon_wrap.sp_only{
		display: flex;
	}
}



.effect-accordion-menu {
	margin: 120px auto 0;
	max-width: 300px;
	width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.effect-accordion-menu .harf{
    width: 47%;
}

/* +繝槭�繧ｯ縺ｨ-繝槭�繧ｯ 縺ｯ縺薙％縺九ｉ*/


.effect-accordion-menu__contents {
  display: none;
  margin-bottom: 22px;
}

/* 竊灘柑譫� */

/* .hamburger {
  display: none;
} */
.hamburger {
    background-color: rgba(255, 255, 255, 0.85);
    width: 54px;
}

#toggle {
  position: sticky;
    top: 17px;
    right: 17px;
}

#toggle-box {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  margin:0 auto;
}


#toggle-box>span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #4b3f39;
  position: absolute;
  transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box>span:nth-child(1) {
  top: 0;
}

#toggle-box>span:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}

#toggle-box>span:nth-child(3) {
  bottom: 0;
}

#toggle {
  z-index: 1000;
}

#main {
  position: relative;
  z-index: 990;
}

#nav-content {
  z-index: 900;
  overflow: auto;
  width: 375px;
  height: 100%;
  background-color: #e6e6e6;
  color: #ffffff;
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#nav-content ul {
  list-style: none;
}

#nav-content a {
  display: block;
  color: #333333;
  text-decoration: none;
  transition: opacity .6s ease;
}

.nav-content-icon-instagram img {
    width: 48px;
}
.nav-content-icon-facebook img {
    width: 23px;
}
.nav-content-icon-instagram {
    top: 13px;
    left: 15px;
}
.nav-content-icon-facebook {
    top: 25px;
    left: 72px;
}
.js-accordion-move{
  padding: 17px 0;
}

#nav-content a:hover {
  opacity: 0.6;
}

.is-open {
  overflow: hidden;
}

.is-open #toggle-box>span {
  background: #3e3e3e;
  /* width: 100%; */
}

.is-open #toggle-box>span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
  width: 100%;
}

.is-open #toggle-box>span:nth-child(3) {
  width: 0;
}

.is-open #toggle-box>span:nth-child(2) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
  width: 100%;
}

.is-open #nav-content {
  z-index: 999;
  transform: translateX(0);
}



#nav-content ul li:nth-child(1) {
  margin-top: 130px;
}

#nav-content li a{
  font-weight: 400;
  margin-bottom: 35px;
  }

#nav-content nav{
  width: 80%;
  margin: 0 auto;
  text-align: left;
}


#nav-content li:nth-last-of-type(1){
margin-bottom: 35px;
}



/* 繧｢繧ｳ繝ｼ繝�ぅ繧ｪ繝ｳ繝｡繝九Η繝ｼ 縺ｯ縺薙％縺九ｉ*/
.effect-accordion-menu {
    margin: 63px auto 70px;
    max-width: 300px;
    width: 100%;
}
/* +繝槭�繧ｯ縺ｨ-繝槭�繧ｯ 縺ｯ縺薙％縺九ｉ*/
.effect-accordion-menu__title{
  cursor: pointer;
  position: relative;
  padding: 17px 0;
}

.effect-accordion-menu__title:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 13px;
  width: 15px;
  height: 1px;
  background: #3e3e3e;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.effect-accordion-menu__title:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 13px;
  height: 1px;
  width: 15px;
  background: #3e3e3e;
  transition: all .3s ease-in-out;
}

.effect-accordion-menu__title.open:before {
  transform: rotate(180deg);
}
.effect-accordion-menu__title.open:after {
  opacity: 0;
}

.effect-accordion-menu__contents__series img{
	width:100%;
	display:none;
}

.effect-accordion-menu__contents {
  display: none;
  margin-bottom: 22px;
}

.effect-accordion-menu__contents a{
  margin-bottom: 20px;
}


.effect-accordion-menu__list {
    border-bottom: solid 1px #333333;
    position: relative;
    width: 100%;
}

/*.effect-accordion-menu__list::before {
    border: none;
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(/wp-content/themes/original/images/menu_arrow.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 51%;
    left: -10px;
    transform: translate(0, -50%);
	}*/


.effect-accordion__first{
margin-left: 10px;
color: #333333;
line-height: 1.4;
}

.effect-accordion__first span {
    color: #a09a96;
    font-size: .14rem;
    margin-top: 4px;
    display: block;
}

.effect-accordion__second{
  margin-left: 23px;
}

.effect-accordion__third{
  margin-left: 38px;
}

/* 繧｢繧ｳ繝ｼ繝�ぅ繧ｪ繝ｳ繝｡繝九Η繝ｼ 縺ｯ縺薙％縺ｾ縺ｧ*/

.effect-accordion__group a{
  margin-left: 10px;
}

.effect-accordion__group a:nth-of-type(1) {
    margin-left: 23px;
    margin-bottom: 13px;
    font-size: .14rem;
    font-weight: 400;
}


.effect-accordion__group a:nth-of-type(n+2){
	margin-left: 38px;
}

.icon-content{
	display:flex;
	align-items: center;
	position: absolute;
	margin:auto;
	top:20px;
	left:25px;
}

.icon-content a{
	margin-right: 22px;
}

.icon-content .icon_mail {
    width: 36px;
}

.icon-content .icon_insta {
    width: 26px;
}
.icon-content .icon_facebook {
    width: 26px;
}

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

#nav-content {
  width: 100%;
}

}
