@charset "UTF-8";
/*
$serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$sansSerif: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
$sansSerifBold: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
$msSerif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$msSansSerif: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
*/
* {
  box-sizing: border-box;
}

:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

:root,
html {
  font-size: 100px;
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  :root,
  html {
    font-size: 6.9444444444vw;
  }
}
@media screen and (max-width: 768px) {
  :root,
  html {
    font-size: 26.0416666667vw;
  }
}

body {
  color: #181818;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.14rem;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
}

img[src$="_sp.jpg"], img[src$="_sp.png"], img[src$="_sp.svg"] {
  display: none;
}
@media screen and (max-width: 768px) {
  img[src$="_sp.jpg"], img[src$="_sp.png"], img[src$="_sp.svg"] {
    display: inline-block;
  }
  img[src$="_sp.jpg"] + img, img[src$="_sp.png"] + img, img[src$="_sp.svg"] + img {
    display: none;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

em {
  font-style: normal;
}

/*//////////////////////////////////////////
//  共通設定
//////////////////////////////////////////*/
.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 0.25rem;
  }
}

.inner-narrow {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .inner-narrow {
    padding: 0 0.25rem;
  }
}

.inner-wide {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .inner-wide {
    padding: 0 0.25rem;
  }
}

.picture {
  display: block;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline;
  }
}
/*セレクトボックスの設定(全ブラウザ共通にするため)
//設定やアイコンは用途に合わせて書き換え*/
select::-ms-expand {
  display: none;
}

label {
  font-size: 0.15rem;
}

.select-box {
  position: relative;
  display: block;
  padding: 0;
  max-width: 0.7rem;
  width: 100%;
  height: 0.38rem;
}
.select-box:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  z-index: 2;
  background: url("../images/arrow-select.svg") 0 0 no-repeat;
  pointer-events: none;
}
.select-box select {
  display: block;
  width: 100%;
  height: 0.38rem;
  padding-left: 1.5em;
  margin: 0;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 0.05rem;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1;
}

.btn-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .btn-area {
    gap: 0.1rem;
    margin-top: 0.4rem;
  }
}
.btn-area li {
  width: calc((100% - 0.4rem) / 2);
}
@media screen and (max-width: 768px) {
  .btn-area li {
    width: 100%;
  }
}

