@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@300;400;500;700&display=swap');
body {
  font-size: 16px;
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: 500;
}
ul li {
  list-style: none;
}
p {
  word-break: break-all;
}
.dp-container a, .main-wrap a {
    color: #000;
}
.material-icons {
	 font-family: 'Material Icons';
	 font-weight: normal;
	 font-style: normal;
	 font-size: 24px;  /* Preferred icon size */
	 display: inline-block;
	 line-height: 1;
	 text-transform: none;
	 letter-spacing: normal;
	 word-wrap: normal;
	 white-space: nowrap;
	 direction: ltr;

	 /* Support for all WebKit browsers. */
	 -webkit-font-smoothing: antialiased;
	 /* Support for Safari and Chrome. */
	 text-rendering: optimizeLegibility;

	 /* Support for Firefox. */
	 -moz-osx-font-smoothing: grayscale;

	 /* Support for IE. */
	 font-feature-settings: 'liga';
}
header {
  width: 100%;
	margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
	justify-content: space-between;
  background-color: #ffffff;
	position: relative;
	z-index: 1000;
}

@keyframes headerShow{
	0%{
		transform: translateY(-100%);
		opacity: 0;
	}
	100%{
		transform: translateY(0%);
		opacity: 1;
	}
}

header.fixed {
	position: fixed;
	top: 0;
	animation-name: headerShow;
	animation-duration: .3s;
	animation-iteration-count: 1;
	transform: translateY(0%);
	opacity: 1;
}
header .logo {
  padding: 22px;
  height: auto;
	transition: .3s;
	cursor: pointer;
}
header .logo:hover {
	opacity: 0.65;
}
header .catch {
  margin-right: auto;
  color: #804e20;
  font-weight: bold;
}

header .header_link {
  font-weight: bold;
}

header .header_link a {
  margin-right: 30px;
  color: #804e20;
	font-size: 14px;
	font-weight: 500;
	position: relative;
}
header .header_link a::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 0;
	transform: translateY(4px);
	background: #804e20;
	transition: width 0.6s;	
}
header .header_link a:hover::before {
	width: 100%;
}

header .nav_button {
  margin-left: 0;
}

@media screen and (max-width:1280px){
	header {
		height: 80px;
	}
	header .header_link a,
	header .catch{
		font-size: 14px;
	}
	header .header_link a{
		margin-right: 24px;
	}
}
@media screen and (max-width:1024px){
	header .header_link{
		display: none;
	}
}

.fixed {
  position: fixed;
}

.rl {
  flex-direction: row-reverse;
}

.lr {
  flex-direction: row;
}



/*** メニュー ***/

.nav_button {
  display: block;
  position: relative;
	width: 36px;
	height: 28px;
  margin-right: 34px;
}
.nav_button i {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #7d4620;
  position: absolute;
  transition: .3s;
}
.nav_button i:nth-child(1) {
  top: 0;
}
.nav_button i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.nav_button i:nth-child(3) {
  bottom: 0;
}

.nav_button.show i:nth-child(1) {
  top: 0;
  bottom: 0;
  margin: auto;

  transform: rotate(-45deg);
}
.nav_button.show i:nth-child(2) {
  opacity: 0;
}
.nav_button.show i:nth-child(3) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}

.gnavi {
	width: min(80%,500px);
  position: absolute;
  top: 80px;
  right: 0;
  margin-left: 880px;
  bottom: 0;
  opacity: 0;
	z-index: 999;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
}

.gnavi.show {
  opacity: 1;
  visibility: visible;
	position: fixed;
}

.gnavi .menu li {
  display: block;
  width: 100%;
  height: 3.2em;
  line-height: 3.2em;
  text-align: center;
  background-color: #f57398;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.gnavi .menu li a{
	color: #fff;
	transition: .3s;
}
.gnavi .menu li a:hover{
	opacity: .65;
}
.gnavi .menu li:last-child {
	border-bottom: none;
}
.gnavi .menu img {
  vertical-align: middle;
  margin-left: 14px;
  margin-right: 14px;
	display: inline;
	width: 24px;
}

