@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #000;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}
/* ========== end △ */

body {
  position: relative;
  z-index: 2;
  background-color: #EFEFEF;
}
body::before {
  content: "";
  background: url("../images/bg02.png") repeat center top;
  background-size: cover;
  mix-blend-mode: overlay;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  body img {
    max-width: 100%;
  }
}
/* ========== end △ */

/* ==================================================
	basic layout
================================================== */
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #000;
  overflow: hidden;
  font-size: 15px;
  letter-spacing: 1px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #wrapper {
    font-size: 14px;
  }
}
/* ========== end △ */

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-y: auto;
  line-height: normal;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
  -webkit-transition: All 0.3s ease;
  -moz-transition: All 0.3s ease;
  -o-transition: All 0.3s ease;
}

.ov_hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

a {
  color: #000;
  text-decoration: underline;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

a:hover {
  text-decoration: none;
}



/* サイト幅
-------------------------------------------------- */
.container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}





@media only screen and (max-width: 1200px) {
  .container {
    padding: 0 2%;
  }
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .container {
    max-width: 1180px;
    margin: 0 auto;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
  }
}
/* ========== end △ */

/* ==================================================
	header
================================================== */
#cm-header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  z-index: 9999;
}
#cm-header .header-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 0;
}
#cm-header .header-inner .header-logo {
  width: 226px;
}
#cm-header .header-inner .header-logo .logo_fix {
  display: none;
}
#cm-header .header-inner .header-infor {
  width: calc(100% - 120px);
}
#cm-header.is-visible {
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
#cm-header.is-visible .header-inner {
  padding: 15px 0;
}
#cm-header.is-visible .header-inner .header-logo .logo_ab {
  display: none;
}
#cm-header.is-visible .header-inner .header-logo .logo_fix {
  display: inline-block;
}
#cm-header.is-visible .header-inner .header-infor .gnav ul li a {
  color: #000;
  font-weight: bold;
}
#cm-header.is-visible .header-inner .header-infor .gnav ul li a:after {
  background: #000;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #cm-header .header-inner {
    padding: 10px 2% !important;
  }
  #cm-header .header-inner .header-logo {
    width: 135px;
  }
  #cm-header .header-inner .header-logo a {
    
  }
  #cm-header .header-inner .header-logo a img {
    
  }
  #cm-header .header-inner .header-infor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 48%;
  }
  #cm-header .header-inner .header-infor .navTrigger {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 52px;
    height: 52px;
    padding: 0 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 1001;
  }
  #cm-header .header-inner .header-infor .navTrigger span {
    display: inline-block;
    height: 4px;
    width: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  #cm-header .header-inner .header-infor .navTrigger span:nth-child(1) {
    top: 12px;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  #cm-header .header-inner .header-infor .navTrigger span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: 0;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  #cm-header .header-inner .header-infor .navTrigger span:nth-child(3) {
    bottom: 12px;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  #cm-header .header-inner .header-infor .navTrigger.active {
    background: #2D2A24;
    border: 2px solid #2D2A24;
    padding: 0;
  }
  #cm-header .header-inner .header-infor .navTrigger.active span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    width: 2px;
    height: 20px;
    border-radius: 2px;
  }
  #cm-header .header-inner .header-infor .navTrigger.active span:nth-child(1) {
    -webkit-transform: translate(14px, -1px) rotate(45deg);
            transform: translate(14px, -1px) rotate(45deg);
    left: 10px;
    top: 11px;
  }
  #cm-header .header-inner .header-infor .navTrigger.active span:nth-child(2) {
    opacity: 0;
  }
  #cm-header .header-inner .header-infor .navTrigger.active span:nth-child(3) {
    -webkit-transform: translate(-12px, 0px) rotate(-45deg);
            transform: translate(-12px, 0px) rotate(-45deg);
    left: 10px;
    bottom: 11px;
  }
  #cm-header.is-visible .header-inner {
    padding: 10px 2%;
  }
  #cm-header.is-visible .header-inner .header-logo a img {
    max-width: 221px;
  }
  #cm-header.is-visible .header-inner .header-infor {
    right: 2%;
  }
  #cm-header.is-visible .header-inner .header-infor .navTrigger {
    background: #2D2A24;
    border-color: #2D2A24;
  }
  #cm-header.is-visible.head_opened .header-inner .header-infor {
    width: 100%;
    right: 0;
    top: 0;
  }
  #cm-header.is-visible.head_opened .header-inner .header-infor .navTrigger {
    right: 2%;
    position: absolute;
    top: 10px;
  }
}
/* ========== end △ */

/* ==================================================
	gnav
================================================== */
.lock-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.gnav ul li a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  text-decoration: none !important;
  margin-left: 60px;
}
.gnav ul li a:after {
  position: absolute;
  content: "";
  background: #fff;
  width: 0;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}


/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .gnav ul li a:hover:after {
    width: 100%;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .gnav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #EFEFEF;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border: none;
    padding: 2% 0;
  }
  .gnav.opened {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    left: 0%;
    width: 100%;
    display: block;
    padding: 84px 2% 30px;
  }
  .gnav ul {
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 0 4%;
  }
  .gnav ul li a {
    display: inline-block;
    width: 100%;
    color: #000;
    font-weight: bold;
    margin-left: 0;
    padding: 10px;
  }
  .gnav ul li:not(:last-child) a {
    border-bottom: 1px solid #cdcdcd;
  }
}
/* ========== end △ */

