@charset "utf-8";

/*-----------------------------------------------
	common
-----------------------------------------------*/
html {
  scroll-behavior: smooth;
}
body {
	position: relative;
  padding: 48px;
	font-family: "リュウミン R-KL", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 'Noto Serif Japanese', "Yu Mincho", "YuMincho", "ＭＳ Ｐ明朝", serif;
  color: #000;
	font-size: 18px;
  line-height: 1.8;
}
.main {
  overflow: hidden;
}
.f-disp { font-family: "A1 Mincho", serif; }
.wrap {
  width: 66%;
  margin: 0 auto;
}
.sp { display: none; }
@media only screen and (max-width: 767px) {
  body {
    padding: 48px 24px;
    font-size: 16px;
    line-height: 1.6;
  }
  .wrap {
    width: 100%;
  }
  .pc { display: none; }
  .sp { display: block; }
}

/*-----( hover )-----*/
.hov-on {
  display: none;
}
@media (hover: hover) {
  a.op:hover, .op a:hover,
  button.op:hover, .op button:hover {
    cursor: pointer;
    filter: alpha(opacity=80);
    opacity: 0.8;
  }
  .op:hover[aria-disabled=true], .op:hover[disabled] {
    cursor: not-allowed;
    filter: alpha(opacity=100);
    opacity: 1;
	}
  a:hover .hov-off {
    display: none;
  }
  a:hover .hov-on {
    display: inline;
  }
}

/*-----( cmn-link-01 )-----*/
.cmn-link-01 {
  display: flex;
  align-items: center;
  color: #0078E7;
  text-decoration: none;
}
.cmn-link-01__icon {
  display: block;
  width: 17px;
  margin: 0 0 4px 18px;
}
.cmn-link-01__txt {
  transition: .8s;
}

@media (hover: hover) {
  .cmn-link-01:hover .cmn-link-01__txt {
    color: #7d7d7d;
    transform: rotateX(360deg);
  }
}

@media only screen and (max-width: 767px) {
  .cmn-link-01__2row {
    display: block;
  }
  .cmn-link-01__2row .cmn-link-01__icon {
    display: inline-block;
    margin: 0 0 0 92px;
  }
}

/*-----( scroll-mgt )-----*/
.scroll-mgt {
	scroll-margin-top: 60px;
}
@media only screen and (min-width:768px) {
	.scroll-mgt {
		scroll-margin-top: 30px;
	}
}

/*-----------------------------------------------
	header
-----------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
}
.header-wrap {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 96px);
  margin: 0 auto;
  padding: 20px 0 0;
}
.header-menu__btn {
  color: #000;
  font-size: 12px;
  letter-spacing: 0.2em;
}

@media (hover: hover) {
  .header-menu__btn:hover {
    color: #7d7d7d;
  }
}

@media only screen and (max-width: 767px) {
  .header-wrap {
    width: calc(100% - 48px);
  }
}

/*-----------------------------------------------
  nav
-----------------------------------------------*/
.nav-wrap {
  position: fixed;
  top: 0;
  right: -320px;
  z-index: 101;
  width: 320px;
  height: 100%;
  background: #fff;
  border-left: 1px solid #000;
  overflow-y: scroll;
  transition: all .4s ease-out;
}
.nav-wrap[aria-hidden="false"] {
  transition: all .4s ease-out;
  transform: translateX(-320px);
}
.nav-wrap-pos {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 104px 0;
}
.nav-links {
  position: relative;
  z-index: 2;
}
.nav__logo {
  display: block;
  width: 40px;
  margin: 0 auto 106px;
}
.nav-list {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
.nav-list li {
  width: 28px;
  margin: 0 14px;
}
.nav-list a {
  color: #000;
  font-size: 18px;
  letter-spacing: 0.225em;
  text-decoration: none;
  writing-mode: vertical-rl;
}
@media (hover: hover) {
  .nav-list a:hover {
    color: #7D7D7D;
  }
}
.nav-util-wrap {
  position: relative;
  z-index: 2;
  display: none;
}
.nav-cat {
  position: absolute;
  top: 402px;
  right: 0;
  z-index: 1;
  width: 86px;
  transform: translateX(40%);
}
.nav-wrap[aria-hidden="false"] .nav-cat {
  animation: cat_nav_on .6s ease-out forwards .4s;
}
@keyframes cat_nav_on {
  0%{ transform: rotate(0deg) translateX(40%); }
  24%{ transform: rotate(0deg) translateX(40%); }
  25%{ transform: rotate(5deg) translateX(30%); }
  49%{ transform: rotate(5deg) translateX(30%); }
  50%{ transform: rotate(-5deg) translateX(20%); }
  74%{ transform: rotate(-5deg) translateX(20%); }
  75%{ transform: rotate(5deg) translateX(10%); }
  99%{ transform: rotate(5deg) translateX(10%); }
  100%{ transform: rotate(0deg) translateX(0%); }
}

@media only screen and (max-width: 767px) {
  .nav-wrap {
    right: -100%;
    width: 100%;
    border-left: none;
  }
  .nav-wrap[aria-hidden="false"] {
    transform: translateX(-100%);
  }
  .nav-wrap-pos {
    padding: 80px 0 0;
    height: 100%;
  }
  .nav-links {
    display: flex;
    flex-direction: row-reverse;
    width: 83.2%;
    margin: 0 auto;
  }
  .nav__logo {
    flex-shrink: 0;
    margin: 0;
  }
  .nav {
    width: calc(100% - 110px);
    margin: 0 13% 0 0;
  }
  .nav-list {
    justify-content: space-between;
    padding: 107px 0 0;
  }
  .nav-list li {
    margin: 0;
  }
  .nav-list a {
    letter-spacing: 0.22em;
  }
  .nav-util-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 102;
    display: block;
    width: 100%;
    padding: 0 0 18px;
  }
  .nav-util {
    display: flex;
    width: 83.2%;
    margin: 0 auto;
  }
  .nav-util a {
    color: #000;
    text-decoration: none;
  }
  .nav__tel {
    width: 60%;
    padding: 0 0 5px;
    border-right: 1px solid #000;
  }
  .nav__tel-01 {
    padding: 0 0 5px 10px;
    font-size: 14px;
  }
  .nav__tel-02 {
    display: flex;
    align-items: center;
  }
  .nav__tel-icon {
    width: 20px;
    margin: 0 9px 0 0;
  }
  .nav__tel-num {
    font-size: 20px;
  }
  .nav__contact {
    width: 40%;
  }
  .nav__contact-txt {
    padding: 0 0 5px 22px;
    font-size: 14px;
    text-align: center;
  }
  .nav__contact-icon {
    width: 28px;
    margin-left: 48%;
  }
  .nav-cat {
    top: 450px;
    width: 90px;
  }
}

