/****************************************
		1. General Setting 
*****************************************/

/*
font-family: 'Noto Serif JP', serif;
*/

html {
  font-size: 62.5%
}

body {
  color: #333;
  font-size: 1.6rem;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  letter-spacing: 0.05em;
  width: 100%;
}

@media (max-width: 1024px) {
  body {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
  }
}

.f-noto {
  font-family: 'Noto Sans JP', sans-serif;
}

a {
  color: #333;
  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 2s 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;
  }
}

/* ARROW */
.arrow {
  display: inline-block;
  position: relative;
}

.arrow::before {
  border-top: solid 2px #c0b283;
  border-right: solid 2px #c0b283;
  content: '';
  display: inline-block;
  height: 0.4em;
  position: absolute;
  right: 0.2em;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  width: 0.4em;
  z-index: 2;
}

.arrow-circle.arrow {
  padding-right: 2.5em;
}

.arrow-circle.arrow::after {
  background-color: #c0b283;
  border-radius: 100%;
  content: '';
  display: inline-block;
  height: 1.5em;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.5em;
  z-index: 1;
}

.arrow-circle.arrow::before {
  border-top-color: #FFF;
  border-right-color: #FFF;
  right: 0.75em;
  top: calc(50% - 0.05em);
}

/* LINK */
.link {
  color: #c0b283;
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .link {
    font-size: 1.5rem;
  }
}

/*BUTTON*/
.btn {
  background-color: #FFF;
  color: #333;
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 auto;
  padding: 1.5em 1em;
  position: relative;
  line-height: 1;
  text-align: center;
  border: solid 1px #333;
  transition: all 0.2s ease;
  max-width: 350px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 767px) {
  .btn {
    font-size: 1.5rem;
    padding: 1em;
  }
}

.btn--white {
  background-color: #FFF;
  border-color: #FFF;
  color: #333;
}

.btn--navy {
  background-color: #c0b283;
  border-color: #c0b283;
}

.btn--pink {
  background-color: #ED2F4F;
  border-color: #ED2F4F;
}

i,
.ico {
  display: inline-block;
  position: relative;
}

.ico::before {
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  height: 1.0em;
  width: 1.0em;
}

a[title="nolink"] {
  pointer-events: none;
}

@media (min-width: 1081px) {
  a[href*="tel:"] {
    cursor: default;
    text-decoration: none;
  }
}


/****************************************
  Header, Menu
*****************************************/
#header {
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  z-index: 9999;
}

@media (max-width: 1080px) {
  #header {
    height: 70px;
  }
}

@media (max-width: 480px) {
  #header {
    height: 50px;
  }
}

body:not(.home) #header {
  top: 0 !important;
}

#header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

#header .logo {
  margin-left: 20px;
  max-width: 318px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 45%;
  z-index: 999;
}


#header .header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: auto;
  z-index: 9999;
}

#header .gnav-container {
  height: 100%;
}

@media (max-width: 1080px) {
  #header .gnav-container {
    display: none;
  }
}

#header .header-nav #gnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
}

#gnav .menu-item {
  font-size: 1.8rem;
  font-weight: 700;
  height: 100%;
  line-height: 1.2;
  text-align: center;
  transition: all 0.2s ease;
}

@media (max-width: 1580px) {
  #gnav .menu-item {
    font-size: 1.12vw;
  }
}

@media (max-width: 1200px) {
  #gnav .menu-item {
    font-size: 1.1vw;
    /* font-size: 1.5rem; */
  }
}

@media (max-width: 1180px) {
  #gnav .menu-item {
    font-size: 1vw;
    /* font-size: 1.5rem; */
  }
}

#gnav>.menu-item>a {
  padding: 0 2em;
}

@media (max-width: 1500px) {
  #gnav>.menu-item>a {
    padding: 0 1.5em;
  }
}

#gnav>.menu-item>a>span {
  display: block;
}

#gnav>.menu-item>a {
  color: #333;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  line-height: 1.2;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#gnav>.menu-item:hover>a {
  color: #c0b283;
}


#gnav>.menu-item:hover>a {
  position: relative;
}

#gnav>.menu-item:hover>a::after {
  content: '';
  background-color: #c0b283;
  position: absolute;
  bottom: 0;
  left: 2em;
  width: calc(100% - 4em);
  height: 2px;
}

#gnav>.menu-item.menu-item-has-children span {
  position: relative;
}

