@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #595959;
  --color-white: #ffffff;
  --color-gold: #D39F6B;

  --serif: "Zen Old Mincho", serif;
  --noto: "Noto Sans JP", sans-serif;
}

@media screen and (max-width:767px) {
  :root {
    --header: 10rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1200>> 10px */
  /* font-size: 0.8333vw; */

  font-size: clamp(7.5px, 0.8333vw, 14px);
  scroll-behavior: smooth;
  background: var(--color-white);
}

body {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-black);
  letter-spacing: 0.1em;
  line-height: 1.6;

  background: url(../images/bg.jpg) repeat-y center top;
  background-size: 100% auto;
}

main {
  overflow: hidden;
}

.wrap {
  width: 94.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: .6;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */

.hd {
  font-size: 2.7rem;
  text-align: center;
  color: var(--color-gold);
  letter-spacing: 0.3em;
  margin-bottom: 8rem;

  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.hd span {
  display: block;
  font-size: 1rem;
  color: #B2B2B2;
  letter-spacing: 0.8em;
}

.hd.on {
  opacity: 1;
  transform: translateY(0px);
}

@media screen and (max-width:767px) {
  html {
    /* 600px>> 10px */
    font-size: 1.666666vw;
  }

  body {
    font-size: 1.6rem;
    background: url(../images/bg_sp.jpg) repeat-y center top;
    background-size: 100% auto;
  }

  .wrap {
    width: 100%;

  }

  .sp_narrow {
    width: 41rem;
    margin: 0 auto;
  }



  .hd {
    font-size: 2.9rem;
  }

  .hd span {
    font-size: 1.4rem;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 4rem 0 0;
  transition: .4s;
}

.nav_top {
  height: 8rem;
  position: relative;
  transition: .4s;
}

.nav_top a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav_top a img {
  width: auto;
  max-width: unset;
  height: 8rem;
}

.nav_under {
  padding-top: 2.6rem;
  width: 100%;
  font-size: clamp(3px, 1vw, 14px);
}

.nav_under ul {
  gap: 2em;
}

.nav_under ul li.contact a {
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
}

/* 
header.changeNav {
  padding-top: 2rem;
}

.changeNav .nav_top {
  height: 0;
  opacity: 0;
  pointer-events: none;
} */


.pageTop {
  position: fixed;
  width: 10rem;
  bottom: 12rem;
  right: 2rem;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.pageTop.on {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width:767px) {
  .pageTop {
    bottom: 17rem;
    right: 1rem;
  }

  header,
  header.changeNav {
    position: fixed;
    padding: 2rem 3rem;
    background: var(--color-white);
  }

  .nav_top,
  .nav_top a img {
    height: auto;
  }

  .nav_top a {
    position: static;
    transform: unset;
  }

  .nav_top a img {
    width: 15rem;
  }

  .changeNav .nav_top {
    height: auto;
    opacity: 1;
    pointer-events: fill;
  }

  .nav_under {
    padding: 0;
    font-size: 1em;
  }

  .hamburger {
    position: absolute;
    right: 3rem;
    top: 0;
    width: 4rem;
    height: 10rem;
    cursor: pointer;
    z-index: 300;
    transition: all .1s ease-out;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 0.5rem;
    background-color: #D39F6B;
    transition: all .4s ease-out;
    transform: translateX(-50%);
  }

  .hamburger__line--1 {
    top: 35%;
  }

  .hamburger__line--2 {
    top: 50%;
  }

  .hamburger__line--3 {
    top: 65%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(45deg);
    top: 50%;
    background-color: var(--color-white);
  }

  .open_nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-45deg);
    top: 50%;
    background-color: var(--color-white);
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-gold);
    transition: all .3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 0 0 10rem 0;
    opacity: 0;
    pointer-events: none;
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }

  .nav_under ul {
    display: block;
    color: var(--color-white);
    padding: 10rem 0;
  }

  .nav_under ul li:first-child {
    border-top: 1px solid var(--color-white);
  }

  .nav_under ul li {
    border-bottom: 1px solid var(--color-white);
  }

  .nav_under ul li a,
  .nav_under ul li.contact a {
    display: block;
    font-size: 3rem;
    padding: 3rem 0 3rem 2.5rem;
  }
}

/*================================================
* obi
================================================*/
#fix_btn {
  background: url(../images/obi.jpg) no-repeat center/cover;
  padding: 0;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 10;

  /* display: none; */
}

