/*******/
/*breakpoint*/
/* 1541px〜 */
/* 768px〜 */
/* 481px〜 */
/*******/

/****************************************
  1. General Setting 
*****************************************/
html {
  font-size: 62.5%
}

.f-noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  width: 100%;
}

@media (max-width: 1024px) {
  body {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
  }
}

a {
  color: #231815;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

a[title="nolink"] {
  pointer-events: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.tablet {
  display: none;
}

.br-pc {
  display: inline-block;
}

.br-tablet:not(.br-pc) {
  display: none;
}

.br-sp {
  display: none;
}

@media (max-width: 1024px) {
  .tablet {
    display: block;
  }

  .br-pc {
    display: none;
  }

  .br-tablet,
  .br-tablet.br-sp {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .br-tablet {
    display: none;
  }

  .br-sp {
    display: inline-block;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/* 透明から表示 */
.fadeIn.visible {
  animation: opacityFadeIn 1s ease 0s 1 normal;
}

@keyframes opacityFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* 下から上にフェードイン */
.fadeInUp.visible {
  animation: fadeInBottom 1s ease 0s 1 normal;
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
  }
}

/* BUTTON*/
.btn {
  display: block;
  background-color: #305C30;
  color: #FFF !important;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1em 0.5em;
  max-width: 230px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

i,
.ico {
  position: relative;
}

.ico::before {
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  vertical-align: text-bottom;
}

/****************************************
  Header, Menu
*****************************************/

#header {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #305C30;
}

@media (min-width: 1151px) {
  #header {
    height: 100vh;
    background-color: transparent;
  }
}

@media (max-width: 1150px) {
  #header {
    height: 140px;
    width: 100%;
  }

  #header.fixed {
    position: fixed;
  }

  #header.open {
    overflow-y: visible;
  }

  #header.open::after {
    content: '';
    background-color: #FFF;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
  }
}

@media (max-width: 768px) {
  #header {
    height: 110px;
  }
}

@media (max-width: 480px) {
  #header {
    height: 70px;
  }
}


#header .header__inner {
  display: flex;
  justify-content: space-between;
}

@media (min-width:1151px) {
  #header .header__inner {
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
  }
}

@media (max-width: 1150px) {
  #header .header__inner {
    align-items: center;
    height: 100%;
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo_wrap {
  text-align: center;
}

@media (min-width:1151px) {
  .header__logo_wrap {
    background-color: #305C30;
    border-bottom-right-radius: 30px;
    padding: 1.5vw;
  }
}

#header .header__logo {
  max-width: 180px;
  margin: auto;
  width: 80%;
}

@media (max-width: 1150px) {
  #header .header__logo {
    max-width: 140px;
    margin-left: 2rem;
    position: relative;
    z-index: 999;
  }
}

@media (max-width: 767px) {
  #header .header__logo {
    max-width: 110px;
  }
}

.header__label {
  margin-top: 20px;
  color: #FFF;
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (max-width: 1150px) {
  .header__label {
    display: none;
  }
}

.header__nav_wrap {
  padding-bottom: 30px;
  padding: 30px;
  width: auto;
}


@media (min-width:1151px) {
  .header__nav_wrap {
    background-color: #305C30;
    border-top-right-radius: 30px;
    margin-top: 1.5vw;
    padding: 1.5vw;
    max-width: 300px;
    flex-grow: 1;
  }
}

@media (max-width: 1150px) {
  .header__nav_wrap {
    display: none;
    background-color: #305C30;
    position: fixed;
    top: 140px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 140px);
    overflow: auto;
  }
}

@media (max-width: 768px) {
  .header__nav_wrap {
    top: 110px;
    height: calc(100dvh - 110px);
  }
}

@media (max-width: 480px) {
  .header__nav_wrap {
    top: 70px;
    height: calc(100dvh - 70px);
  }
}

.header__nav-ttl {
  color: #A3A889;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  padding: 1em 0;
  padding: 0 0 0.6vw;
}
@media (max-width: 1920px) {
  .header__nav-ttl {
    font-size: 1.04vw;
  }
}
@media (max-width: 1050px) {
  .header__nav-ttl {
    font-size: 2.0rem;
  }
}