#gnav>.menu-item.menu-item-has-children span::after {
  border-bottom: solid 2px #c0b283;
  border-right: solid 2px #c0b283;
  content: '';
  display: inline-block;
  height: 0.5em;
  left: 0;
  margin: auto;
  margin-top: 0.3em;
  position: absolute;
  right: 0;
  transform: rotate(45deg);
  top: 100%;
  width: 0.5em;
  transition: all 0.2s ease;
}

#gnav>.menu-item.menu-item-has-children.is-hover span::after {
  opacity: 0;
}

#gnav .dropdown-menu {
  background-color: #c0b283;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

#gnav .dropdown-menu .menu-item a {
  display: block;
  padding: 1em;
  color: #fff;
  font-size: 1.2vw;
}

@media (min-width: 1480px) {
  #gnav .dropdown-menu .menu-item a {
    font-size: 1.8rem;
  }
}

#gnav>.menu-item.menu-item-has-children.is-hover>.dropdown-menu {
  opacity: 1;
  pointer-events: all;
  padding: 2.5rem 0;
}

#gnav .dropdown-menu .menu-item~.menu-item {
  margin-left: 2em;
}

@media (min-width: 768px) {
  #gnav .dropdown-menu.long .menu-item a {
    font-size: min(1.1vw, 1.8rem);
    padding: 1em .5em;
  }
}

.header-tel {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 1rem;
  height: 100%;
}

@media (max-width: 1080px) {
  .header-tel {
    align-items: center;
    background-color: #F4F6FA;
    width: 70px;
  }
}

@media (max-width: 480px) {
  .header-tel {
    width: 50px;
  }
}


.header-tel>* {
  display: block;
}

.header-tel__num {
  font-size: 4.0rem;
  color: #c0b283;
  line-height: 1;
}

@media (max-width: 1500px) {
  .header-tel__num {
    font-size: 2.5vw;
  }
}

@media (max-width:1080px) {
  .header-tel__num {
    font-size: 3rem;
  }
}

.header-tel__num a {
  color: #c0b283;
}

.header-tel__text {
  font-size: 1.4rem;
  margin-top: 0.5em;
  text-align: right;
}

@media (max-width: 1500px) {
  .header-tel__text {
    font-size: 0.9vw;
  }
}

.header-tel__num .num {
  margin-left: 0.3em;
}

.ico__tel::before {
  background-image: url(../img/common/ico_tel.svg);
  height: 0.7em;
  width: 0.7em;
}

@media (max-width: 1080px) {

  .header-tel__num .num,
  .header-tel__text {
    display: none;
  }
}


/*--- HEADER MENU BUTTON ---*/
#header-menu-box {
  height: 100%;
  display: flex;
}



/*HEADER MENU BUTTON*/
.header-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #c0b283;
  font-size: 1.6rem;
  padding: 1em;
  height: 100%;
  width: auto;
  transition: all 0.3s ease;
}

@media (max-width: 1750px) {
  .header-menu-btn {
    font-size: 1.5rem;
  }
}

@media (max-width: 1600px) {
  .header-menu-btn {
    font-size: 1.4rem;
  }
}

@media (max-width: 1300px) {
  .header-menu-btn {
    font-size: 1vw;
  }
}

@media (max-width: 1080px) {
  .header-menu-btn {
    width: 70px;
  }
}

@media (max-width: 480px) {
  .header-menu-btn {
    width: 50px;
  }
}

.header-menu-btn-tel {
  color: #c0b283;
  font-size: 2rem;
  padding: 0;
}

@media (min-width: 1081px) {
  .header-menu-btn-tel {
    display: none;
  }
}

.header-menu-btn-mail {
  background-color: #c0b283;
  color: #FFF;
}

@media (max-width: 1080px) {
  .header-menu-btn-mail {
    display: none;
  }
}

#nav-toggle {
  background-color: #c0b283;
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  padding: 0;
  z-index: 9999;
}

@media (min-width: 1081px) {
  #nav-toggle {
    display: none;
  }
}

#nav-toggle .menu-line {
  background-color: #FFF;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .3s;
  width: 50%;
  top: 35%;
  right: 0;
  left: 0;
  margin: auto;
}

#nav-toggle .menu-line.menu-line--center {
  top: 50%;
}

#nav-toggle .menu-line.menu-line--bottom {
  top: 65%;
}