/*/////////////////////////////////////////
//  h2 sec-ttl タイトル
/////////////////////////////////////////*/
.sec-ttl {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-ttl {
    padding: 0 0;
  }
}
.sec-ttl .en {
  font-weight: 700;
  font-size: 30px;
  display: flex;
  position: relative;
  z-index: 0;
  justify-content: center;
  gap: 0.6rem;
}
@media screen and (max-width: 768px) {
  .sec-ttl .en {
    font-size: 0.16rem;
    gap: 0.2rem;
  }
}
.sec-ttl .en:before {
  content: "";
  display: inline-block;
  width: 59px;
  height: 112px;
  position: relative;
  top: -10px;
  background-image: url("../images/common/icon-ttl.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .sec-ttl .en:before {
    top: -0.05rem;
    width: 0.295rem;
    height: 0.56rem;
  }
}
.sec-ttl .en:after {
  content: "";
  display: inline-block;
  width: 59px;
  height: 112px;
  position: relative;
  top: -10px;
  background-image: url("../images/common/icon-ttl.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .sec-ttl .en:after {
    top: -0.05rem;
    width: 0.295rem;
    height: 0.56rem;
  }
}
.sec-ttl.type2 .en {
  max-width: 5rem;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sec-ttl.type2 .en {
    gap: 0.4rem;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .sec-ttl.type3 {
    padding: 0;
    margin-left: -0.1rem;
    margin-right: -0.1rem;
  }
  .sec-ttl.type3 .en {
    justify-content: space-between;
  }
}
.sec-ttl.type4 .en {
  max-width: 5rem;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sec-ttl.type4 .en {
    max-width: initial;
    width: 100%;
    padding: 0;
  }
  .sec-ttl.type4 .en .en {
    justify-content: space-between;
  }
}
.sec-ttl .jp {
  font-size: 20px;
  font-weight: 400;
  color: #a2af47;
  position: relative;
  top: -60px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec-ttl .jp {
    top: -0.3rem;
    font-size: 0.12rem;
  }
}
.sec-ttl .txt {
  font-size: 16px;
  text-align: center;
  position: relative;
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .sec-ttl .txt {
    font-size: 0.14rem;
    margin-top: -0.1rem;
  }
}

.sec-ttl2 {
  text-align: center;
  display: flex;
  position: relative;
  z-index: 0;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
.sec-ttl2:before {
  content: "";
  display: inline-block;
  width: 59px;
  height: 112px;
  position: relative;
  background-image: url("../images/common/icon-ttl.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .sec-ttl2:before {
    width: 0.295rem;
    height: 0.56rem;
  }
}
.sec-ttl2:after {
  content: "";
  display: inline-block;
  width: 59px;
  height: 112px;
  position: relative;
  background-image: url("../images/common/icon-ttl.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .sec-ttl2:after {
    width: 0.295rem;
    height: 0.56rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-ttl2 {
    padding: 0 0;
    gap: 0.2rem;
  }
}
.sec-ttl2 .en {
  font-weight: 700;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .sec-ttl2 .en {
    font-size: 0.16rem;
  }
}

.sec-ttl-box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 1.8rem;
  gap: 0.2rem 0.8rem;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .sec-ttl-box {
    height: auto;
    flex-wrap: nowrap;
    gap: 0.1rem;
  }
}
.sec-ttl-box .en {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  width: 3.9rem;
}
@media screen and (max-width: 768px) {
  .sec-ttl-box .en {
    font-size: 0.5rem;
    width: 100%;
  }
}
.sec-ttl-box .jp {
  font-size: 0.2rem;
  color: #a2af47;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sec-ttl-box .jp {
    font-size: 0.14rem;
  }
}
.sec-ttl-box p {
  font-size: 0.2rem;
  line-height: 1.75;
  padding-top: 0.1rem;
  width: calc(100% - 0.8rem - 3.9rem);
}
@media screen and (max-width: 768px) {
  .sec-ttl-box p {
    width: 100%;
    font-size: 0.14rem;
  }
}

.btn-more {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 2.85rem;
  height: 2.85rem;
  background: #a5bc73;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 100%, 100% 100%, 100% 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .btn-more {
    width: 1.425rem;
    height: 1.425rem;
  }
}
.btn-more:before {
  content: "";
  display: inline-block;
  width: 0.37rem;
  height: 0.32rem;
  margin-top: 1.2rem;
  margin-left: 1rem;
  background-image: url("../images/common/icon-more.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .btn-more:before {
    width: 0.185rem;
    height: 0.16rem;
    margin-top: 0.6rem;
    margin-left: 0.5rem;
  }
}
.btn-more span {
  font-size: 0.2rem;
  font-weight: 700;
  display: block;
  margin-left: 1rem;
  margin-top: 0.05rem;
}
@media screen and (max-width: 768px) {
  .btn-more span {
    font-size: 0.12rem;
    margin-left: 0.5rem;
    margin-top: 0.025rem;
  }
}

/*/////////////////////////////////////////
//  ボタン共通
/////////////////////////////////////////*/
.btn {
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn.arrow {
  height: 100px;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  border: 10px solid #cacaca;
  transition: linear 0.2s all;
}
@media screen and (max-width: 768px) {
  .btn.arrow {
    border: 0.05rem solid #cacaca;
    font-size: 0.14rem;
    height: 0.5rem;
  }
}
.btn.arrow:hover {
  border: 10px solid rgba(202, 202, 202, 0.5);
}
.btn.arrow:hover:before {
  left: 0.65rem;
}
.btn.arrow:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 38px;
  position: absolute;
  margin: auto 0;
  top: 0;
  bottom: 0;
  left: 0.55rem;
  transition: linear all 0.2s;
  background-image: url("../images/common/icon-arrow.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .btn.arrow:before {
    width: 0.085rem;
    height: 0.19rem;
    left: 0.25rem;
  }
}

