
/* ------------------- common ------------------- */


@font-face {
  font-family: 'NanumMyeongjo-Regular';
  src: local('NanumMyeongjo-Regular'), local('NanumMyeongjo-Regular'),
      url('/assets/font/NanumMyeongjo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'ZenOldMincho-Regular';
  src: local('ZenOldMincho-Regular'), local('ZenOldMincho-Regular'),
      url('/assets/font/ZenOldMincho-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: 'ZenOldMincho-Regular', '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  color: #3F3B3A;
  background: #F8EFE4;
  display: none;
}
body.header_menu_clicked {
	overflow: hidden;
}
body.noscroll {
  overflow: hidden;
}
img {
  width: 100%;
  height: auto;
}
a {
  color: #3F3B3A;
  text-decoration: none;
  display: block;
  transition: 0.5s;
}
a:hover {
  color: #264653;
}
.anchor {
  position: relative;
}
.anchor > a {
  position: absolute;
  top: -100px;
  left: 0;
}



.pc_show {
  display: block;
}
.sp_show {
  display: none;
}

.photo_effect {
  transform: translate3d(0, -50px, 0);
  transform: scale3D(1.07,1.07,1.07);
  opacity: 0;
}
.photo_effect_fadeIn {
  transform: translate3d(0, 0, 0);
  transform: scale3D(1.0,1.0,1.0);
  transition: 0.8s ease-in-out .5s;
  opacity: 1;
}


/* canvas */

#bg {
  position: relative;
  z-index: 2;
  overflow: hidden;
	transition: 0.9s;
}



/* ------------------- header ------------------- */

#header {
	
}
#header .header_inner {
  width: 100%;
	height: 180px;
	position: relative;
	top: 0;
	left: 0;
  z-index: 100;
  background: #F8EFE4;
  margin: 0 auto;
}
#header .header_inner h1 {
  font-family: "ZenOldMincho-Regular";
  color: #264653;
  font-size: 7rem;
  text-align: center;
  font-weight: 400;
}
#header .header_inner h2 {
  padding: 1rem 0 0.5rem;
  font-size: 1rem;
  text-align: center;
}
#header .header_menu {
	height: 60px;
	width: 60px;
  position: fixed;
	top: 30px;
	right: 20px;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 120;
}
#header .header_menu span,
#header .header_menu span:before,
#header .header_menu span:after {
  content: '';
  display: block;
  height: 2px;
  width: 36px;
  background-color: #3F3B3A;
  position: absolute;
  text-indent: -9999px;
  transition: 0.5s;
}
#header .header_menu span:before {
  bottom: 8px;
}
#header .header_menu span:after {
  top: 8px;
}
.header_menu_clicked #header .header_menu span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
.header_menu_clicked #header .header_menu span::before {
  bottom: 0;
  transform: rotate(45deg);
}
.header_menu_clicked #header .header_menu span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* -------------------------------------- SP -------------------------------------- */

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

  .pc_show {
    display: none;
  }
  .sp_show {
    display: block;
  }
  .anchor > a {
    top: 0px;
  }

  /* ------------------- header ------------------- */
  
  #header {
  	height: 120px;
  }
  #header .header_inner {
  	height: 120px;
  }
  #header .header_inner h1 {
    font-size: 4rem;
  }
  #header .header_inner h2 {
    padding: 1rem 0 0.5rem;
    font-size: 0.9rem;
  }
  #header .header_menu {
    position: fixed;
  	top: 30px;
  	right: 0px;
    display: flex;
    transition: 0.5s;
  }
  #header.is_fixed .header_menu {
  	top: 0px;
  }
}


/* ------------------- global_nav ------------------- */

#global_nav {
  width: 300px;
  position: absolute;
  top: 35px;
  left: 20px;
  z-index: 100;
  transition: 0.9s;
	overflow: hidden;
	opacity: 1;
}
.header_menu_clicked #global_nav {
  top: 0;
	opacity: 1;
}
.global_nav_inner .nav01 li {
  display: inline-block;
}

.global_nav_inner .nav01 li a {
  padding: 8px;
  font-size: 1.1rem;
  display: block;
}


/* ------------------- side_nav ------------------- */

#side_nav {
  width: 100%;
	position: fixed;
	bottom: 0;
	right: 0;
  z-index: 80;
  background: #F8EFE4;
	opacity: 0;
	transition: 0.5s;
  filter: drop-shadow(0 -4px 10px rgba(0, 0, 0, 0.1));
}
#side_nav.is_show {
	opacity: 1;
}
#side_nav .nav01 {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#side_nav .nav01 li {
  padding: 0 5px;
}
#side_nav .nav01 li a {
  padding: 10px 80px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  transition: 0.5s;
  font-family: "ZenOldMincho-Regular";
  background: #B39192;
}
#side_nav .nav01 li a:hover {
  background: #264653;
}


