@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  height: 100%;
}
body {
  color: #59463C; /* RGB */
  font: normal 1.4rem Noto Sans CJK JP;
  font-family: "Noto Sans Japanese,游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 300;
  text-align: center;
  line-height: 180%;
  height: 100%;
}
section h2 {
  font-size: 3.0rem;
  font-family: "optima", "Marcellus", serif;
  font-weight: 400;
  letter-spacing: 0.08rem;
}
section h3 {
  font-size: 2.0rem;
  font-family: 'Zen Old Mincho', serif;
  ;
  font-weight: 700;
  font-style: normal;
}
a:hover {
  opacity: 0.5;
  transition: all 0.3s ease;
}
/* 不明→要確認
*, *:before, *:after {
  box-sizing: border-box;
}
*/
@media (max-width:1020px) {
  section h2 {
    font-size: 2.8rem;
  }
  section h3 {
    font-size: 2.0rem;
  }
  section p {
    font-size: 1.3rem
  }
}
/* ----------------------------------------------------------header */
.header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
z-index: 99999999;
}
.header_content_wrapper {
    position: relative;
  }
.header_logo {
  position: absolute;
  left: 0;
}
.header_logo img {
  width: 200px;
  padding: 40px 56px 30px;
}
.nav_ul li a {
  color: #59463C;
  text-decoration: none;
}
@media(min-width:1160px) {
  .header {
    height: 120px;
  }
  .header_content_wrapper {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
  }
  .header nav {
    display: block;
    text-align: right;
  }
  .nav_ul {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    font-family: 'Zen Old Mincho', serif;
    height: 120px;
    margin-right: 30px;
  }
  .header nav li a {
    display: block;
    padding-left: 36px;
    margin-bottom: 30px;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
  }
  .header nav li a img {
    align-items: flex-end
  }
  .pulldown-menulist {
    display: none;
  }
  .open-button, .close-button {
    display: none;
  }
}
@media (max-width:1159px) {
  .header {
    height: 80px;
    width: 100%
  }
  .header_logo {
    position: absolute;
    left: 0;
  }
  .header_logo img {
    width: 150px;
    padding: 25px 25px;
    ;
  }
  /* ----------------------------------------------------------ハンバーガーボタン*/
  .open-button {
    position: absolute; /*ボタン内側の基点となるためrelativeを指定。追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 5px;
    right: 20px;
    top: 20px;
    z-index: 10000;
  }
  /*ボタン内側*/
  .open-button span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 1px;
    background: #59463C;
    width: 60%;
  }
  .open-button span:nth-of-type(1) {
    top: 15px;
  }
  .open-button span:nth-of-type(2) {
    top: 23px;
  }
  .open-button span:nth-of-type(3) {
    top: 31px;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .open-button.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
    background: #fff;
  }
  .open-button.active span:nth-of-type(2) {
    opacity: 0; /*真ん中の線は透過*/
  }
  .open-button.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
    background: #fff;
  }
  .header nav {
    z-index: 1000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #4D6D66;
    width: 100%;
    height: 100%;
    padding-top: 67px;
    font: normal 1.6rem Zen Old Mincho;
    text-align: left;
    padding: 100px 80px;
    line-height: 250%;
  }
  .header nav ul li a {
    text-decoration: none;
    color: #FFF;
  }
  /* 要確認
  .header nav ul li {             
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  }
  .header nav ul li:first-child {             
    border-top: solid 1px rgba(255, 255, 255, 0.5);
  }
  .header nav ul li a {
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #FFF;
  }*/
  /* 要確認*/
}
@media(max-width:767px) {
  .header_logo {
    width: 100%
  }
  .header_logo img {
    width: 130px;
    margin: 0 auto;
  }
}
/* ----------------------------------------------------------ACCESS*/
.access {
  max-width: 940px;
  padding-bottom: 160px;
  text-align: left;
  margin: 0 auto;
}
.access-content-wrapper {
  display: flex;
  justify-content: space-between;
}
.access_text_box {
  width: 70%;
}
.komidashi {
  font: normal 1.6rem/2.52rem Neue Haas Unica W1G, Noto Sans CJK JP;
}
.access_contact__text {
  padding-top: 13px;
  font: normal 1.4rem/3rem Neue Haas Unica W1G, Noto Sans CJK JP;
}
.ggmap {
  position: relative;
  width: 100%;
  padding: calc(480 / 854 * 60%) 0 0; /* 高さと横幅の数字には単位は入れません。 */
}
.ggmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width:1159px)and (min-width: 768px) {
  .access {
    padding: 0px 80px 100px;
    max-width: none;
  }
  .komidashi {
    font-size: 1.4rem;
  }
  .access_contact__text {
    font-size: 1.2rem;
    line-height: 180%;
  }
}
@media (max-width: 768px) {
  .access {
    padding: 0;
  }
  .access-content-wrapper {
    flex-direction: column-reverse;
    background: #FDFCF5;
  }
  .ggmap {
    padding: 0;
    height: 300px;
  }
  .access_text_box {
    padding-bottom: 90px;
    margin: 0 auto;
    text-align: center;
  }
  .access .komidashi {
    display: none;
  }
  .name {
    padding-top: 50px;
    font-size: 2.0rem;
    font-family: "optima", "Marcellus", serif;
    font-weight: 400;
    letter-spacing: 0.08rem;
  }
}
/* ---------------------------------------------------------- CONTACT*/
.contact {
  margin: 0;
  padding: 0;
  text-align: left;
}
.contact__background_image {
  background: url("../image/contact.jpg") center center / cover no-repeat;
}
.contact__image-filter {
  height: 100%;
  width: 100%;
  background-color: rgba(77, 109, 102, 1.00);
}
.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  color: #fff;
}
.contact-wrapper ul {
  list-style: none;
}
.contact li{
	display: block;
}
.contact-wrapper a {
  text-decoration: none;
}
.button {
  width: 450px;
  border: solid 1px;
  text-align: center;
  padding: 13px 0;
  margin: 40px 0;
  color: #fff;
  font: normal 1.4rem/2.52rem Neue Haas Unica W1G;
  letter-spacing: 0.05rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-box-2 li :hover {
  background-color: #4D6D66;
  opacity: 100;
  border: none;
}
.button :hover {
  border: none;
}
.contact-wrapper a {
  text-decoration: none;
  z-index: 0;
}
@media (max-width:1159px)and (min-width: 768px) {
  .contact-wrapper {
    max-width: none;
    padding: 30px 80px;
  }
  .button {
    width: 380px;
    border: solid 1px;
    text-align: center;
    padding: 8px 0;
  }
}
@media (max-width: 768px) {
  .contact__background_image {
    background: url("../image/contact.jpg") center center / cover no-repeat;
  }
  .contact-wrapper {
    display: block;
    padding: 0 35px 50px;
  }
  .contact-box-1 {
    margin: 0 auto;
    text-align: center;
  }
  .button {
    width: 100%;
    padding: 10px 0px;
    margin: 30px 0;
  }
}
/* ----------------------------------------------------------footer*/
footer {
  padding: 50px 0 60px 0;
  background-color: #FDFCF5;
}
.footer_content_wrapper {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  text-align: left;
  margin: 0 auto;
}
.footer_content_wrapper h3, p {
  font: normal 1.4rem/2.52rem Neue Haas Unica W1G;
}
.kireido_adress {
  font: normal 1.4rem/2.52rem Noto Sans CJK JP;
}
.footer_nav {
  list-style: none;
  padding-right: 80px;
}
.footer_nav li a {
  font: normal 1.4rem/2.52rem Neue Haas Unica W1G;
  text-decoration: none;
  color: #59463C;
}
.copyright {
  font: normal 1.4rem/2.52rem Neue Haas Unica W1G;
  background-color: #FDFCF5;
}
.fl_left {
  padding-bottom: 20px;
}
@media (max-width:1159px)and (min-width: 768px) {
  .footer_content_wrapper {
    max-width: none;
    padding: 0 70px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 0 35px;
  }
  .footer_content_wrapper {
    display: block;
    position: relative;
    padding: 50px 0 133px;
  }
	.footer_content_wrapper li{
		display: block;
	}
  .kireido_adress {
    display: none;
  }
}
/* ----------------------------------------------------------FAdeIn
  .fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
}
  .fadein-bottom{
      transform: translate(0,30px);
  }
.scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
  }*/


  .pc-banner,
  .pc-content {
    display: none !important;
  }
  /* 移动端样式 */
  .mobile-banner,
  .mobile-content {
    display: none !important;
  }
  /* 媒体查询 */
  @media (min-width: 768px) {
    /* PC样式 */
    .pc-banner,
    .pc-content {
      display: block !important;
    }
  }

  @media (max-width: 767px) {
    /* 移动端样式 */
    .mobile-banner,
    .mobile-content {
      display: block !important;
    }
  }