/*//////////////////////////////////////////
//  header
//////////////////////////////////////////*/
#mainHeader {
  background: transparent;
  width: 100%;
  position: fixed;
  transition: linear all 0.2s;
  z-index: 10;
}
#mainHeader.is-animation {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding-bottom: 10px;
}
#mainHeader .h-inner {
  align-items: center;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #mainHeader .h-inner {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #mainHeader .header-top {
    display: none;
    visibility: hidden;
  }
}
#mainHeader .header-top .top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
#mainHeader .header-top .top-nav li {
  width: 200px;
  border-radius: 0 0 20px 20px;
}
#mainHeader .header-top .top-nav li a {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  padding-bottom: 0.2em;
  font-weight: 500;
  transition: linear all 0.2s;
}
#mainHeader .header-top .top-nav li a:hover {
  opacity: 0.8;
}
#mainHeader .header-top .top-nav li.to-owner {
  background: #e4f1c4;
  color: #3a5009;
  border: 1px solid #a2af47;
}
#mainHeader .header-top .top-nav li.la-switch {
  background: #a5bc73;
  color: #fff;
}
#mainHeader .header-top .top-nav li.la-switch a {
  gap: 6px;
}
#mainHeader .header-top .top-nav li.la-switch a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/common/icon-world.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#mainHeader .header-bottom {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #mainHeader .header-bottom {
    margin-top: 0;
    padding: 0.25rem 0.24rem 0;
  }
}
#mainHeader .header-bottom .logo {
  width: 116px;
}
@media screen and (max-width: 768px) {
  #mainHeader .header-bottom .logo {
    width: 0.865rem;
  }
}
#mainHeader .header-bottom .header-nav {
  margin-right: auto;
  margin-left: 0.7rem;
  width: auto;
}
@media screen and (max-width: 980px) {
  #mainHeader .header-bottom .header-nav {
    margin-left: auto;
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #mainHeader .header-bottom .header-nav {
    display: none;
  }
}
#mainHeader .header-bottom .header-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.1rem 0.6rem;
  align-items: center;
}
@media screen and (max-width: 980px) {
  #mainHeader .header-bottom .header-nav ul {
    gap: 0.05rem 0.2rem;
  }
}
#mainHeader .header-bottom .header-nav ul li {
  text-align: center;
}
@media screen and (max-width: 980px) {
  #mainHeader .header-bottom .header-nav ul li {
    width: calc((100% - 0.6rem) / 3);
  }
}
#mainHeader .header-bottom .header-nav ul li a {
  font-size: 14px;
  display: block;
}
#mainHeader .header-bottom .btn-flow {
  border-radius: 50px;
  background: #eba601;
  height: 70px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-align: right;
  line-height: 1.5;
  letter-spacing: 0.2em;
  transition: linear all 0.2s;
}
@media screen and (max-width: 768px) {
  #mainHeader .header-bottom .btn-flow {
    display: none;
  }
}
#mainHeader .header-bottom .btn-flow:hover {
  background: rgba(235, 166, 1, 0.8);
}
#mainHeader .header-bottom .btn-flow:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 27px;
  background-image: url("../images/common/icon-house.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#mainHeader .header-bottom .btn-flow span {
  font-size: 13px;
  color: #fff;
}
#mainHeader .header-bottom .btn-flow span em {
  font-size: 11px;
  display: block;
}

.sp-menu {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0.6rem 0 0.6rem;
  padding-left: 0.1rem;
}