#fix_btn .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-white);
}

#fix_btn h2 {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  margin-left: -4rem;
}

#fix_btn h2 img {
  width: 13.5rem;
}


.obi_tel {
  line-height: 1.2;
}

.obi_tel a {
  display: flex;
  align-items: center;
  font-size: 4rem;
  gap: 0.5rem;
  letter-spacing: 0.2em;
}

.obi_tel a img {
  width: 5rem;
  display: block;
}

.obi_tel p {
  font-size: 1.1rem;
}

.obi_mail a {
  font-size: 1.1rem;
  text-align: center;
  background: var(--color-gold);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  display: block;
  line-height: 2;
}


@media screen and (max-width:767px) {
  #fix_btn {
    padding: 2rem 0 0;
    overflow: hidden;
    /* display: block; */
  }

  #fix_btn .wrap {
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 2rem;
  }

  #fix_btn h2 span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }

  #fix_btn h2 img {
    width: 10.5rem;
    margin-bottom: -2rem;
  }

  .obi_tel {
    margin-top: 2rem;
    margin-bottom: 3rem;
    margin-right: 0.5rem;
  }

  .obi_mail a {
    padding: 1rem 1rem;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
  padding-bottom: 10rem;
}

.section {
  padding-top: 10rem;
}

.deco_right,
.deco_left {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  width: 33rem;
  height: 40.7rem;
  pointer-events: none;
}

.deco_right {
  background-image: url(../images/deco_right.png);
  right: -5rem;
}

.deco_left {
  background-image: url(../images/deco_left.png);
  left: -5rem;
}

.deco_right.sp,
.deco_left.sp {
  display: none;
}

.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}


.icon.icon_mail {
  background-image: url(../images/icon_mail.png);
  width: 2.7rem;
  height: 2.2rem;
}

@media screen and (max-width:767px) {
  section {
    padding-bottom: 7rem;
  }

  .section {
    padding-top: 7rem;
  }

  .deco_right.sp,
  .deco_left.sp {
    display: block;
  }
}


/*================================================
 *  footer
 ================================================*/
footer {
  background: url(../images/ft_bg.jpg) no-repeat center top/cover;
  min-height: 42.4rem;
  padding-top: 6rem;
  color: var(--color-white);
  font-family: var(--noto);
  font-size: 1.3rem;
  margin-bottom: 10rem;
}

footer .wrap {
  width: 71rem;
}

.ft_logo {
  width: 19rem;
  margin-bottom: 4em;
}

.ft_under {
  display: flex;
  line-height: 2.5;
}

.ft_address {
  width: 26rem;
}

.ft_menu {
  width: calc(100% - 26rem);
  padding-left: 8rem;
  display: flex;
  gap: 8rem;
  border-left: 1px solid var(--color-white);
}


footer .copy {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 12rem;
  padding-bottom: 3rem;
}

@media screen and (max-width:767px) {
  footer {
    background: url(../images/ft_bg_sp.jpg) no-repeat center top/cover;
    min-height: 65rem;
    margin-bottom: 13rem;
  }

  footer .wrap {
    width: 51rem;
  }

  .ft_logo {
    margin: 0 auto;
  }

  .ft_under {
    flex-wrap: wrap;
  }

  .ft_address {
    text-align: center;
    width: 100%;
    margin: 5rem 0;
    font-size: 2rem;
  }

  .ft_menu {
    width: 100%;
    padding-left: 0;
    justify-content: center;
    display: flex;
    gap: 8rem;
    border-left: none;
    font-size: 2rem;
  }
}


/*================================================
* ani
================================================*/

/* fadeup */
.fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.fadeup.on {
  opacity: 1;
  transform: translateY(0px);
}

.delay01 {
  transition-delay: .1s;
}

.delay02 {
  transition-delay: .2s;
}

.delay03 {
  transition-delay: .3s;
}

.delay04 {
  transition-delay: .4s;
}

.delay05 {
  transition-delay: .5s;
}

.delay06 {
  transition-delay: .6s;
}

.delay08 {
  transition-delay: .8s;
}

@media screen and (max-width:767px) {}