@charset "UTF-8";

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

:root {
  --color-main-black: #111;
  --color-main-glod: #AD9667;
  --color-sub-glod: #CBB486;
}

/* =====================
  base
===================== */

*, *:before, *:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

svg {
  width: 100%;
  height: 100%;
  display: block;
}

#wrapper {
  position: relative;
  overflow: clip;
}

/* =====================
  sa
===================== */

.sa {
  opacity: 0;
  transition: all 2s ease;
  transform: translateY(20px);
}

.sa.show {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------------------------*/
/*	PC
/*-------------------------------------------*/

@media screen and (min-width:900px) {

  /* =====================
    base
  ===================== */

  body {
    font-family: "Noto Serif JP", serif;
    color: var(--color-main-black);
    background: #fff;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body.lang_zh {
    font-family: "Noto Serif SC", serif;
  }

  .pc_none {
    display: none !important;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }

  a {
    text-decoration: none;
    color: #222;
    word-break: break-all;
    transition: .3s;
  }

  a.link {
    color: #1989CF;
    text-decoration: underline;
  }

  .flx {
    display: flex;
  }

  #wrapper {
    position: relative;
    padding-top: 80px;
  }

  .inner {
    width: 980px;
    max-width: 92%;
    margin: 0 auto;
  }

  .contents {
    padding: 48px 0;
  }

  /* =====================
    text
  ===================== */
  
  .text {
    font-size: 16px;
    line-height: 1.6;
  }

  .text p:not(:last-of-type) {
    margin-bottom: 24px;
  }

  .lead {
    text-align: center;
    margin-bottom: 32px;
  }

  .ttl + .lead {
    margin-top: -16px;
  }

  /* =====================
    btn
  ===================== */
  
  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-align: center;
  }

  .btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 48px;
    padding: 0 24px;
    border: 1px solid var(--color-main-glod);
    color: var(--color-main-glod);
    border-radius: 50px;
    background: #fff;
  }

  .btn a:hover {
    background: var(--color-main-glod);
    color: #fff;
  }
  
  /*  newtab
  ------------------------*/

  .newtab {
    padding-right: 24px;
    position: relative;
  }
  
  .newtab::before {
    content: '';
    width: 17px;
    height: 17px;
    display: block;
    background-image: url(../img/common/icon_newtab.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: .3s;
  }

  a:hover .newtab::before {
    background-image: url(../img/common/icon_newtab_w.svg);
  }

  /* =====================
    header
  ===================== */
  
  #header {
    background: #fff;
    width: 100%;
    height: 80px;
    align-items: center;
    padding: 0 48px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }

  #header .logo {
    width: 293px;
  }

  #header .btn {
    margin-left: 29px;
  }

  #header .btn a {
    min-width: 140px;
  }

  .sp_menu {
    margin-left: auto;
    align-items: center;
  }

  /*  g_nav
  ------------------------*/

  #g_nav ul {
    align-items: center;
  }

  #g_nav ul li {
    font-size: 14px;
    margin-right: 20px;
  }

  #g_nav ul li:last-child {
    margin-right: 0;
  }

  #g_nav ul li a,
  #g_nav ul li.has_child {
    transition: .3s;
    cursor: pointer;
  }

  #g_nav ul li a:hover,
  #g_nav ul li.has_child:hover {
    color: var(--color-main-glod);
  }

  #g_nav ul li.has_child {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  #g_nav .child_menu {
    min-width: 240px;
    padding: 26px 16px 16px 16px;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  #g_nav ul li.has_child:hover .child_menu {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

  #g_nav .child_menu li {
    font-size: 14px;
    text-align: center;
    margin: 0 0 8px 0;
  }

  #g_nav .child_menu li:last-child {
    margin-bottom: 0;
  }

  #g_nav .child_menu li br {
    display: block !important;
  }

  #g_nav .child_menu li a {
    display: block;
    color: var(--color-main-glod);
    border: 1px solid var(--color-main-glod);
    background: #fff;
    padding: 8px;
  }

  #g_nav .child_menu li a:hover {
    background: var(--color-main-glod);
    color: #fff;
  }

  /*  bogo_nav
  ------------------------*/
  
  .bogo_nav {
    margin-left: 40px;
    align-items: center;
    font-size: 14px;
  }

  .bogo-language-switcher {
    display: flex;
    align-items: center;
  }

  .bogo-language-switcher li {
    margin: 0 11px;
    position: relative;
  }

  .bogo-language-switcher li::before {
    content: '/';
    position: absolute;
    top: 0;
    right: -13px;
  }

  .bogo-language-switcher li:last-child:before {
    display: none;
  }

  .bogo-language-switcher li.ja {
    order: 1;
  }

  .bogo-language-switcher li.en {
    order: 2;
  }

  .bogo-language-switcher li.zh {
    order: 3;
  }

  .bogo-language-switcher li:not(.current) a {
    color: var(--color-main-glod);
  }

  .bogo-language-switcher li a:hover {
    opacity: .5;
  }

  /* =====================
    ttl
  ===================== */
  
  .ttl {
    font-family: "Marcellus", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin-bottom: 24px;
  }

  #page_home .ttl {
    font-size: 48px;
    margin-bottom: 32px;
  }

  /* =====================
    footer
  ===================== */
  
  #footer {
    border-top: 1px solid var(--color-sub-glod);
    padding: 64px 0 20px;
  }

  #footer .logo {
    width: 293px;
    margin: 0 auto 32px;
  }

  #footer .btn {
    margin-bottom: 32px;
  }

  #footer .btn a {
    width: 240px;
  }

  /*  f_nav
  ------------------------*/

  #f_nav {
    margin-bottom: 35px;
  }
  
  #f_nav ul {
    justify-content: center;
    align-items: center;
    gap: 0 40px;
  }

  #f_nav ul li {
    font-size: 14px;
    letter-spacing: 0.1em;
  }

  #f_nav ul li a:hover {
    opacity: .5;
  }

  /*  privacy
  ------------------------*/
  
  .privacy {
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.1em;
  }
  
  .privacy a:hover {
    opacity: .5;
  }

  /*  address
  ------------------------*/
  
  address {
    margin-top: 87px;
    text-align: center;
    font-weight: 500;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.13em;
  }
  
  /* =====================
    page_fv
  ===================== */
  
  #page_fv {
    padding: 48px 0 0;
  }

  .page_fv_ttl {
    margin-bottom: 0;
  } 

  .page_fv_text {
    margin-top: 16px;
    font-size: 16px;
    text-align: center;
  }
  
  /* =====================
    page
  ===================== */

  #page .inner {
    width: 640px;
  }
  
  #page .post p {
    line-height: 1.62;
  }

  #page .post h2 {
    margin-top: 34px;
    font-weight: 700;
  }

}