/*-----------------------------------------------
  page
-----------------------------------------------*/
.cmn-hero-bg {
  width: 100%;
  height: 320px;
  margin: 0 0 84px;
  border: 1px solid #000;
}
.page-head {
  display: flex;
  align-items: flex-start;
}
.page-head__ttl {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 17%;
  padding: 0 2% 0 0;
  font-size: 28px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.page-head__subttl {
  display: block;
  width: 64px;
  white-space: nowrap;
  margin: 67px 0 83px;
  border-bottom: 1px solid #000;
  font-size: 20px;
  font-style: italic;
}
.page-head__subttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 14px 0 3px;
  background: #000;
}

@media only screen and (max-width: 767px) {
  .cmn-hero-bg {
    height: 120px;
    margin: 0 0 64px;
  }
  .page-head {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  .page-head__ttl {
    margin-bottom: 55px;
  }
  .page-head__subttl {
    margin: 60px 0 70px;
  }
}

/*-----------------------------------------------
  biz-list-item
-----------------------------------------------*/
.biz-list-item {
  display: flex;
}
.biz-list-item__num {
  display: block;
  flex-shrink: 0;
  width: 102px;
  height: 102px;
  padding: 0 8px 0 0;
  margin: 0 24px 0 0;
  background: url(../img/common/bg_biz_item.svg) left top / cover no-repeat;
  text-align: right;
  font-size: 36px;
  line-height: 1.2;
  font-style: italic;
}
.biz-list-item__ttl {
  display: block;
  padding: 5px 0 0;
  font-size: 22px;
}

@media only screen and (max-width: 767px) {
  .biz-list-item {
    align-items: center;
  }
  .biz-list-item__num {
    width: 82px;
    height: 82px;
    padding: 0;
    margin: 0 38px 0 0;
    font-size: 28px;
    line-height: 1.2;
  }
  .biz-list-item__ttl {
    padding: 0;
    font-size: 20px;
  }
  
}

/*-----------------------------------------------
  cmn-contact
-----------------------------------------------*/
.cmn-contact {
  position: relative;
  width: 100%;
  max-width: 875px;
  margin: 0 auto;
  padding: 28px 10px 27px;
  border: 1px solid #000;
}
.cmn-contact::before,
.cmn-contact::after {
  position: absolute;
  content: "";
  display: block;
  width: 120px;
  height: 120px;
}
.cmn-contact::before {
  top: 4px;
  left: -8px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.cmn-contact::after {
  bottom: 4px;
  right: -7px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.cmn-contact__ttl {
  margin: 0 0 15px;
  font-size: 24px;
  text-align: center;
}
.comn-contact__txt {
  margin: 0 0 13px;
  text-align: center;
}
.cmn-contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cmn-contact-box a {
  color: #000;
  text-decoration: none;
}
.cmn-contact-tel {
  display: flex;
  align-items: center;
  margin: 0 42px 0 0;
}
.cmn-contact-form {
  display: flex;
  align-items: center;
}
.cmn-contact-icon__tel {
  width: 20px;
  margin: 0 11px 4px 0;
}
.cmn-contact-icon__form {
  width: 24px;
  margin: 0 10px 2px 0;
}
.cmn-contact-tel .cmn-contact-box__txt {
  font-size: 24px;
  font-style: italic;
}
.cmn-contact-form .cmn-contact-box__txt {
  font-size: 18px;
}

@media (hover: hover) {
  .cmn-contact-box a:hover {
    color: #0078E7;
  }
}

@media only screen and (max-width: 767px) {
  .cmn-contact {
    width: 96%;
    padding: 52px 10px 55px;
  }
  .cmn-contact__ttl {
    margin: 0 0 37px;
  }
  .comn-contact__txt {
    margin: 0 0 42px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
  .cmn-contact-box {
    display: block;
  }
  .cmn-contact-tel {
    justify-content: center;
    margin: 0 auto 32px;
  }
  .cmn-contact-form {
    justify-content: center;
  }
  .cmn-contact-icon__form {
    margin: -3px 10px 0 0;
  }
}

/*-----------------------------------------------
  footer
-----------------------------------------------*/
.footer {
  position: relative;
  padding: 64px 0 0;
}
.scroll-top {
  display: block;
  width: 100px;
  padding: 0 47px;
  margin: 0 auto 47px;
}
.footer-wrap {
  display: flex;
  flex-direction: row-reverse;
}

@media only screen and (max-width: 767px) {
  .scroll-top {
    margin: 0 auto 57px;
  }
  .footer-wrap {
    display: block;
  }
}

/*-----( footer-01 )-----*/
.footer-01 {
  display: flex;
  flex-direction: row-reverse;
  width: 50%;
}
.footer-01__ttl {
  display: block;
  width: 40px;
  margin: 0 11% 0 0;
}
.footer-link {
  display: flex;
  flex-direction: row-reverse;
  margin: 94px 16.5% 0 0;
}
.footer-link li {
  width: 24px;
}
.footer-link li + li {
  margin-right: 40%;
}
.footer-link a {
  color: #000;
  letter-spacing: 0.335em;
  text-decoration: none;
  writing-mode: vertical-rl;
}

@media (hover: hover) {
  .footer-link a:hover {
    color: #7d7d7d;
  }
}

@media only screen and (max-width: 1240px) {
  .footer-01__ttl {
    margin: 0 5% 0 0;
  }
  .footer-link {
    margin: 94px 10% 0 0;
  }
  .footer-link li + li {
    margin-right: 24%;
  }
}

@media only screen and (max-width: 767px) {
  .footer-01 {
    width: 100%;
  }
  .footer-01__ttl {
    width: 40px;
    margin: 0 3% 0 0;
  }
  .footer-link {
    margin: 104px 10.5% 0 0;
  }
  .footer-link li {
    width: 24px;
  }
  .footer-link li + li {
    margin-right: 30px;
  }
  .footer-link a {
    font-size: 18px;
    letter-spacing: 0.22em;
  }
}

/*-----( footer-02 )-----*/
.footer-02 {
  width: 50%;
  padding: 257px 0 0;
}
.footer-map-wrap {
  position: relative;
}
.footer-map {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 2.1 / 1;
}
.footer-cat {
  position: absolute;
  top: -80px;
  left: 4px;
  z-index: 1;
  opacity: 1 !important;
  transform: translateY(80px);
}
.footer-catpaw {
  position: absolute;
  top: -20px;
  left: 4px;
  z-index: 3;
  width: 162px;
}
.footer-cat.fade-in {
  opacity: 1 !important;
  animation: cat_footer_on ease-out forwards .4s;
}
@keyframes cat_footer_on {
  0%{ transform: translateY(80px); }
  60%{ transform: translateY(0); }
  100%{ transform: translateY(2px); }
}
.footer-map__txt {
  margin: 39px 0 0;
  font-size: 16px;
}
.copyright {
  position: absolute;
  right: 0;
  bottom: 3px;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 767px) {
  .footer-02 {
    width: 100%;
    padding: 91px 0 0;
  }
  .footer-map {
    aspect-ratio: 1 / 1;
  }
  .footer-cat {
    top: -58px;
    left: 0;
    width: 115px;
    transform: translateY(58px);
  }
  .footer-catpaw {
    top: -15px;
    left: 0;
    width: 115px;
  }
  @keyframes cat_footer_on {
    0%{ transform: translateY(58px); }
    60%{ transform: translateY(0); }
    100%{ transform: translateY(2px); }
  }
  .footer-map__txt {
    margin: 20px 0 72px;
    font-size: 14px;
  }
  .footer .nav-util {
    width: 100%;
  }
  .copyright {
    display: block;
    position: relative;
    margin: 52px auto 0;
    letter-spacing: 0.08em;
    text-align: center;
  }
}

/*-----------------------------------------------
  fade
-----------------------------------------------*/
.fade-item {
  opacity: 0;
  transition: all .4s ease-out;
}
.fade-top {
  transform: translateY(-8%);
}
.fade-bottom {
  transform: translateY(8%);
}
.fade-left {
  transform: translateX(-8%);
}
.fade-right {
  transform: translateX(8%);
}
.fade-item.fade-in {
  opacity: 1;
  transform: none;
}