/*active時*/
#nav-toggle.active .menu-line {
  top: 45%;
}

#nav-toggle.active .menu-line.menu-line--top {
  transform: rotate(-45deg);
}

#nav-toggle.active .menu-line.menu-line--center {
  transform: scaleX(0);
}

#nav-toggle.active .menu-line.menu-line--bottom {
  transform: rotate(45deg);
}

@media (max-width: 1080px) {
  #nav-toggle {
    height: 70px;
    width: 70px;
  }
}

@media (max-width: 480px) {
  #nav-toggle {
    height: 50px;
    width: 50px;
  }
}

#slidenav {
  display: none;
  overflow: scroll;
  height: calc(100% - 100px);
  background-color: #FFF;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 99;
}

@media (max-width: 1080px) {
  #slidenav {
    height: calc(100% - 70px);
    top: 70px;
  }
}

@media (max-width: 480px) {
  #slidenav {
    height: calc(100% - 50px);
    top: 50px;
  }
}

#slidenav .slidenav-ul-wrap {
  padding: 5%;
}

#slidenav-ul {
  list-style-type: none;
  margin: 0 auto;
  margin-bottom: 8%;
  width: 100%;
}

#slidenav-ul .menu-item {
  border-bottom: solid 1px #999;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding: 1em 0;
  text-align: left;
}

@media (max-width: 1024px) {
  #slidenav-ul .menu-item {
    font-size: 2.0rem;
  }
}

@media (max-width: 640px) {
  #slidenav-ul .menu-item {
    font-size: 1.5rem;
  }
}

#slidenav-ul .menu-item .en {
  color: #c0b283;

  font-size: 2.0rem;
  padding-left: 1em;
}

@media (max-width: 640px) {
  #slidenav-ul .menu-item .en {
    font-size: 1.0rem;
  }
}

#slidenav-ul .sub-menu {
  display: none;
  margin-top: 0.5rem;
  width: 100%;
}

#slidenav-ul .sub-menu .menu-item {
  font-weight: normal;
  font-size: 3.0rem;
  border-bottom: none;
  padding: 0.3em 0;
}

@media (max-width: 1024px) {
  #slidenav-ul .sub-menu .menu-item {
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  #slidenav-ul .sub-menu .menu-item {
    font-size: 1.5rem;
  }
}

#slidenav-ul .sub-menu .menu-item::before {
  content: '';
  display: inline-block;
  height: 1px;
  width: 0.3em;
  margin-right: 0.5em;
  vertical-align: middle;
  background-color: #c0b283;
}

#slidenav-ul .menu-item.menu-item-has-children {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

#slidenav-ul .menu-item.menu-item-has-children .accordion-btn {
  display: block;
  position: relative;
  height: 1.0em;
  opacity: 1;
  visibility: visible;
  width: 1.0em;
}

#slidenav-ul .menu-item.menu-item-has-children .accordion-btn::before,
#slidenav-ul .menu-item.menu-item-has-children .accordion-btn::after {
  background-color: #999;
  bottom: auto;
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.0em;
  height: 2px;
  border: none;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#slidenav-ul .menu-item.menu-item-has-children .accordion-btn::before {
  display: block;
  bottom: 0;
  width: 1.0em;
  border-bottom: solid 2px #999;
}

#slidenav-ul .menu-item.menu-item-has-children .accordion-btn::after {
  top: calc(50% - 1px);
  transform: rotate(90deg);
  transition: 0.5s;
}

#slidenav-ul .menu-item.menu-item-has-children .accordion-btn.active::after {
  background-color: #c0b283;
  transform: rotate(0);
}

.slidenav-sub-ul-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.slidenav-sub-ul-wrap {
  background-color: #c0b283;
  padding: 2rem;
}

#slidenav-sub-ul {
  display: flex;
  justify-content: center;
}

#slidenav-sub-ul .menu-item {
  font-size: 1.5rem;
}

#slidenav-sub-ul .menu-item a {
  color: #FFF;
}

#slidenav-sub-ul .menu-item::before {
  content: '';
  display: inline-block;
  height: 2px;
  width: 0.5em;
  margin-right: 0.5em;
  vertical-align: middle;
  background-color: #c0b283;
}

#slidenav-sub-ul .menu-item:not(:last-child) {
  margin-right: 2em;
}