.sp-sub-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.1rem;
}
.sp-sub-menu li {
  width: calc((80% - 0.1rem) / 2);
  border-radius: 0.2rem;
}
.sp-sub-menu li a {
  width: 100%;
  height: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.12rem;
  text-align: center;
  line-height: 1;
  font-weight: 500;
  transition: linear all 0.2s;
}
.sp-sub-menu li a:hover {
  opacity: 0.8;
}
.sp-sub-menu li.to-owner {
  background: #e4f1c4;
  color: #3a5009;
  border: 1px solid #a2af47;
}
.sp-sub-menu li.la-switch {
  background: #a5bc73;
  color: #fff;
}
.sp-sub-menu li.la-switch a {
  gap: 0.06rem;
}
.sp-sub-menu li.la-switch a:before {
  content: "";
  display: inline-block;
  width: 0.16rem;
  height: 0.16rem;
  background-image: url("../images/common/icon-world.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.btn-flow-sp {
  border-radius: 50px;
  background: #eba601;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-align: right;
  line-height: 1.5;
  letter-spacing: 0.2em;
  transition: linear all 0.2s;
  margin: 0.2rem auto;
}
.btn-flow-sp:hover {
  background: rgba(235, 166, 1, 0.8);
}
.btn-flow-sp:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 27px;
  background-image: url("../images/common/icon-house.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.btn-flow-sp span {
  font-size: 13px;
  color: #fff;
}
.btn-flow-sp span em {
  font-size: 11px;
  display: block;
}

#footer-contact {
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  #footer-contact {
    padding-top: 0.6rem;
  }
}
#footer-contact .contact-box {
  max-width: 550px;
  width: 100%;
  margin: 40px auto 0;
  border-radius: 30px;
  border: 1px solid #eba601;
  padding: 54px 50px 30px;
}
@media screen and (max-width: 768px) {
  #footer-contact .contact-box {
    padding: 0.3rem 0.2rem;
    margin-top: 0.2rem;
    border-radius: 0.2rem;
  }
}
#footer-contact .contact-box figure {
  max-width: 87px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #footer-contact .contact-box figure {
    max-width: 0.7rem;
  }
}
#footer-contact .contact-box figure img {
  width: 100%;
}
#footer-contact .contact-box h3 {
  text-align: center;
  font-size: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #footer-contact .contact-box h3 {
    font-size: 0.16rem;
  }
}
#footer-contact .contact-box .btn {
  margin-top: 10px;
}
#footer-contact .to-owner a {
  display: flex;
  text-align: center;
  max-width: 880px;
  width: 100%;
  height: 200px;
  margin: 50px auto 0;
  border: 10px solid #a2af47;
  background-image: url("../images/common/back-owner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: linear all 0.2s;
}
#footer-contact .to-owner a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  #footer-contact .to-owner a {
    margin-top: 0.4rem;
    height: auto;
    flex-direction: column;
    padding: 0.2rem;
    background-position: 90% bottom;
  }
}
#footer-contact .to-owner a h3 {
  width: 240px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #footer-contact .to-owner a h3 {
    width: 100%;
    height: initial;
  }
}
#footer-contact .to-owner a h3 em {
  font-size: 30px;
  text-align: center;
  color: #fff;
  line-height: 1;
}
#footer-contact .to-owner a h3 span {
  font-size: 20px;
  text-align: center;
  color: #dee6a8;
  font-weight: 500;
}
#footer-contact .to-owner a p {
  width: calc(100% - 240px);
  height: 180px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  text-align: left;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #footer-contact .to-owner a p {
    width: 100%;
    height: initial;
  }
}

/*/////////////////////////////////////////
//  mainFooter
/////////////////////////////////////////*/
#mainFooter {
  margin-top: 90px;
  border-top: 1px solid #cacaca;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  #mainFooter {
    margin-top: 1rem;
    padding-top: 0.4rem;
    padding-bottom: 0.42rem;
  }
}
#mainFooter .inner-footer {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 0 20px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #mainFooter .inner-footer {
    flex-direction: column;
    padding: 0 0.25rem;
  }
}
#mainFooter .inner-footer .logo-area {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}
@media screen and (max-width: 768px) {
  #mainFooter .inner-footer .logo-area {
    width: 100%;
    gap: 0.15rem;
  }
}
#mainFooter .inner-footer .logo-area figure {
  width: 1.16rem;
}
#mainFooter .inner-footer .logo-area h2 {
  font-size: 0.16rem;
}
@media screen and (max-width: 768px) {
  #mainFooter .inner-footer .logo-area h2 {
    font-size: 0.14rem;
  }
}
#mainFooter .inner-footer .f-nav {
  width: 25%;
  padding-left: 0.3rem;
  border-left: 1px solid #cacaca;
  height: 2.47rem;
  padding-top: 0.1rem;
  font-size: 0.14rem;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  #mainFooter .inner-footer .f-nav {
    width: 100%;
    height: auto;
    border-left: none;
    border-top: 1px solid #cacaca;
    margin-top: 0.2rem;
    padding-top: 0.2rem;
    text-align: center;
    padding-left: 0;
  }
}
#mainFooter .inner-footer .f-nav a {
  transition: linear 0.2s all;
}
#mainFooter .inner-footer .f-nav a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #mainFooter .inner-footer .f-nav dl {
    display: inline-block;
    text-align: left;
  }
}
#mainFooter .inner-footer .f-nav dl dd {
  color: #555555;
}
#mainFooter .inner-footer .f-nav dl dd:before {
  content: "-";
  display: inline-block;
  margin-right: 0.1rem;
  margin-left: 0.1rem;
}
#mainFooter small {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #a2af47;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #mainFooter small {
    font-size: 0.12rem;
    margin-top: 0.4rem;
  }
}