.header__nav-item {
  border-bottom: dotted 1px #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  padding: 1em 0;
  position: relative;
  line-height: 1.2;
}
@media (max-width: 1920px) and (min-width: 1501px) {
  .header__nav-item {
    font-size: 0.83vw;
  }
}
@media (max-width: 1500px) and (min-width: 1051px) {
  .header__nav-item {
    font-size: 1.2rem;
  }
}
@media (max-width: 1050px) {
  .header__nav-item {
    font-size: 1.3rem;
  }
}

.header__nav-item a {
  color: #FFF;
  display: block;
  padding-right: 2em;
  position: relative;
}

.header__nav-item a::before {
  content: '';
  position: absolute;
  top: calc(50% - 0.4em);
  right: 0;
  color: #FFF;
  letter-spacing: 2px;
  background-repeat: no-repeat;
  background-image: url("../img/common/icon_arrow_wh.png");
  background-size: contain;
  background-position: right center;
  height: 0.8em;
  width: 1em;
}

#header-menu-box {
  display: flex;
  justify-content: space-between;
  height: calc(100% - 40px);
}

@media (min-width: 1151px) {

  #header-menu-box,
  #menuopen__btn {
    display: none;
  }
}


.header-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  border-left: solid 1px #FFF;
  width: 9rem;
}

@media (max-width: 767px) {
  .header-menu-btn {
    width: 7rem;
  }
}

@media (max-width: 480px) {
  .header-menu-btn {
    width: 5rem;
  }
}

#menuopen__btn {
  position: relative;
  display: block;
  height: 100px;
  width: 120px;
  z-index: 100;
}

#menuopen__btn .menu-line {
  background-color: #FFF;
  display: block;
  height: 1px;
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform .3s;
  width: 60%;
}

@media (max-width: 768px) {
  #menuopen__btn {
    height: 70px;
    width: 90px;
  }
}

@media (max-width: 480px) {
  #menuopen__btn {
    height: 30px;
    width: 50px;
  }
}

#menuopen__btn .menu-line.menu-line--center {
  top: 50%;
}

#menuopen__btn .menu-line.menu-line--bottom {
  top: 75%;
}

#menuopen__btn.active .menu-line {
  top: 45%;
}

#menuopen__btn.active .menu-line.menu-line--top {
  transform: rotate(-45deg);
}

#menuopen__btn.active .menu-line.menu-line--center {
  transform: scaleX(0);
}

#menuopen__btn.active .menu-line.menu-line--bottom {
  transform: rotate(45deg);
}

.header-menu-btn-mail {
  width: 10rem;
}

@media (max-width: 768px) {
  .header-menu-btn-mail {
    width: 8rem;
  }
}

@media (max-width: 480px) {
  .header-menu-btn-mail {
    width: 6rem;
  }
}


/* スマホ用ドロワーメニュー */
#slidenav {
  display: none;
  overflow: scroll;
  height: 100%;
  width: 100%;
  background-color: #305C30;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  z-index: 99;
  top: 0;
}

.slidenav-ttl {
  color: #A3A889;
  font-size: 4.5rem;
  font-weight: bold;
  text-align: center;
  padding: 1em 0;
}

@media (max-width: 767px) {
  .slidenav-ttl {
    font-size: 2.2rem;
  }
}

.menu-slide-nav-container {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20%;
  height: auto;
  width: 100%;
}

#slide-nav-ul {
  width: auto;
  list-style-type: none;
}

#menuopen {
  float: right;
  padding: 4% 0;
  width: 4em;
  color: #fff;
  border-left: solid 1px #FFF;
}

#slide-nav-ul {
  margin-bottom: 7%;
}

#slide-nav-ul .menu-item {
  font-family: "Noto Serif JP", serif;
  font-size: 3.5rem;
  padding: 0.5em 0;
  text-align: left;
  border-bottom: dotted 1px #FFF;
}

@media (max-width: 767px) {
  #slide-nav-ul .menu-item {
    font-size: 1.8rem;
  }
}