/****************************************
  Main
*****************************************/
#container {
  background-color: #FFF;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1081px) {
  body:not(.home) #container {
    margin-top: 100px;
  }
}

@media (max-width: 1080px) {
  #container {
    margin-top: 70px;
  }
}

@media (max-width: 480px) {
  #container {
    margin-top: 50px;
  }
}


@media (max-width: 1200px) {
  #main {
    margin: 0;
  }
}

/*---------- SIDE CONTENTS ----------*/
.side-contents {
  transition: 0.3s all;
  position: sticky;
  top: 100px;
}

@media (min-width: 768px) {
  .side-contents {
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .side-contents>* {
    width: 100%;
  }
}

.side-contents-block {
  margin-bottom: 50px;
}

.side-contents-block__ttl {
  color: #c0b283;
  font-size: 3rem;
  line-height: 1.2;
  margin: 0 0 1em;
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .side-contents-block__ttl {
    font-size: 1.6rem;
  }
}

.sidemenu {
  margin-bottom: 10px;
}

.sidemenu-item {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 0.8em;
  padding-left: 1.2em;
  position: relative;
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .sidemenu-item {
    font-size: 1.5rem;
  }
}

.sidemenu-item::before {
  background-color: #333;
  content: '';
  display: inline-block;
  height: 2px;
  margin-right: 1em;
  left: 0;
  position: absolute;
  top: 0.6em;
  vertical-align: middle;
  width: 0.5em;
}

.sidemenu-item.current::before {
  background-color: #c0b283;
}

.sidemenu-item__link {
  color: #333;
  display: block;
}

.sidemenu-item.current .sidemenu-item__link {
  color: #c0b283;
}

.site-contents {
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 50px;
  width: 90%;
  overflow: inherit;
}

.site-contents #main {
  width: 100%;
}

@media (min-width: 768px) {
  .site-contents {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .site-contents #main {
    max-width: 930px;
    margin: 0 0 0 auto;
  }

  .site-contents #side {
    overflow: inherit;
    padding-right: 20px;
    max-width: 265px;
    width: 28%;
  }
}

@media (max-width: 1200px) {
  .site-contents #main {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .site-contents {
    padding-top: 0;
    width: 100%;
  }

  .site-contents #main,
  .site-contents #side {
    width: 100%;
    max-width: none;
  }

  .site-contents #side {
    width: 92%;
    margin: 0 auto;
    padding-bottom: 5%;
    padding-right: 0;
  }
}


/****************************************
  Footer
*****************************************/
#footer {
  background-color: #FFF;
  position: relative;
}

.footer-inner {
  padding: 50px 0 10px;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

@media (max-width: 1080px) {
  .footer-inner {
    padding: 10% 0;
  }
}

@media (min-width: 1081px) {
  .footer-sitemap-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .footer-info {
    width: 35%;
  }

  .footer-sitemap {
    width: 65%;
  }
}

@media (max-width: 1080px) {}


/* FOOTER INFO
 -------------------------------*/
.footer-logo {
  margin: 0 auto 3rem;
  max-width: 317px;
  width: 75%;
}

@media (min-width: 1081px) {
  .footer-logo {
    margin-left: 0;
  }
}

.footer__address,
.footer__tel {
  font-size: 1.6rem;
  line-height: 1.8;
}

@media (max-width: 1080px) {

  .footer__address,
  .footer__tel {
    text-align: center;
  }
}

@media (max-width: 480px) {

  .footer__address,
  .footer__tel {
    font-size: 1.5rem;
  }
}

/* FOOTER NAV AREA
 -------------------------------*/
@media (max-width: 1080px) {
  .footer-sitemap {
    display: none;
  }
}

.footer-sitemap-list {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5rem;
}

.footer-sitemap-item:not(:last-child) {
  padding-right: 5rem;
}

#footer .menu-item {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 0.8em;
}

#footer .menu-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 1500px) {
  #footer .menu-item {
    font-size: 1.4rem;
  }
}

#footer .sub-menu {
  margin-top: 1rem;
}

#footer .sub-menu>.menu-item {
  margin-bottom: 0.5em;
}

#footer .sub-menu>.menu-item::before {
  content: '';
  display: inline-block;
  height: 1px;
  width: 0.3em;
  margin-right: 0.5em;
  vertical-align: middle;
  background-color: #c0b283;
}

#footer .menu-item a {
  color: #333;
}