/*-------------------------------------------*/
/*	SP
/*-------------------------------------------*/

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

  /* =====================
    base
  ===================== */

  body {
    font-family: "Noto Serif JP", serif;
    color: var(--color-main-black);
    background: #fff;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body.lang_zh {
    font-family: "Noto Serif SC", serif;
  }

  .sp_none {
    display: none !important;
  }

  a {
    text-decoration: none;
    color: var(--color-main-black);
    word-break: break-all;
  }

  a.link {
    color: #1989CF;
    text-decoration: underline;
  }

  .flx {
    display: flex;
  }

   #wrapper {
    position: relative;
    padding-top: 60px;
  }
  
  .inner {
    width: 90%;
    margin: 0 auto;
  }

  .contents {
    padding: 48px 0;
  }

  /* =====================
    text
  ===================== */
  
  .text {
    font-size: 14px;
    line-height: 1.6;
  }

  .text p:not(:last-of-type) {
    margin-bottom: 24px;
  }

  .lead {
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
  }

  .ttl + .lead {
    margin-top: -16px;
  }

  /* =====================
    btn
  ===================== */
  
  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-align: center;
  }

  .btn a {
    display: inline-block;
    min-width: 160px;
    padding: 10px 24px;
    border: 1px solid var(--color-main-glod);
    color: var(--color-main-glod);
    border-radius: 50px;
    background: #fff;
  }

  .lang_en .btn a {
    padding: 10px 31px;
  }

  .btn a:hover {
    background: var(--color-main-glod);
    color: #fff;
  }
  
  /*  newtab
  ------------------------*/

  .newtab {
    padding-right: 24px;
    position: relative;
  }
  
  .newtab::before {
    content: '';
    width: 17px;
    height: 17px;
    display: block;
    background-image: url(../img/common/icon_newtab.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: .3s;
  }

  a:hover .newtab::before {
    background-image: url(../img/common/icon_newtab_w.svg);
  }

  /* =====================
    header
  ===================== */
  
  #header {
    background: #fff;
    width: 100%;
    height: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }

  #header .logo {
    width: 188px;
  }

  #header .btn a {
    width: 200px;
  }

  .sp_menu {
    width: 100%;
    height: calc( 100vh - 60px );
    display: block;
    padding: 60px 5% 0;
    padding-top: 60px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    position: fixed;
    top: 60px;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1000;
  }

  .sp_menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  /*  sp_menu_trigger
  ------------------------*/
  
  .sp_menu_trigger {
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
  }

  .sp_menu_trigger .hum {
    width: 32px;
    height: 22px;
    position: relative;
  }

  .sp_menu_trigger .hum span {
    width: 100%;
    height: 2px;
    display: block;
    background: var(--color-main-black);
    position: absolute;
    left: 0;
    transition: .3s;
  }

  .sp_menu_trigger .hum span:nth-child(1) {
    top: 0;
  }

  .sp_menu_trigger .hum span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .sp_menu_trigger .hum span:nth-child(3) {
    bottom: 0;
  }

  .active .hum span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }

  .active .hum span:nth-of-type(2) {
    opacity: 0;
  }

  .active .hum span:nth-of-type(3){
    transform: translateY(-12px) rotate(45deg);
  }

  /*  g_nav
  ------------------------*/

  #g_nav {
    margin-bottom: 115px;
  }

  #g_nav ul {
    display: block;
  }

  #g_nav ul li {
    font-size: 14px;
    margin-bottom: 43px;
  }

  #g_nav ul li:last-child {
    margin-right: 0;
  }

  #g_nav .child_menu {
    margin-top: 43px;
  }

  #g_nav .child_menu li {
    font-size: 24px;
    margin-bottom: 35px;
  }

  #g_nav .child_menu li:last-child {
    margin-bottom: 0;
  }

  #g_nav .child_menu li a {
    color: var(--color-main-glod);
  }

  /*  bogo_nav
  ------------------------*/
  
  .bogo_nav {
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 56px;
  }

  .bogo-language-switcher {
    display: flex;
    align-items: center;
  }

  .bogo-language-switcher li {
    margin: 0 11px;
    position: relative;
  }

  .bogo-language-switcher li:last-child {
    margin-right: 0;
  }

  .bogo-language-switcher li::before {
    content: '/';
    position: absolute;
    top: 0;
    right: -13px;
  }

  .bogo-language-switcher li:last-child:before {
    display: none;
  }

  .bogo-language-switcher li.ja {
    order: 1;
  }

  .bogo-language-switcher li.en {
    order: 2;
  }

  .bogo-language-switcher li.zh {
    order: 3;
  }

  .bogo-language-switcher li:not(.current) a {
    color: var(--color-main-glod);
  }

  /* =====================
    ttl
  ===================== */
  
  .ttl {
    font-family: "Marcellus", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin-bottom: 24px;
  }

  #page_home .ttl {
    margin-bottom: 32px;
  }

  /* =====================
    footer
  ===================== */
  
  #footer {
    border-top: 1px solid var(--color-sub-glod);
    padding: 48px 0 20px;
  }

  #footer .logo {
    width: 167px;
    margin: 0 auto 32px;
  }

  #footer .btn {
    margin-bottom: 32px;
  }

  #footer .btn a {
    width: 240px;
  }

  /*  f_nav
  ------------------------*/

  #f_nav {
    margin-bottom: 35px;
  }
  
  #f_nav ul {
    display: block;
  }

  #f_nav ul li {
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
  }

  #f_nav ul li:last-child {
    margin-bottom: 0;
  }

  /*  privacy
  ------------------------*/
  
  .privacy {
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.1em;
  }
  
  .privacy a:hover {
    opacity: .5;
  }

  /*  address
  ------------------------*/
  
  address {
    margin-top: 74px;
    text-align: center;
    font-weight: 500;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.13em;
  }
  
  /* =====================
    page_fv
  ===================== */
  
  #page_fv {
    padding: 28px 0 0;
  }

  .page_fv_ttl {
    margin-bottom: 0;
  } 

  .page_fv_text {
    margin-top: 16px;
    font-size: 14px;
    text-align: center;
  }
  
  /* =====================
    page
  ===================== */
  
  #page .inner {
    max-width: 640px;
  }
  
  #page .post p {
    line-height: 1.62;
  }

  #page .post h2 {
    margin-top: 34px;
    font-weight: 700;
  }


 
}