@media screen and (max-width:1280px){
	.nav_button{
    width: 40px;
    height: 32px;
	}
	.nav_button i{
		height: 4px;
	}
}

@media screen and (max-width:1024px){
	.nav_button{
    width: 36px;
    height: 30px;
	}
	.nav_button i{
		height: 3px;
	}
}

/*** フッター ***/
footer .footer__img{
	background: #f7f2ec;
	border-radius: 80px 0 0 0;
  padding-top: min(4%,80px);
}
footer .footer__img img{
	display: block;
	width: min(80%,1024px);
	margin: 0 auto;
}
footer #team_hope {
  display: block;
  margin: 100px auto 0;
}

footer p:first-of-type {
  margin: 1em 60px;
  line-height: 1.5em;
  font-size: 14px;
}

footer #copy {
  width: 100%;
}

footer #sns {
  background-color: #f5a9c0;
  display: flex;
  justify-content: center;
  column-gap: 22px;
  padding: 57px;
}
footer #sns li{
	transform: rotateY(0deg);
	transition: .3s;
}
footer #sns li:hover{
	transform: rotateY(180deg);
}
footer#footer #footer_menu_ul {
  background-color: #f58bab;
  color: #ffffff;
  padding: 2em 60px 1em;
  line-height: 2em;
}

footer#footer #footer_menu_ul > li.menu-item-has-children{
    float: left;
    text-align: left;
    width: 23%;
    margin: 16px 1%;
}
footer#footer #footer_menu_ul > li.menu-item-has-children > a{
	font-size: 19px;
	font-weight: bold;
	display: block;
	border-bottom: 1px solid #f5a9c0;
	color: #fff;
}
footer#footer #footer_menu_ul > li.menu-item-has-children{
    text-decoration: none;
}
footer#footer #footer_menu_ul > li.menu-item-has-children > ul{
  margin-top: 12px;
}
footer#footer #footer_menu_ul > li.menu-item-has-children > ul,
footer#footer #footer_menu_ul > li.menu-item-has-children > ul > li > ul {
  margin-left: 16px;
}
footer#footer #footer_menu_ul > li.menu-item-has-children > ul > li,
footer#footer #footer_menu_ul > li.menu-item-has-children > ul > li > ul > li{
    width: 100%;
    margin-top: 6px;
    text-decoration: none;
    position: relative;
}
footer#footer #footer_menu_ul > li.menu-item-has-children > ul > li::before, 
footer#footer #footer_menu_ul > li.menu-item-has-children > ul > li > ul > li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: solid 2px #febd4d;
    border-right: solid 2px #febd4d;
    transform: rotate(45deg) translate(0,0);
    position: absolute;
    top: 8px;
    left: -12px;
	transition: .3s;
}
footer#footer #footer_menu_ul > li.menu-item-has-children > ul > li:hover::before, 
footer#footer #footer_menu_ul > li.menu-item-has-children > ul > li > ul > li:hover::before {
	left: -18px;
}
footer#footer #footer_menu_ul > li.menu-item-has-children > ul > li a, 
footer#footer #footer_menu_ul > li.menu-item-has-children > ul > li > ul > li a{
	color: #fff;
  font-size: 14px;
}
footer#footer #footer_menu_ul > li.menu-item-has-children > ul > li a span, 
footer#footer #footer_menu_ul > li.menu-item-has-children > ul > li > ul > li a span{
	font-weight: 500;
}
footer#footer #footer_menu_ul{
  padding: 30px 40px 400px;
	border-top: none;
}
footer .copyright {
  background-color: #f58bab;
  text-align: center;
  color: #ffffff;
  padding:2em 0;
  line-height: 1.5em;
  font-size: 14px;
}
footer .copyright a{
	color: #fff;
}
.pagetop {
    position: fixed;
    bottom: 24px;
    right: 10px;
    display: inline-block;
    width: auto;
    height: auto;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    z-index: 50;
}
.pagetop::after {
  display: none;
}
@media screen and (max-width:1180px){
  footer#footer #footer_menu_ul > li.menu-item-has-children{
    width: 25%;
		margin: 0;

  }
  footer#footer #footer_menu_ul{
    padding: 30px 40px 420px;
  }
}