.footer-bottom {
  background-color: #F4F6FA;
  padding: 2rem 0;
}

@media (max-width: 1000px) {
  .footer-bottom {
    align-items: center;
    flex-direction: column-reverse;
  }
}

.footer-bottom-menu {
  display: flex;
}

.footer-bottom-menu .menu-item:not(:last-child) {
  margin-right: 2rem;
}


.footer-links {
  max-width: 1000px;
  margin: 0 auto;
  width: 70%;
}

.footer-links-item {
  width: 100%;
}

.footer-links-item:not(:last-child) {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .footer-links {
    display: flex;
  }

  .footer-links-item {
    margin-right: 10px;
    width: calc(33.33% - 20px / 3);
  }

  .footer-links-item:last-child {
    margin-right: 0;
  }
}


.copyright {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 1rem;
  text-align: center;

  & a {
    color: #666;
  }
}

@media (max-width: 1000px) {
  .copyright {
    margin-top: 3rem;
    font-size: 1.2rem;
  }
}


/*SCROLL TOP*/
.scroll-to-top {
  aspect-ratio: 1/1;
  display: none;
  cursor: pointer;
  position: fixed;
  bottom: 3%;
  right: 3%;
  box-shadow: none;
  background-color: #c0b283;
  padding: 5px;
  transition: all 0.2s ease;
  width: 100px;
  z-index: 2;
}

.scroll-to-top.stop {
  position: absolute;
  top: 50%;
}

.scroll-to-top__desc {
  display: block;
  color: #FFF;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.0rem;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1080px) {
  .scroll-to-top {
    display: none;
    width: 70px;
  }

  .scroll-to-top__desc {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .scroll-to-top {
    width: 60px;
  }

  .scroll-to-top__desc {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    width: 50px;
  }
}

/*  MERGE */

/*MAIN VISUAL
   -------------------------------*/
.main-visual {
  background-color: #CCC;
  overflow: hidden;
  position: relative;
  height: 300px;
  width: 100%;
  z-index: 2;
}

@media (max-width: 767px) {
  .main-visual {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .main-visual {
    height: 200px;
  }
}

/*----- PAGE TITLE -----*/
.page-title {
  color: #FFF;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .page-title {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2.5rem;
  }
}

.page-title .page-title__jp {
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.page-title .page-title__en {
  display: block;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.2;
  margin-top: 0.5em;
}

@media (max-width: 767px) {
  .page-title .page-title__en {
    font-size: 1.5rem;
  }
}

.mv {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.mv img {
  height: 300px;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

@media (max-width: 767px) {
  .mv img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .mv img {
    height: 200px;
  }
}


.main-visual .main-visual-inner {
  position: relative;
  width: 90%;
  height: 100%;
  margin: auto;
  max-width: 1200px;
  z-index: 2;
}

.main-visual .main-visual-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
}


/*----- タイトル -----*/
.section-ttl {
  margin-bottom: 1.5em;
  font-size: 3.0rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.section-ttl>* {
  display: block;
  line-height: 1.2;
}

.section-ttl__en {
  color: #c0b283;
  font-size: 1.4rem;
  font-weight: normal;
  margin-top: 0.7em;
}

@media (max-width: 767px) {
  .section-ttl {
    font-size: 3rem;
  }

  .section-ttl__en {
    font-size: 1.0rem;
  }
}

.section-ttl.u-vt .section-ttl__en {
  margin-top: 0;
}



.u-vt {
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-align: left;
}

.u-vt .text__number {
  -ms-text-combine-horizontal: all;
  -webkit-text-combine: horizontal;
  text-combine-upright: all;
}



/*----- リード -----*/
.section-lead {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5rem;

}

@media (max-width: 767px) {
  .section-lead {
    font-size: 2rem;
  }
}

.header-lead {
  font-size: 2.6em;
  line-height: 1.5em;
}

@media (min-width: 767px) {
  .header-lead {
    font-size: 4rem;
  }
}

.text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 2em;
}

@media (max-width: 767px) {
  .text {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .pc-center {
    text-align: center;
  }
}


.text-list__item {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 0.5em;
  padding-left: 1em;
  text-indent: -1em;
}

@media (max-width: 767px) {
  .text-list__item {
    font-size: 1.5rem;
  }
}


/*----- パンくず -----*/
#breadcrumb {
  position: relative;
  z-index: 2;
}

#breadcrumb .breadcrumb-inner {
  padding: 20px 0;
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}

@media (max-width: 767px) {
  #breadcrumb .breadcrumb-inner {
    padding: 5% 0;
  }
}

#breadcrumb ul {
  font-size: 0;
  line-height: 0;
}