/* -------------------------------------- SP -------------------------------------- */

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


  /* ------------------- global_nav_inner ------------------- */
  
  .header_menu_clicked #global_nav {
    top: 0;
    opacity: 1;
  }
  #global_nav {
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: -100vh;
    right: 0;
    left: 0;
    background: #FBF7F1;
    transition: 0.9s;
    overflow: hidden;
    opacity: 0;
  }
  #global_nav.is_fixed {
    top: -100vh;
  }
  .header_menu_clicked #global_nav.is_fixed {
    top: 0;
    opacity: 1;
  }
  #global_nav .global_nav_inner {
  	height: 95svh;
    padding-top: 20svh;
  }
  .global_nav_inner .nav01 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    position: relative;
    z-index: 120;
  }
  .global_nav_inner .nav01 li {
    width: 100%;
  }
  .global_nav_inner .nav01 li a {
    width: 100%;
    padding: 4dvh 0;
    font-size: 1.4rem;
    display: block;
    text-align: center;
    font-size: 1.2rem;
  }


  /* ------------------- side_nav ------------------- */

  #side_nav .nav01 {
    padding: 10px 10px 10px;
  }
  #side_nav .nav01 li {
    width: 100%;
  }
  #side_nav .nav01 li a {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    display: block;
    text-align: center;
  }

}


/* ------------------- common_parts ------------------- */

.common_inner {
  max-width: 1120px;
  padding: 8rem 2.5rem 0;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  background:rgba(255,255,255,0.0);
}
.common_content {
  box-sizing: border-box;
}
.common_inner .title01 {
  padding-bottom: 2.4rem;
  font-size: 2rem;
	line-height: 3rem;
  font-family: "ZenOldMincho-Regular";
  font-weight: bold;
}
.common_inner .subtitle01 {
  padding-bottom: 2.4rem;
  font-size: 1.6rem;
	line-height: 3.2rem;
  font-family: "ZenOldMincho-Regular";
  font-weight: normal;
}
.common_inner .subtitle01:before {

}
.common_inner .text01 {
  font-family: "ZenOldMincho-Regular";
  font-feature-settings: "halt" on;
  text-align: justify;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2.4rem;
}
.common_inner span.color {
	color: #B57D87;
}
.common_inner span.border {
  display: inline-block;
  position: relative;
}
.common_inner span.border:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}


.common_inner .text02 {
  font-family: "ZenOldMincho-Regular";
  font-feature-settings: "halt" on;
  text-align: justify;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6rem;
}
.common_inner .photobox {
  overflow: hidden;
}
.common_inner .btn01 {
  text-align: center;
}
.common_inner .btn01 a {
  width: 260px;
  height: 55px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  line-height: 55px;
  transition: 0.5s;
  font-family: "ZenOldMincho-Regular";
  background: #B39192;
  border-radius: 5px;
}
.common_inner .btn01 a:hover {
  background: #558D74;
}


/* -------------------------------------- SP -------------------------------------- */

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

  /* ------------------- common_parts ------------------- */

  .common_inner {
    padding: 4rem 0rem 0;
  }
  .common_inner .title01 {
    padding-bottom: 1.8rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .common_inner .subtitle01 {
    padding-bottom: 1.4rem;
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
  .common_inner .text01 {
    font-size: 1rem;
    line-height: 1.7rem;
  }
  .common_inner .btn01 {
    padding: 2.5rem 0 0 0;
    font-size: 1rem;
  }
  
}


/* ------------------- footer ------------------- */

#footer {
	position: relative;
  text-align: center;
	z-index: 1;
  color: #fff;
}
#footer .footer_inner {
	padding: 30px 0 0;
	background: #558D74;
}
#footer .title {
  padding-bottom: 2rem;
  font-family: "ZenOldMincho-Regular";
  color: #fff;
  font-size: 5rem;
  text-align: center;
  font-weight: 400;
}
#footer .title a {
  color: #fff;
}
#footer .subtitle {
  padding-bottom: 1rem;
  font-size: 1rem;
  color: #F1F5F94;
  font-weight: normal;
}
#footer .nav01 {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#footer .nav01 li {

}
#footer .nav01 li a {
  padding: 10px 25px;
  font-size: 1.1rem;
  color: #F1F5F9;
}
#footer .nav01 li a:hover {
  color: #2E3444;
}
#footer .copyright {
  padding: 0 0 80px;
  font-size: 0.8rem;
}


/* -------------------------------------- SP -------------------------------------- */

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

  /* ------------------- footer ------------------- */
  #footer .title {
    padding-bottom: 2rem;
    font-size: 3rem;
  }
  #footer .subtitle {
    padding-bottom: 1rem;
    font-size: 1rem;
  }
  #footer .nav01 {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #footer .nav01 li {
    width: 100%;
  }
  #footer .nav01 li a {
    padding: 10px;
    font-size: 1rem;
  }
}