/*/////////////////////////////////////////
//  side-nav
/////////////////////////////////////////*/
#side-nav {
  position: fixed;
  right: 0;
  top: 1.8rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #side-nav {
    width: 100%;
    top: initial;
    bottom: 0;
  }
}
#side-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
@media (max-width: 1436px) {
  #side-nav ul {
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  #side-nav ul {
    overflow: visible;
    flex-direction: row;
    gap: 0;
  }
}
#side-nav li {
  border-radius: 0.3rem 0 0 0.3rem;
  color: #fff;
  gap: 0.25rem;
}
@media (max-width: 1436px) {
  #side-nav li {
    position: relative;
    right: -0.55rem;
    transition: linear all 0.2s;
  }
  #side-nav li:hover {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #side-nav li {
    right: 0;
    width: 50%;
    border-radius: 0;
  }
}
#side-nav li a {
  writing-mode: vertical-rl;
  font-size: 0.14rem;
  color: #fff;
  width: 0.69rem;
  height: 2.53rem;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 768px) {
  #side-nav li a {
    writing-mode: initial;
    letter-spacing: 0.2em;
    height: 0.4rem;
    flex-direction: row;
    gap: 0.1rem;
    width: 100%;
    border-radius: 0;
  }
}
#side-nav li.side-contact {
  background: #a2af47;
}
#side-nav li.side-contact a:before {
  content: "";
  display: inline-block;
  width: 0.39rem;
  height: 0.4rem;
  background-image: url("../images/common/icon-bubble.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #side-nav li.side-contact a:before {
    width: 0.195rem;
    height: 0.2rem;
  }
}
#side-nav li.side-shlist {
  background: #eba601;
}

#page_top {
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  right: 0.1rem;
  bottom: 0.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 0.5;
  font-size: 0.3rem;
  border: 0.02rem solid #cccccc;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #page_top {
    bottom: 0.6rem;
  }
}
#page_top a {
  width: 0.18rem;
  height: 0.1544rem;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #999999;
}

/*//////////////////////////////////////////
//  drawer
//////////////////////////////////////////*/
.drawer.drawer--left .drawer-hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer.drawer--left .drawer-hamburger {
    display: flex;
    max-width: 80px;
    max-height: 80px;
    width: 0.6rem;
    height: 0.6rem;
    left: initial;
    right: 0.15rem;
    top: 0.305rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 0;
    background: #eba601;
    border-radius: 50%;
  }
}
.drawer.drawer--left.drawer-open .drawer-hamburger {
  right: 0.15rem;
  top: 0.305rem;
  left: initial;
}
.drawer.drawer--left .drawer-nav {
  right: initial;
  left: -100vw;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  overflow: scroll;
  top: 0;
  padding: 0.4rem 0.2rem 0;
}
.drawer.drawer--left .drawer-overlay {
  z-index: 98;
  background-color: rgba(0, 0, 0, 0.5);
}
.drawer.drawer--left .drawer-hamburger-icon {
  background-color: #474747;
  margin-top: 0;
  max-width: 45px;
  width: 0.315rem;
}
.drawer.drawer--left .drawer-hamburger-icon,
.drawer.drawer--left .drawer-hamburger-icon:after,
.drawer.drawer--left .drawer-hamburger-icon:before {
  max-height: 5px;
  height: 0.04rem;
  background-image: url("../images/common/icon-ham.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: transparent;
}
.drawer.drawer--left .drawer-hamburger-icon:before {
  max-width: 45px;
  width: 0.315rem;
  top: -0.09rem;
}
.drawer.drawer--left .drawer-hamburger-icon:after {
  top: 0.09rem;
  width: 100%;
}
.drawer.drawer--left.drawer-open .drawer-nav {
  right: 0;
}
.drawer.drawer--left.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
  background-image: none;
}
.drawer.drawer--left.drawer-open .drawer-hamburger-icon:before {
  top: 0;
}
.drawer.drawer--left.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}
.drawer.drawer--left .drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: rotate(0deg);
  vertical-align: middle;
  border-top: none;
  border-right: none;
  border-left: none;
  float: right;
}
.drawer.drawer--left .drawer-dropdown.open .drawer-caret {
  transform: rotate(90deg);
}
.drawer.drawer--left ion-icon {
  --ionicon-stroke-width: 16px;
  color: #474747;
}
.drawer.drawer--left .dr-link,
.drawer.drawer--left .drawer-dropdown-menu-item {
  background: #eeeeee;
}
.drawer.drawer--left .dr-link {
  font-size: 0.18rem;
  padding: 0.8em 0 0.8em 0.75rem;
}
.drawer.drawer--left .drawer-dropdown-menu-item {
  font-size: 0.18rem;
  margin: 0.1em 0;
  padding-left: 1.5em;
  font-weight: normal;
  color: #474747;
}
.drawer.drawer--left .drawer-dropdown-menu li a {
  padding-top: 0.3em !important;
  padding-bottom: 0.3em !important;
}