#breadcrumb ul li {
  display: inline;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 767px) {
  #breadcrumb ul li {
    font-size: 1.2rem;
  }
}

#breadcrumb ul li a {
  color: #333;
}

#breadcrumb ul li:not(:last-child) {
  padding-right: 0.5em;
}

#breadcrumb ul li:not(:first-child)::before {
  content: '\03e';
  display: inline-block;
  padding-right: 0.3em;
  font-size: 1.2rem;
  color: #000;
  font-weight: normal;
}


/* POST
  ----------------------------------------------------*/

.post-list .post {
  display: block;
  font-size: 1.6rem;
  border-bottom: solid 1px #999;
  padding: 1.0em 0;
  text-align: left;
}

@media (max-width:767px) {
  .post-list .post {
    font-size: 1.5rem;
    padding: 1.2em 0;
  }
}

.post .post-info {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .post .post-info {
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .post .post-info {
    margin-bottom: 0.5em;
  }
}

.post .post__date {
  /* color:#999; */
  display: inline-block;
  font-size: 1.4rem;
  margin-right: 1em;
  white-space: nowrap;
}

.post .post__title {
  display: block;
  line-height: 1.4;
  overflow: hidden;
}

@media (min-width:768px) {
  .post .post__title {
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width:767px) {
  .post .post__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 表示したい行数を指定する */
  }
}

@media (min-width:768px) {
  .post .post-inner {
    display: flex;
    align-items: baseline;
  }

  .post .post__date {
    margin-bottom: 0;
    width: 10rem;
  }

  .post .post__title {
    padding-left: 1em;
    width: calc(100% - 10rem);
  }
}

.post .post__cat {
  color: #c0b283;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}


/*----- PAGER -----*/
.pager-area {
  margin: 50px 0 0;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pager .page-numbers {
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

.pager .page-numbers:not(:last-child) {
  margin-right: 1em;
}

.pager .page-numbers.current {
  color: #c0b283;
  text-decoration: none;
}

.pager .page-numbers.prev,
.pager .page-numbers.next {
  color: #333;
  padding: 0;
}

.pager .page-numbers.prev .arrow,
.pager .page-numbers.next .arrow {
  display: inline-block;
  font-size: 2em;
  height: 0.6em;
  width: 0.2em;
}

.pager .page-numbers.prev {
  margin-right: 1.5em;
}

.pager .page-numbers.prev .arrow {
  transform: scaleX(-1);
}

@media (max-width: 767px) {
  .pager .page-numbers {
    font-size: 1.2rem;
  }
}



/*----- PAGING -----*/
.paging {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.paging>* {
  min-width: 2em;
}

.paging a,
.paging .page-link {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  line-height: 1;
  text-align: center;
  transition: all 0.2s ease;
}

.paging .paging-btn {
  max-width: 240px;
  width: 60%;
}

.paging .btn {
  padding: 1em 2em;
  width: auto;
}

.paging .prev-link .arrow,
.paging .next-link .arrow {
  display: inline-block;
  font-size: 2em;
  height: 0.6em;
  width: 0.2em;
}

.paging .prev-link .arrow {
  transform: scaleX(-1);
}

@media (min-width: 768px) {
  .paging {
    justify-content: center;
  }

  .paging>*:not(:last-child) {
    margin-right: 2em;
  }
}




/*----------------------------------------------------
    TOP PAGE
  ----------------------------------------------------*/

#main-visual__top,
#main-visual__top .slick-slider .slick-slide,
#main-visual__top .slick-slider .slick-slide img {
  height: 100vh;
  max-height: 100vh;
  min-height: 650px;
}

@media (max-width: 1080px) {

  #main-visual__top,
  #main-visual__top .slick-slider .slick-slide,
  #main-visual__top .slick-slider .slick-slide img {
    max-height: calc(100vh - 70px);
  }
}

@media (max-width: 480px) {

  #main-visual__top,
  #main-visual__top .slick-slider .slick-slide,
  #main-visual__top .slick-slider .slick-slide img {
    max-height: calc(100vh - 50px);
  }
}


.top-logo {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
}

@media (max-width: 1080px) {
  .top-logo {
    display: none;
  }
}

#main-visual__top.main-visual .main-visual-content {
  justify-content: flex-start;
}

.top-lead-text {
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 5.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 12rem;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(9, 84, 140, 0.3);
}

@media (max-width:767px) {
  .top-lead-text {
    font-size: 9vw;
    margin-top: 8rem;
  }
}

#main-visual__top .slick-slider {
  margin-bottom: 0;
}