/* ==================================================
	content_area
================================================== */
.a_absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.sec_contact {
  position: relative;
  padding: 130px 0;
  text-align: center;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.sec_contact .style_ttl01 {
  position: relative;
  padding-bottom: 100px;
}
.sec_contact .style_ttl01:after {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid #C1C0BF;
  background: url("../images/arrow_btn_m.png") no-repeat center;
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .sec_contact:hover {
    opacity: 0.5;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .sec_contact {
    padding: 50px 0;
  }
  .sec_contact .style_ttl01 {
    padding-bottom: 60px;
  }
  .sec_contact .style_ttl01:after {
    width: 45px;
    height: 45px;
    background-size: 8px;
  }
}
/* ========== end △ */

/* title set
-------------------------------------------------- */
/* ==================================================
	main_content
================================================== */
.cm-btn a {
  position: relative;
  display: inline-block;
  width: 150px;
  background: #2D2A24;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50px;
  line-height: normal;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 9px 40px 11px 20px;
  margin: 50px auto 0;
  overflow: hidden;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  z-index: 3;
}
.cm-btn a:after {
  position: absolute;
  content: "";
  background: url("../images/arrow_btn_s.png") no-repeat center right 15px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cm-btn a.btn_back {
  text-align: right;
  padding: 9px 20px 11px 40px;
}
.cm-btn a.btn_back:after {
  background: url("../images/arrow_btn_s_back.png") no-repeat center left 15px;
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  .cm-btn a:hover {
    -webkit-box-shadow: inset 0 0 0 2em #b19e8d;
            box-shadow: inset 0 0 0 2em #b19e8d;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  .cm-btn a {
    margin: 25px auto 0;
  }
}
/* ========== end △ */

/* ==================================================
	footer
================================================== */
#footer {
  position: relative;
  padding: 170px 0 160px;
  background: rgba(0, 0, 0, 0.05);
}
#footer .f_main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#footer .f_main .f_infor {
  width: 35%;
}
#footer .f_main .f_infor .main_infor {
  font-size: 12px;
  font-weight: 500;
  margin-top: 40px;
}
#footer .f_main .f_infor .main_infor p {
  line-height: 1.6;
}
#footer .f_main .f_gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .f_main .f_gnav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
}
#footer .f_main .f_gnav ul li a:after {
  position: absolute;
  content: "";
  background: #000;
  width: 0;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

#footer .f_logo img{
  width: 40%;
}
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  #footer .f_main .f_gnav ul li a:hover:after {
    width: 100%;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 768px) {
  #footer .f_main .f_gnav ul li:not(#footer .f_main .f_gnav ul li:last-child) {
    margin-bottom: 20px;
  }
}
/* ========== end △ */
#footer .f_main .f_gnav ul:last-child {
  margin-left: 110px;
}
#footer .f_main .copy_right {
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  color: #808080;
  right: 0;
  bottom: 0;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 767px) {
  #footer {
    padding: 50px 0 30px;
  }
  #footer .f_main {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #footer .f_main .f_infor {
    width: 100%;
    text-align: center;
  }
  #footer .f_main .f_infor .main_infor {
    margin-top: 30px;
  }
  #footer .f_main .f_gnav {
    display: none;
  }
  #footer .f_main .f_gnav ul:last-child {
    margin-left: 0;
  }
  #footer .f_main .f_gnav ul li {
    margin-bottom: 10px;
  }
  #footer .f_main .copy_right {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
/* ========== end △ */

/*====================================================================================
■02.CLEAR FLOAT
====================================================================================*/
.clearfix:after {
  clear: both;
  display: block;
  content: " ";
  height: 0px;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hide these rules from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/*■03.FLEX*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Safari */
  display: -moz-flex;
  /* Firefox */
  display: -ms-flex;
  /* IE */
}

/*justify-content*/
.flex_jus_start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
}

.flex_jus_end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.flex_jus_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}

.flex_jus_between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
}

.flex_jus_around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
}

.flex_jus_ini {
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
  -webkit-justify-content: initial;
  -moz-justify-content: initial;
  -ms-justify-content: initial;
}

/*align-items*/
.flex_align_item_start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
}

.flex_align_item_end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
}

.flex_align_item_stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
}

.flex_align_item_baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
}

.flex_align_item_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
}

.flex_align_item_ini {
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
  -webkit-align-items: initial;
  -moz-align-items: initial;
  -ms-align-items: initial;
}

.flex_container {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*==========================================
■4.Title cm
====================================================================================*/
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

.is-view {
  -o-object-fit: cover;
     object-fit: cover;
  visibility: hidden;
}
.is-view img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 1.5s ease-out;
  transition: 1.5s ease-out;
  opacity: 0;
}
.is-view.active, .is-view.aos-animate {
  visibility: visible;
}
.is-view.active img, .is-view.aos-animate img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}