/*//////////////////////////////////////////
//  アニメーション設定
//////////////////////////////////////////*/
.fu {
  transition: 1s;
  opacity: 0;
  transform: translate3d(0, 10%, 0);
}

.fu.fadeup {
  opacity: 1;
  transform: translateZ(0);
}

.fadeIn {
  transition: all 0.9s linear;
  opacity: 1 !important;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateZ(0);
  }
}
.faderight {
  animation-name: faderight;
}

@keyframes faderight {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*//////////////////////////////////////////
//  slick上書き
//////////////////////////////////////////*/
/* Arrows */
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0rem;
}

.slick-dots {
  position: absolute;
  bottom: -0.3rem;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: -0.25rem;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 0.15rem;
  width: 0.15rem;
  margin: 0 0.05rem;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .slick-dots li {
    height: 0.075rem;
    width: 0.075rem;
  }
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 0.15rem;
  width: 0.15rem;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .slick-dots li button {
    height: 0.075rem;
    width: 0.075rem;
  }
}
.slick-dots li button:before {
  content: "";
  background: #9a9a9a;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 0.15rem;
  height: 0.15rem;
  line-height: 0.15rem;
  text-align: center;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  .slick-dots li button:before {
    height: 0.075rem;
    width: 0.075rem;
  }
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li.slick-active button:before {
  background: #000;
}








    #gt_float_wrapper {
      width: 200px;
      height: auto;
      top: 0 !important;
      right: 0;
      border: 0;
      line-height: 12px !important;
    }
    .gt_float_switcher {
      width: 100%;
      padding: 0 !important;
      box-shadow: none !important;
      background: #a5bc73 !important;
      border-radius: 0 0 20px 20px !important;
      font-size: 12px !important;
    }
    .gt-selected {
      text-align: center !important;
      background: #a5bc73 !important;
    }
    .gt-selected .gt-current-lang {
      position: relative;
      padding: 3px 0 !important;
    }
    .gt-lang-code {
      color: #fff !important;
    }
    .gt_float_switcher-arrow {
      position: absolute;
      right: 10px;
    }
    li.la-switch a:before {
      display: none !important;
    }
    .gt_options {
      text-align: left !important;
    }
    .gt_float_switcher .gt_options a {
      display: block;
      height: auto !important;
      color: #fff !important;
      gap: 0px !important;
      padding-bottom: 0.8em !important;
    }
    .gt_float_switcher img {
      width: 26px !important;
    }
    @media screen and (max-width: 768px) {
      .sp-sub-menu li.la-switch {
        position: relative;
      }
      #gt_float_wrapper {
        overflow: hidden;
        position: absolute !important;
        width: 100%;
        top: 0;
        right: 0 !important;
        border-radius: 0.2rem !important;
        line-height: 1 !important;
      }
      .gt-selected .gt-current-lang {
        padding: 0.7em 0 !important;
      }
      .gt_float_switcher {
        border-radius: 0.2rem !important;
      }
      .gt-selected {
        height: 0.4rem !important;
      }
    }/*# sourceMappingURL=common.css.map */