@media (min-width:768px) {
  #main-visual__top .slider-sp {
    display: none;
  }
}

@media (max-width:767px) {
  #main-visual__top .slider {
    display: none;
  }
}

#main-visual__top .slick-slider .slick-slide img {
  object-fit: cover;
  object-position: center;
  width: 100%;
}


/*----- HOME PICKUP SECTION -----*/
#home_pickup .section-inner {
  text-align: center;
}

#home_pickup .flex-container {
  margin: auto;
  width: 100%;
}

#home_pickup .section-ttl {
  font-size: 30px;
  margin-bottom: 0;
  text-align: left;
}

@media (min-width: 768px) {
  #home_pickup .section-inner {
    display: flex;
    padding: 50px 0;
  }
}

#home_pickup .flex-container {
  display: flex;
}

#home_pickup .title-area {
  width: 6rem;
}

#home_pickup .flex-container .post-list {
  padding-left: 5rem;
  width: calc(100% - 6rem);
}

@media (max-width:767px) {
  #home_pickup .flex-container .post-list {
    padding-left: 2rem;
  }
}

#home_pickup .section-ttl {
  margin-bottom: 0;
}

#home_pickup .post:first-child {
  padding-top: 0;
}

@media (max-width:767px) {
  #home_history .section-bg {
    background-size: 100% auto;
    background-position: center top;
  }
}

#home_history {

  .section-lead,
  .header-lead {
    letter-spacing: 0.2em;
  }
}

.btn__history {
  background-color: transparent;
}

/*----- HOME BUSNESS SECTION -----*/
#home_business {
  background-color: #eeffff;
}

#home_business .flex-container {
  display: flex;
}

#home_business .flex-container .title-area {
  width: 6rem;
}

#home_business .text-area {
  padding-left: 5rem;
  padding-top: 1.2rem;
  width: calc(100% - 6rem);
}

@media (max-width:767px) {
  #home_business .text-area {
    padding-left: 3rem;
  }
}


.business-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5rem;
}

.business-list .business-item:last-child {
  margin-right: 0;
}

@media (min-width:811px) {
  .business-list {
    margin-left: 11rem;
  }

  .business-list .business-item {
    margin: 0 10px 30px 0;
    width: calc(25% - 30px / 4);
  }

  .business-list .business-item:nth-child(4n) {
    margin-right: 0;
  }
}

@media (max-width:810px) {
  .business-list .business-item {
    width: calc(50% - 3% / 2);
    margin: 0 3% 5% 0;
  }

  .business-list .business-item:nth-child(even) {
    margin-right: 0;
  }
}

.business-item__thumb {
  overflow: hidden;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}

.business-item__thumb img {
  transition: 0.5s;
}

@media (min-width:1081px) {
  .business-item:hover .business-item__thumb img {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
}

@media (max-width:810px) {
  .business-item__thumb {
    border-top-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
  }
}

.business-item__title {
  align-items: center;
  color: #c0b283;
  display: flex;
  font-size: 3.0rem;
  padding: 0.5em 0;
  line-height: 1.4;
}

.business-item__title .jp {
  letter-spacing: 0.1em;
  margin-right: 1rem;
  white-space: nowrap;
}

.business-item__title .en {
  font-size: 1.4rem;
  color: #333;
}

@media (max-width:767px) {
  .business-item__title {
    font-size: 2.0rem;
  }

  .business-item__title .en {
    font-size: 1.0rem;
  }
}



.page-template-aboutus_sdgs #aboutus.sdgs #focus-on-sdgs #inner-section .flex-image .sentence.w670 p span {
  font-size: 20px;
  vertical-align: 3px;
}

@media (max-width:767px) {
  .page-template-aboutus_sdgs #aboutus.sdgs #focus-on-sdgs #inner-section .flex-image .sentence.w670 p span {
    font-size: 15px;
  }
}