#slide-nav-ul .menu-item a {
  color: #FFF;
  padding-right: 2em;
  display: block;
}

#slide-nav-ul .menu-item a::before {
  content: '';
  position: absolute;
  top: calc(50% - 0.4em);
  right: 0;
  color: #FFF;
  letter-spacing: 2px;
  background-repeat: no-repeat;
  background-image: url("../img/common/icon_arrow_wh.png");
  background-size: contain;
  background-position: right center;
  height: 0.8em;
  width: 1em;
}


.header__tel {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 2.0rem;
  color: #FFF;
  padding: 1em 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 1920px) and (min-width: 1051px) {
  .header__tel {
    font-size: 1.04vw;
  }
}

.header__tel>.number {
  font-size: 2.9rem;
}
@media (max-width: 1920px) and (min-width: 1051px) {
  .header__tel>.number {
    font-size: 1.5vw;
  }
}
@media (max-width: 1050px) {
  .header__tel>.number {
    font-size: 3.7rem;
  }
}

.header__tel a {
  color: #FFF;
}

.header__btn_contact {
  width: auto;
  margin: auto;
  background-color: transparent;
  border: solid 1px #FFF;
  font-size: 1.6rem;
  position: relative;
}
@media (max-width: 1920px) and (min-width: 1051px) {
  .header__btn_contact {
    font-size: 0.83vw;
  }
}
@media (max-width: 1050px) {
  .header__btn_contact {
    font-size: 1.5rem;
  }
}

.ico.ico-mail-circle::before {
  background-image: url(../img/common/icon_mail_circle.png);
  margin-right: 1rem;
}


/****************************************
  Contents
*****************************************/

@media (max-width: 1150px) {
  #container_wrap {
    margin-top: 140px;
  }
}

@media (max-width: 768px) {
  #container_wrap {
    margin-top: 110px;
  }
}

@media (max-width: 480px) {
  #container_wrap {
    margin-top: 70px;
  }
}

#container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #FFF;
}


/****************************************
  Footer
*****************************************/

#footer {
  position: relative;
  width: 100%;
  color: #FFF;
  background-color: #305C30;
}

.footer-inner {
  padding: 5rem 0;
  position: relative;
}

.footer-logo {
  max-width: 180px;
  margin: 0 auto;
  width: 50%;
}

.footer-info-txt {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 3rem;
  padding: 0 2rem;
  color: #FFF;
}

.footer-tel {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: normal;
  color: #FFF;
  margin-top: 3rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 480px) {
  .footer-tel {
    font-size: 2.2rem;
  }
}

.footer-tel>.number {
  font-size: 5.0rem;
}

@media (max-width: 480px) {
  .footer-tel>.number {
    font-size: 3.7rem;
  }
}

.footer-tel a {
  color: #FFF;
}

/*FOOTER NAV*/
.footer-nav {
  margin-top: 5rem;
}

@media (max-width: 1150px) {
  .footer-nav {
    display: none;
  }
}

.footer-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-nav-item {
  font-size: 1.6rem;
  color: #FFF;
  padding: 0 1.5em;
  margin-bottom: 1em;
  line-height: 1;
  border-left: solid 1px #FFF;
}

.footer-nav-item:last-child {
  border-right: solid 1px #FFF;
}

.footer-nav-item a {
  color: #FFF;
}

@media (max-width: 1540px) {
  .footer-nav-item {
    font-size: 1.0vw;
  }
}

.copyright {
  width: 100%;
  margin: 0 auto;
}

.copyright .inner {
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
  font-size: 1.6rem;
  color: #FFF;
}

@media (min-width: 1151px) {

  .footer-inner,
  .copyright {
    width: 100%;
    max-width: calc(1200px + 300px);
    margin: auto;
    padding-left: 300px;
  }
}

@media (max-width: 1540px) and (min-width: 1151px) {

  .footer-inner,
  .copyright {
    width: 100%;
    max-width: calc(1000px + 300px);
    margin: auto;
    padding-left: 300px;
  }
}