.page-template-about_company .outline_download {
  padding: 30px;
  background-color: #f3f6fb;
  max-width: 700px;
  margin: 60px auto 0;
}

.page-template-about_company .outline_download .wrap_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-template-about_company .outline_download .wrap_box .txt_area {
  width: 76%;
}

.page-template-about_company .outline_download .wrap_box .img_area {
  width: 19%;
}

.page-template-about_company #company.section .outline_download .title-header {
  text-align: left;
  font-size: 20px;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #c0b283;
}

.page-template-about_company .outline_download .fz-1518 {
  font-size: 16px;
  margin-bottom: 2.5em;
}

.page-template-about_company .outline_download .wrap_box .txt_area a {
  display: flex;
  font-size: 16px;
  color: #c0b283;
  align-items: center;
}

.page-template-about_company .outline_download .wrap_box .txt_area a img {
  width: 25px;
  height: 30px;
  margin-right: 1em;
}

.page-template-about_company .outline_download .wrap_box .arrow-circle.arrow {
  padding-right: 2em;
}

@media (max-width:767px) {
  .page-template-about_company .outline_download {
    padding: 30px 20px 40px;
    margin-top: 40px;
  }

  .page-template-about_company #company.section .outline_download .title-header {
    text-align: center;
    margin-bottom: 14px;
  }

  .page-template-about_company .outline_download .fz-1518 {
    font-size: 15px;
    margin-bottom: 1em;
  }

  .page-template-about_company .outline_download .wrap_box {
    flex-direction: column;
  }

  .page-template-about_company .outline_download .wrap_box .txt_area {
    width: 100%;
    max-width: 540px;
  }

  .page-template-about_company .outline_download .wrap_box .txt_area img.sp {
    width: 48%;
    margin: 0 auto 2em;
  }

  .page-template-about_company .outline_download .wrap_box .txt_area a {
    justify-content: center;
    font-size: 15px;
  }
}

/*フローティングバナー*/
/*---------- FLOATING BANNER ----------*/
.floating-bnr-area {
  background-color: #c0b283;
  bottom: 120px;
  right: 3%;
  position: fixed;
  transition: 0.5s;
  width: 15%;
  z-index: 10;
}

.floating-bnr-area.hide {
  display: none !important;
}

@media (min-width: 768px) {
  .floating-bnr-area {
    display: none;
    max-width: 200px;
    box-shadow: 0 0 3px rgba(153, 153, 153, 0.7);
  }
}

@media (max-width: 767px) {
  .floating-bnr-area {
    bottom: 0;
    left: 0;
    right: auto;
    margin: 0 auto;
    height: 60px;
    width: calc(100% - 50px);
  }
}

@media (max-width:480px) {
  .floating-bnr-area {
    height: 50px;
  }
}

.floating-bnr {
  display: block;
  height: 100%;
  position: relative;
  transition: 0.5s;
  width: 100%;
}

.floating-bnr-inner {
  display: block;
  height: 100%;
  padding: 2px;
  position: relative;
}

@media (max-width:767px) {
  .floating-bnr-inner {
    padding: 2px;
  }
}


.fl-bnr-thumb {
  aspect-ratio: 1/1;
  background: url(../img/common/fl_bnr.png) center no-repeat;
  background-size: 80%;
  height: 100%;
  margin: 0 auto;
  padding-top: 50%;
  position: relative;
}

.fl-bnr-thumb::before {
  background-color: #f4f6fa;
  z-index: -1;
  content: '';
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

@media (max-width:767px) {
  .fl-bnr-thumb {
    aspect-ratio: 50 / 13;
    background-image: url(../img/common/fl_bnr_sp.png);
    background-size: 330px;
    background-position: center center;
    margin-right: 0;
    padding: 0;
    width: 100%;
  }

}

@media (max-width:480px) {
  .fl-bnr-thumb {
    background-size: 240px;
  }
}

@media (max-width:350px) {
  .fl-bnr-thumb {
    background-size: 90%;
  }
}

.bnr-close-btn {
  color: #333;
  cursor: pointer;
  position: absolute;
  right: -1.0rem;
  top: -1.0rem;
  z-index: 2;
}

.bnr-close-btn .ico-close::before {
  background-image: url(../img/common/btn_close.png);
  margin: 0;
  height: 2em;
  width: 2em;
}

@media (max-width: 767px) {
  .bnr-close-btn {
    display: none;
  }
}