@charset "UTF-8";
@media screen and (max-width: 1024px) {
  body.open-menu {
    position: fixed;
    width: 100%;
  }
}

.font-en{
  font-family: "Cormorant Garamond", serif;
}
.font-serif{
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.sp{
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}

.main img{
  max-width: 100%;
}

.main figure img{
  width: 100%;
  height: auto;
}

.main{
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .main{
    font-size: calc(3.47vw * 0.8);
  }
}

@media screen and (max-width: 680px) {
  .main{
    font-size: 3.47vw;
  }
}

/* tab */
.tabContainer{
  position: relative;
}
.tabContent{
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s 0.2s;
  width: 100%;
}
.tabContent.active{
  position: relative;
  opacity: 1;
  visibility: visible;
}

/* header */
#pageHeader.header{
  background-color: #fff;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  padding-left: 50px;
  padding-right: 20px;
  line-height: 1;
  transition: all 0.3s;
}
body.is-scrolled #pageHeader.header{
  height: 80px;
}
@media screen and (max-width: 1500px) {
  #pageHeader.header{
    height: 10vw;
    padding-left: 20px;
  }
}

.header-inner{
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.header-innerUpper{
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: calc(100% - 650px);
}
body.is-scrolled .header-innerUpper{
  justify-content: flex-start;
  gap: 0 60px
}

@media screen and (max-width: 1920px) {
  .header-innerUpper{
    width: calc(100% - 33.85vw);
  }
}
@media screen and (max-width: 1500px) {
  body.is-scrolled .header-innerUpper{
    gap: 0 4vw
  }
}

.header-logo{
  width: 280px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
body.is-scrolled .header-logo{
  width: 192px;
}
.header-logo a{
  display: block;
}

@media screen and (max-width: 1920px) {
  .header-logo{
    width: 14.58vw;
  }
  body.is-scrolled .header-logo{
    width: 10vw;
    min-width: 150px;
  }
}

.header-nav{
  height: 100%;
  padding-bottom: 40px;
  display: flex;
  align-items: flex-end;
  transition: all 0.3s;
}
body.is-scrolled .header-nav{
  padding-bottom: 0;
  margin-top: 5px;
  align-items: center;
}

.header-nav-list{
  display: flex;
  gap: 0 36px;
}
.header-nav-listItem a{
  font-size: 19px;
  position: relative;
  display: inline-block;
  padding: 0 10px 5px;
  white-space: nowrap;
}
.header-nav-listItem a::before{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #B99A60;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
}
.header-nav-listItem a::after{
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #B99A60;
  position: absolute;
  bottom: 5px;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0;
  transition: all 0.3s;
}

.header-nav-listItem a:hover::before,
.header-nav-listItem a:hover::after{
  opacity: 1;
}

@media screen and (max-width: 1500px) {
  .header-nav-list{
    gap: 0 2.4vw;
  }
  .header-nav-listItem a{
    font-size: 1.27vw;
  }
}
@media screen and (max-width: 1300px) {
  .header-nav-list{
    gap: 0 1.2vw;
  }
}

header #js-buttonHamburger {
  display: none;
}
.header-nav-text,
.header-nav-toSiteTop{
  display: none;
}
@media screen and (max-width: 1024px) {
  #pageHeader.header{
    height: 24vw;
    padding: 0;
  }
  body.is-scrolled #pageHeader.header{
    height: 24vw;
  }
  .header-inner{
    flex-direction: column;
  }
  .header-innerUpper{
    width: 100%;
    height: 13vw;
    padding-left: 4.8vw;
    box-shadow: 0px 10px 15px -5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
  }
  .header-logo{
    width: calc(35.87vw * 0.7);
  }
  body.is-scrolled .header-logo{
    width: calc(35.87vw * 0.7);
    min-width: auto;
  }

  .header-nav{
    width: 100%;
    height: 100vh;
    padding: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s;
  }
  .header-navInner{
    width: 100%;
    height: 100%;
    padding: 30vw 14vw 14vw;
    overflow-y: auto;
    background-color: #fff;
  }
  body.is-scrolled .header-nav{
    padding: 0;
    margin-top: 0;
  }
  body.is-scrolled .header-navInner{
    padding: 30vw 14vw 14vw;
  }
  header.is-drawerActive .header-nav{
    transform: translateX(0);
    opacity: 1;
  }
  .header-nav-list{
    flex-direction: column;
    gap: 0 0;
  }
  .header-nav-listItem a{
    font-size: calc(6.4vw * 0.7);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(21.33vw * 0.7);
    padding: 0;
    border-bottom: 2px dotted #9F9F9F;
  }
  .header-nav-listItem a::before{
    display: none;
  }
  .header-nav-listItem a::after{
    width: 2.13vw;
    height: 2.13vw;
    background-color: #B99A60;
    position: absolute;
    bottom: 2.26vw;
    right: 1.2vw;
    opacity: 1;
  }

  header #js-buttonHamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8vw 0;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 14vw;
    height: 13vw;
    background-color: #000;
    padding: 0;
  }
  header #js-buttonHamburger .menu-line {
    transition: all 0.4s;
    position: relative;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 1.2vw 0;
    width: 7.73vw;
    margin: 0 auto;
  }
  header #js-buttonHamburger .menu-line .line01,
  header #js-buttonHamburger .menu-line .line02,
  header #js-buttonHamburger .menu-line .line03{
    transition: all 0.4s;
    display: block;
    height: 1px;
    background-color: #fff;
    transform-origin: center;
  }
  header #js-buttonHamburger .menu-line .line01{
    width: 7.73vw;
  }
  header #js-buttonHamburger .menu-line .line02{
    width: 5.6vw;
  }
  header #js-buttonHamburger .menu-line .line03{
    width: 6.4vw;
  }
  header #js-buttonHamburger .btn-txt {
    display: block;
    font-size: 2.8vw;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #fff;
  }
  header #js-buttonHamburger .btn-txt .open{
    opacity: 1;
    visibility: visible;
    position: static;
  }
  header #js-buttonHamburger .btn-txt .close{
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  header.is-drawerActive #js-buttonHamburger .btn-txt .open{
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  header.is-drawerActive #js-buttonHamburger .btn-txt .close{
    opacity: 1;
    visibility: visible;
    position: static;
  }
  header.is-drawerActive #js-buttonHamburger .menu-line .line01{
    transform: translateY(calc(1.2vw + 1px)) rotate(30deg);
  }
  header.is-drawerActive #js-buttonHamburger .menu-line .line02{
    opacity: 0;
  }
  header.is-drawerActive #js-buttonHamburger .menu-line .line03{
    transform: translateY(calc(-1.2vw - 1px)) rotate(-30deg);
    width: 7.73vw;
  }
  header.is-drawerActive #js-buttonHamburger .menu-line {
    background-color: rgba(255,255,255,0);
  }
  .header-nav-text{
    display: block;
    width: 97.73vw;
    max-width: 733px;
    margin-left: -6.4vw;
    margin-top: -6vw;
  }
  .header-nav-toSiteTop{
    width: 100%;
    max-width: 530px;
    height: 14vw;
    display: block;
    margin: 4vw auto 0;
  }
  .header-nav-toSiteTopLink{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #000;
  }
  .header-nav-toSiteTopLink::after{
    content: "";
    display: block;
    width: 1.6vw;
    height: 1.6vw;
    background-color: #fff;
    clip-path: polygon(100% 0,100% 100%,0 100%);
    position: absolute;
    bottom: 0.67vw;
    right: 0.67vw;
  }
  .header-nav-toSiteTopLink .text{
    font-size: 3.8vw;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #fff;
  }
}

@media screen and (max-width: 680px) {
  #pageHeader.header{
    height: 30vw;
  }
  body.is-scrolled #pageHeader.header{
    height: 30vw;
  }
  .header-innerUpper{
    height: 16.33vw;
  }
  .header-logo{
    width: 35.87vw;
  }
  body.is-scrolled .header-logo{
    width: 35.87vw;
  }
  .header-nav-listItem a{
    font-size: 6.4vw;
    height: 21.33vw;
  }
  header #js-buttonHamburger {
    gap: 2.4vw 0;
    width: 17.2vw;
    height: 16.33vw;
  }
  header #js-buttonHamburger .btn-txt {
    font-size: 3.07vw;
  }
  .header-nav-toSiteTop{
    height: 16.27vw;
  }
  .header-nav-toSiteTopLink .text{
    font-size: 4.8vw;
  }
}

/* header-info */
.header-info{
  padding-top: 15px;
  width: 650px;
  transition: all 0.3s;
  white-space: nowrap;
}
body.is-scrolled .header-info{
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-infoInner{
  display: flex;
  justify-content: flex-end;
  gap: 0 19px
}
.header-info-tel {
  display: flex;
  align-items: center;
}

.header-info-list{
  display: flex;
  gap: 0 15px;
}

.header-info-link{
  width: 117px;
  height: 36px;
}

@media screen and (max-width: 1920px) {
  .header-info{
    padding-top: 15px;
    width: 33.85vw;
  }
}
@media screen and (max-width: 1500px) {
  .header-infoInner{
    gap: 0 1.27vw
  }

  .header-info-list{
    gap: 0 1vw;
  }

  .header-info-link{
    width: 7.8vw;
    height: 2.4vw;
  }
}
@media screen and (max-width: 1024px) {
  body.is-scrolled .header-info,
  .header-info{
    width: 100%;
    padding-top: 0;
    height: calc(24vw - 13vw);
    background-color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
  }
  .header-infoInner{
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
  }
  .header-info-tel {
    width: calc(100% / 3);
    height: 100%;
  }
  .header-info-list{
    width: calc(100% - (100% / 3));
    height: 100%;
  }
  .header-info-listItem{
    width: 50%;
    position: relative;
  }
  .header-info-listItem::before{
    content: "";
    display: block;
    width: 2px;
    height: 50%;
    border-left: 2px dotted #9F9F9F;
    position: absolute;
    top: 25%;
    left: 0;
  }
  .header-info-tel .phoneNumber,
  .header-info-link{
    display: block;
    width: 100%;
    height: 100%;
  }
  .header-info-tel .phoneNumber .sp,
  .header-info-link .sp{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: calc(3.47vw * 0.8);
  }
  .header-info-tel .phoneNumber .sp svg{
    width: 1.87vw;
    height: auto;
    margin-right: 0.8vw;
  }
  .header-info-link.line svg,
  .header-info-link.web svg{
    margin-right: 0.8vw;
    width: 4vw;
    height: auto;
  }
  .header-info-link.line svg path,
  .header-info-link.web svg path{
    fill: black;
  }
}

@media screen and (max-width: 680px) {
  body.is-scrolled .header-info,
  .header-info{
    height: calc(30vw - 16.33vw);
  }
  .header-info-tel .phoneNumber .sp,
  .header-info-link .sp{
    font-size: 3.47vw;
  }
}

.header .to-top2 {
  position: fixed;
  z-index: 10;
  bottom: 2px;
  right: 2px;
  width: 122px;
  height: 122px;
}

@media screen and (max-width: 960px) {
  .header .to-top2 {
    top: 66.5%;
    right: 0;
    width: 55px;
    height: 55px;
  }
}


/* MV */
.mv{
  margin-top: 150px;
  position: relative;
}
body.is-scrolled .mv{
  margin-top: 80px;
}
.mv_imgInner img{
  width: 100%;
}
.mv_inner{
  display: flex;
  position: relative;
  z-index: 1;
}
.mv_copyright{
  width: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  padding-top: 150px;
  opacity: 1;
  visibility: visible;
  transition: all 0.4s;
}
.mv_copyright.hide{
  opacity: 0;
  visibility: hidden;
}

.mv_img{
  width: calc(100% - 136px);
}

.mv_text{
  position: absolute;
  right: 4.93vw;
  bottom: 8vw;
  width: 86vw;
}

.mv_copyright small{
  writing-mode: vertical-lr;
  text-orientation: sideways;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

.mv_scroll{
  position: absolute;
  z-index: 2;
  left: 5vw;
  bottom: 0;
  height: 12.5vw;
}

.mv_scroll a{
  display: block;
}

@media screen and (max-width: 1920px) {
  .mv_copyright{
    width: 7vw;
    padding-top: 10vw;
  }
  .mv_img{
    width: calc(100% - 7vw);
  }
}

@media screen and (max-width: 1500px) {
  .mv{
    margin-top: 10vw;
  }
}

@media screen and (max-width: 1024px) {
  .mv{
    margin-top: 24vw;
  }
  body.is-scrolled .mv{
    margin-top: 24vw;
  }
  .mv_inner{
    display: block;
  }
  .mv_copyright{
    display: none;
  }
  .mv_img{
    width: 100%;
  }
  .mv_scroll{
    display: none;
  }
}

@media screen and (max-width: 680px) {
  .mv{
    margin-top: 30vw;
  }
  body.is-scrolled .mv{
    margin-top: 30vw;
  }

}

/* top */
.sec-top{
  margin-top: -60px;
  padding-bottom: 179px;
  position: relative;
  z-index: 2;
}
.top-text01{
  text-align: center;
}
.top-contents{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 189px
}

@media screen and (max-width: 1024px) {
  .sec-top{
    margin-top: -12vw;
    padding-bottom: 15vw;
  }
  .top-text01{
    width: 75.87vw;
    margin: 0 auto;
  }
  .top-contents{
    display: flex;
    flex-direction: column;
    gap: 8vw 0;
    margin-top: 6vw;
    text-align: center;
  }
  .top-text02{
    width: 77.47vw;
  }
  .top-text03{
    width: 78vw;
  }
}

/* recommend */
.sec-recommend{
  padding-top: 190px;
  background-color: #F7F6F3;
  position: relative;
}
.sec-recommendInner{
  position: relative;
  z-index: 2;
}
.recommend-polygon{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  background-color: #fff;
  width: 100%;
  height: 136px;
}
.recommend-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.recommend-title .en{
  font-size: 60px;
  font-style: italic;
  font-weight: 500;
}
.recommend-title .jp{
  margin-top: 12px;
}

.recommend-container .recommend-content{
  display: flex;
  margin-top: 60px;
  background-color: #fff;
  box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.2);
  position: relative;
}
.recommend-container .recommend-content:nth-child(even) .recommend-imgBox{
  order: 2;
}
.recommend-container .recommend-content:nth-child(even) .recommend-textBox{
  order: 1;
}

.recommend-imgBox{
  width: 50%;
  position: relative;
}
.recommend-textBox{
  width: 50%;
  padding: 40px 50px;
  display: flex;
  align-items: center;
}

.recommend-imgBox{
  z-index: 1;
}
.recommend-imgBox figure{
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.recommend-imgBox figure img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.recommend-tag{
  position: absolute;
  top: -10px;
  left: -12px;
  z-index: 2;
}
.recommend-tag span{
  display: flex;
  align-items: center;
  height: 39px;
  padding-left: 21px;
  padding-right: 32px;
  background-color: #DFBF5C;
  color: #fff;
  font-style: italic;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.05em;
  clip-path: polygon(0 0,100% 0, calc(100% - 6px) 50%, 100% 100%, 0 100%);
}
.recommend-tag::before{
  content: "";
  display: block;
  width: 12px;
  height: 5px;
  clip-path: polygon(0 0,100% 0, 100% 100%);
  background-color: #A2852C;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.recommend-text01{
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #B99A60;
}
.recommend-text02{
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.recommend-text03{
  letter-spacing: 0.1em;
  margin-top: 25px;
}

.recommend-info{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
}
.recommend-price .text01{
  font-size: 52px;
  font-weight: 600;
}
.recommend-price .text02{
  font-size: 13px;
  margin: 0 0.3em 0 0.5em;
}

.recommend-viewMore a{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  line-height: 1;
  width: 189px;
  height: 52px;
  position: relative;
}
.recommend-viewMore a::after{
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  right: 3px;
  bottom: 3px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.recommend-viewMore a .text{
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  display: inline-block;
  position: relative;
  bottom: 0.1em;
  margin-right: 5px;
}

@media screen and (max-width: 1260px) {
  .recommend-textBox{
    padding: 3.17vw 3.97vw;
  }
  .recommend-text02{
    font-size: 2.3vw;
  }
}

@media screen and (max-width: 1080px) {
  .recommend-info{
    margin-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .sec-recommend{
    padding-top: 15.6vw;
    padding-bottom: 17.33vw;
  }
  .recommend-polygon{
    display: none;
  }
  .recommend-title .en{
    font-size: 10.67vw;
  }
  .recommend-title .jp{
    margin-top: 3.47vw;
  }
  .recommend-container .recommend-content{
    display: block;
    margin-top: 10.67vw;
    box-shadow: none;
  }
  .recommend-imgBox{
    width: 100%;
  }
  .recommend-textBox{
    width: 100%;
    padding: 6.67vw 6.67vw;
    display: block;
    text-align: center;
  }
  .recommend-tag{
    top: -1.33vw;
    left: -1.6vw;
  }
  .recommend-tag span{
    height: 6.27vw;
    padding-left: 2.13vw;
    padding-right: 3.47vw;
    font-size: 3.73vw;
    clip-path: polygon(0 0,100% 0, calc(100% - 0.8vw) 50%, 100% 100%, 0 100%);
  }
  .recommend-tag::before{
    width: 1.6vw;
    height: 0.67vw;
    bottom: -0.67vw;
  }
  .recommend-text02{
    font-size: calc(5.6vw * 0.8);
    padding-bottom: 4vw;
  }
  .recommend-text03{
    margin-top: 3.2vw;
  }
  .recommend-info{
    margin-top: 3.33vw;
    display: block;
  }
  .recommend-price .text01{
    font-size: 9.07vw;
    margin-right: 2vw;
  }
  .recommend-price .text02{
    font-size: 2.93vw;
  }
  .recommend-viewMore a{
    width: 45.33vw;
    height: 11.47vw;
    margin: 2.4vw auto 0;
  }
  .recommend-viewMore a::after{
    width: 1.6vw;
    height: 1.6vw;
    right: 1.0vw;
    bottom: 1.0vw;
  }
  .recommend-viewMore a .text{
    font-size: 4.27vw;
    margin-right: 1.6vw;
  }
  .recommend-viewMore a .icon svg{
    width: 3vw;
    height: auto;
  }
}

@media screen and (max-width: 680px) {
  .recommend-text02{
    font-size: 5.6vw;
  }
}

/* reason */
.sec-reason{
  background-color: #fff;
  padding-top: 153px;
  padding-bottom: 160px;
  position: relative;
}
.reason-polygon{
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: calc(50% + 522px);
  height: calc(100% - 324px);
  background-color: #F7F6F3;
}
.sec-reasonInner{
  position: relative;
  z-index: 1;
}

.reason-title{
  display: flex;
  margin-left: -50px;
}
.reason-titleInner{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reason-titleInner .jp{
  margin-top: 50px;
  font-weight: 400;
}

.reason-container{
  display: flex;
  justify-content: flex-end;
}
.reason-containerInner{
  max-width: 932px;
  width: 100%;
}

.reason-content{
  position: relative;
  display: flex;
}
.reason-imgBox{
  position: absolute;
  z-index: 0;
  top: 0;
}
.reason-textBox{
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 60px 50px 45px;
  margin-top: 112px;
  width: 550px;
}

.reason-num{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 180px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  color: rgba(185,154,96,0.3);
}

.reason-text01{
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.reason-text02{
  font-size: 15px;
  line-height: 1.75;
  margin-top: 20px;
}

.reason-containerInner .reason-content{
  margin-top: 100px;
}
.reason-containerInner .reason-content:first-child{
  margin-top: 0;
}
.reason-containerInner .reason-content:nth-child(odd) .reason-imgBox{
  right: 0;
}
.reason-containerInner .reason-content:nth-child(even) .reason-imgBox{
  left: 0;
}

.reason-containerInner .reason-content:nth-child(even){
  justify-content: flex-end;
}

.reason-containerInner .reason-content:nth-child(1) .reason-num{
  top: -130px
}
.reason-containerInner .reason-content:nth-child(2) .reason-num{
  top: -135px
}
.reason-containerInner .reason-content:nth-child(3) .reason-num{
  top: -160px
}

@media screen and (max-width: 1320px) {
  .reason-title{
    margin-left: 0px;
  }
}

.large-img01{
  margin-top: 200px;
  margin-right: 85px;
}
@media screen and (max-width: 1500px) {
  .large-img01{
    margin-right: 5.67vw;
  }
}

@media screen and (max-width: 1024px) {
  .sec-reason{
    padding-top: 17.47vw;
    padding-bottom: 17.33vw;
    background-color: #F7F6F3;
  }
  .reason-polygon{
    width: 100%;
    height: 41.2vw;
    background-color: #fff;
    bottom: auto;
    top: 0;
    left: 0;
  }
  .reason-title{
    display: block;
    margin-left: 0;
  }
  .reason-titleInner{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .reason-titleInner .en{
    width: 60.53vw;
  }
  .reason-titleInner .jp{
    margin-top: 9.33vw;
  }
  .reason-container{
    margin-top: 13.33vw;
  }
  .reason-containerInner .reason-content{
    display: block;
    padding-top: 35.73vw;
    margin-top: 6.8vw;
  }
  .reason-imgBox{
    width: 53.33vw;
  }
  .reason-textBox{
    background-color: #fff;
    padding: 9.33vw 5.33vw 5.33vw;
    margin-top: 0;
    width: calc(100% - 3vw);
  }
  .reason-num{
    left: 50%;
    transform: none;
    font-size: 24vw;
  }
  .reason-text01{
    font-size: calc(5.33vw * 0.8);
  }
  .reason-text02{
    font-size: calc(3.47vw * 0.8);
    margin-top: 5.33vw;
  }
  .reason-containerInner .reason-content:nth-child(1) .reason-num{
    top: -16vw;
    left: 15.2vw;
  }
  .reason-containerInner .reason-content:nth-child(2) .reason-num{
    top: -16vw;
    left: auto;
    right: 15.2vw;
  }
  .reason-containerInner .reason-content:nth-child(3) .reason-num{
    top: -20vw;
    left: 15.2vw;
  }
  .reason-containerInner .reason-content:nth-child(2) .reason-textBox{
    margin-left: 3vw;
  }
  .large-img01{
    margin-top: 18vw;
    margin-right: 0;
  }
}

@media screen and (max-width: 680px) {
  .reason-text01{
    font-size: 5.33vw;
  }
  .reason-text02{
    font-size: 3.47vw;
  }
}

/* voices */
.sec-voices{
  position: relative;
  background-color: #F7F6F3;
  padding-top: 111px;
  padding-bottom: 150px;
}
.voices-polygon{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 205px;
  background-color: #fff;
}
.sec-voicesInner{
  position: relative;
  z-index: 1;
}

.voices-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.voices-title .en{
  font-size: 150px;
  font-style: italic;
  font-weight: 500;
}
.voices-title .jp{
  margin-top: 12px;
  font-weight: 400;
}

.voices-container{
  margin-top: 99px;
}
.voices-slideItemInner{
  background-color: #fff;
  padding: 50px 50px 30px;
  margin-left: 30px;
  margin-right: 30px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%);
}

.voices-slideItem-info{
  display: flex;
  gap: 0 19px
}
.voices-slideItem-infoImg{
  width: 83px;
}
.voices-slideItem-infoImg figure{
  width: 83px;
  height: 83px;
  border-radius: 100%;
  overflow: hidden;
}
.voices-slideItem-infoImg figure img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.voices-slideItem-infoText{
  width: calc(100% - 102px);
  line-height: 1;
  padding-top: 18px;
}
.voices-slideItem-infoTextName .text01{
  font-size: 20px;
}
.voices-slideItem-infoTextName .text02{
  font-size: 15px;
}
.voices-slideItem-infoTextStars{
  display: flex;
  align-items: flex-start;
  gap: 0 2px;
  margin-top: 14px;
}
.voices-slideItem-infoTextStars img{
  width: calc(23px * 0.9);
}

.voices-slideItem-comment{
  font-size: 15px;
  margin-top: 30px;
}

.voices_arrow.prev{
  position: absolute;
  z-index: 5;
  top: calc(50% - 20px);
  left: calc(25% + 10px);
}
.voices_arrow.next{
  position: absolute;
  z-index: 5;
  top: calc(50% - 60px);
  right: calc(25% + 10px);
}
.voices_arrow:hover{
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .sec-voices{
    padding-top: 14.53vw;
    padding-bottom: 17.33vw;
  }
  .voices-polygon{
    height: 27.07vw;
  }
  .voices-title .en{
    font-size: 18.67vw;
  }
  .voices-title .jp{
    margin-top: 4vw;
  }
  .voices-container{
    margin-top: 13.33vw;
  }
  .voices-slideItemInner{
    background-color: #fff;
    padding: 6.67vw 4.67vw 8.8vw;
    margin-left: 2.73vw;
    margin-right: 2.73vw;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10.67vw), calc(100% - 10.67vw) 100%, 0 100%);
  }
  .voices-slideItem-info{
    gap: 0 2.53vw
  }
  .voices-slideItem-infoImg{
    width: 15.47vw;
  }
  .voices-slideItem-infoImg figure{
    width: 15.47vw;
    height: 15.47vw;
  }
  .voices-slideItem-infoText{
    width: calc(100% - 15.47vw - 2.53vw);
    padding-top: 3vw;
  }
  .voices-slideItem-infoTextName .text01{
    font-size: 4.2vw;
  }
  .voices-slideItem-infoTextName .text02{
    font-size: 2.93vw;
  }
  .voices-slideItem-infoTextStars{
    gap: 0 2px;
    margin-top: 2.53vw
  }
  .voices-slideItem-infoTextStars img{
    width: 4.27vw;
  }

  .voices-slideItem-comment{
    font-size: calc(3.73vw * 0.8);
    margin-top: 4vw;
  }

  .voices_arrow.prev{
    top: calc(50% - 2.135vw);
    left: 6vw;
    width: 8vw;
  }
  .voices_arrow.next{
    top: calc(50% - 2.135vw);
    right: 6vw;
    width: 8vw;
  }
}

@media screen and (max-width: 680px) {
  .voices-slideItem-comment{
    font-size: 3.73vw;
  }
}

/* location */
.sec-location{
  padding-top: 180px;
}
.location-title{
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.location-title .en{
  font-size: 150px;
  font-style: italic;
  font-weight: 500;
}
.location-title .jp{
  margin-top: 12px;
  font-weight: 400;
}

.location-tabList{
  display: flex;
  flex-wrap: wrap;
  gap: 19px 19px;
  margin-top: 69px;
}

.location-tabListItem{
  width: calc((100% - 76px) / 5);
}
.location-tabListItemInner{
  width: 100%;
  height: 0;
  padding-top: 35.71%;
  position: relative;
}
.location-tabListItem-btn{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/2411/location-tabBtn-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-tabListItem-btnInner{
  display: flex;
  flex-direction: column;
  position: relative;
  line-height: 1;
}

.location-tabListItem-btn-num{
  color: #B99A60;
}
.location-tabListItem-btn-text{
  font-size: 20px;
  margin-top: 10px;
}
.location-tabListItem-btn-text.size-s{
  line-height: 1.3;
}

@media screen and (max-width: 1320px) {
  .location-tabListItem-btn-num{
    font-size: 1.21vw;
  }
  .location-tabListItem-btn-text{
    font-size: 1.51vw;
    margin-top: 0.76vw;
  }
  .location-tabListItem-btn-text.size-s{
    font-size: 1.21vw;
  }
}

@media screen and (max-width: 1024px) {
  .sec-location{
    padding-top: 13.73vw;
  }
  .location-title{
    align-items: center;
  }
  .location-title .en{
    font-size: 18.67vw;
  }
  .location-title .jp{
    margin-top: 4vw;
  }
  .location-tabList{
    gap: 2vw 2vw;
    margin-top: 10.67vw;
  }
  .location-tabListItem{
    width: calc((100% - 8vw) / 5);
  }
  .location-tabListItemInner{
    padding-top: 100%;
  }
  .location-tabListItem-btn{
    background-image: url(img/2411/sp/location-tabBtn-bg.png);
  }
  .location-tabListItem-btnInner{
    height: 100%;
    padding-top: 1vw;
  }
  .location-tabListItem-btn-num{
    font-size: 3.0vw;
    height: 3vw;
    display: inline-block;
    white-space: nowrap;
  }
  .location-tabListItem-btn-text{
    font-size: 3.0vw;
    margin-top: 0;
    height: calc(100% - 3vw);
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
  .location-tabListItem-btn-text.size-s{
    font-size: 2.67vw;
    margin-top: 0;
  }
}

.location-container{
  padding-top: 84px;
}
.location-content{
  display: flex;
  justify-content: flex-end;
}

.location-content-imgBox{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.location-content-imgBox .inner{
  position: relative;
  width: 812px;
  height: 0;
  padding-top: 60%;
}
.location-content-imgBox .inner figure{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.location-content-imgBox .inner figure img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.location-content-textBox{
  width: 601px;
  margin-top: 175px;
  padding: 46px 58px 27px 77px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.location-content-textNum{
  font-size: 20px;
  letter-spacing: 0.1em;
}
.location-content-textTitle{
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.1em;
  position: relative;
}
.location-content-textTitle::before{
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 28px;
  left: -77px;
}
.location-content-text01{
  line-height: 1.75;
  margin-top: 48px;
}

.carousel{
  margin-top: 39px;
  height: 123px;
}
.carousel_boxInner{
  display: flex;
  flex-wrap: wrap;
  gap: 2px 2px;
}
.carousel_boxInner li{
  width: calc((100% - 8px) /5);
}
.carousel_boxInner li a{
  display: block;
  width: 100%;
  height: 0;
  padding-top: 66%;
  position: relative;
}
.carousel_boxInner li a span{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel_boxInner li a span img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.carousel_arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.carousel_arrow.prev{
  left: -20px;
}
.carousel_arrow.next{
  right: -20px;
}
.carousel_arrow:hover{
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .location-container{
    padding-top: 5.6vw;
  }
  .location-content{
    display: block;
  }
  .location-content-imgBox{
    position: relative;
    width: 106%;
    left: -3%;
  }
  .location-content-imgBox .inner{
    width: 100%;
  }
  .location-content-textBox{
    width: 100%;
    margin-top: 0;
    padding: 11.2vw 2vw 4.53vw 8vw;
  }
  .location-content-textNum{
    font-size: 3.33vw;
  }
  .location-content-textTitle{
    font-size: 5.6vw;
  }
  .location-content-textTitle::before{
    width: 2px;
    height: calc(100% + 16.4vw);
    position: absolute;
    top: -16.4vw;
    left: -4vw;
  }
  .location-content-text01{
    margin-top: 5.47vw;
  }
  .carousel{
    margin-top: 6vw;
    height: 22.13vw;
  }
  .carousel_arrow.prev{
    width: 8vw;
    left: -4vw;
  }
  .carousel_arrow.next{
    width: 8vw;
    right: -6vw;
  }

}

@media screen and (max-width: 680px) {
  .carousel_arrow.next{
    right: -4vw;
  }
}

.location-btnBox {
  margin-top: 69px;
}
.location-btnBox a{
  display: block;
  width: 239px;
  margin: 0 auto;
}

@media screen and (max-width: 680px) {
  .location-btnBox {
    margin-top: 30px;
  }
}

/* plan */
.sec-plan{
  background-color: #F7F6F3;
  padding-top: 111px;
  position: relative;
}
.plan-polygon{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 197px;
  background-color: #fff;
}
.sec-planInner{
  position: relative;
  z-index: 1;
}

.plan-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.plan-title .en{
  font-size: 150px;
  font-style: italic;
  font-weight: 500;
}
.plan-title .jp{
  margin-top: 12px;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .sec-plan{
    padding-top: 13.73vw;
  }
  .plan-polygon{
    height: 24.93vw;
  }
  .plan-title .en{
    font-size: 18.67vw;
  }
  .plan-title .jp{
    margin-top: 4vw;
  }
}

.plan-tabList{
  display: flex;
  margin-top: 60px;
}
.plan-tabListItem{
  flex: 1;
  position: relative;
}

.plan-tabList .plan-tabListItem::before{
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.plan-tabList .plan-tabListItem:first-child::before{
  display: none;
}

.plan-tabListItem-btn{
  width: 100%;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0s;
}
.plan-tabListItem-btn.active{
  border-bottom: 2px solid #000;
}
.plan-tabListItem-btn-text{
  font-size: 18px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1024px) {
  .plan-tabList{
    margin-top: 13.33vw;
  }
  .plan-tabList .plan-tabListItem::before{
    height: 60%;
  }
  .plan-tabListItem-btn{
    height: 14.13vw;
  }
  .plan-tabListItem-btn-text{
    font-size: calc(3.33vw * 0.8);
  }
}
@media screen and (max-width: 680px) {
  .plan-tabListItem-btn-text{
    font-size: 3.33vw;
  }
}

.plan-container{
  margin-top: 5px;
}
.plan-content{
  background-color: #fff;
  padding: 95px 50px 65px;
}
.plan-block{
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 65px;
  margin-top: 65px;
  border-bottom: 1px solid #ddd;
}

.plan-content .plan-block:first-child{
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .plan-container{
    margin-top: 0;
  }
  .plan-content{
    padding: 10.67vw 7.33vw;
  }
  .plan-block{
    padding-bottom: 9.33vw;
    margin-top: 9.33vw;
    display: block;
  }
}

.plan-block-tag{
  position: absolute;
  top: -38px;
  left: -35px;
  z-index: 2;
  width: 103px;
  height: 103px;
}

.plan-block-slideBox{
  width: 50%;
}
.plan-block-textBox{
  width: 45%;
}

@media screen and (max-width: 1024px) {
  .plan-block-tag{
    top: -6.53vw;
    left: -4.27vw;
    width: 16.8vw;
    height: 16.8vw;
  }
  .plan-block-slideBox{
    width: 100%;
  }
  .plan-block-textBox{
    width: 100%;
    margin-top: 6.4vw;
  }
}

.plan-slide .slick-slide figure img{
  width: auto;
}

.plan-block-slideBox .slick-dots{
  display: flex;
  justify-content: center;
  gap: 0 12px;
  margin-top: 20px;
}

.plan-block-slideBox .slick-dots li{
  width: 40px;
  height: 4px;
}
.plan-block-slideBox .slick-dots li button{
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  color: rgba(0,0,0,0);
}
.plan-block-slideBox .slick-dots li.slick-active button{
  background-color: #B99A60;
}

.plan-block-course{
  font-size: 32px;
  font-weight: 400;
}

.plan-block-priceList{
  margin-top: 40px;
}
.plan-block-priceList li{
  margin-top: 20px;
  line-height: 1;
}
.plan-block-priceList li:first-child{
  margin-top: 0;
}

.plan-block-priceList li .item{
  display: inline-block;
  position: relative;
  width: 60px;
  margin-right: 1em;
}
.plan-block-priceList li .item::after{
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.plan-block-priceList li .price01{
  font-size: 36px;
  font-weight: 600;
}
.plan-block-priceList li .price02{
  font-size: 15px;
  margin-left: 1em;
}
.plan-block-priceList li .text01{
  font-size: 11px;
  margin-left: -0.5em;
}

.plan-block-table{
  margin-top: 46px;
  width: 100%;
}
.plan-block-table tr:nth-child(odd){
  background-color: #F7F6F3;
}
.plan-block-table tr:nth-child(even){
  background-color: rgba(247,246,243,0.3);
}
.plan-block-table tr td{
  padding: 6px 12px;
  font-size: 14px;
}
.plan-block-table tr td:nth-child(1){
  width: 140px;
}

@media screen and (max-width: 1024px) {
  .plan-block-slideBox .slick-dots{
    gap: 0 2.4vw;
    margin-top: 3.2vw;
  }
  .plan-block-slideBox .slick-dots li{
    width: 10vw;
    height: 3px;
  }
  .plan-block-course{
    font-size: calc(5.07vw * 0.8);
  }
  .plan-block-priceList{
    margin-top: 6.4vw;
  }
  .plan-block-priceList li{
    margin-top: 4vw;
  }
  .plan-block-priceList li .item{
    width: 12vw;
    font-size: calc(3.73vw * 0.8);
  }
  .plan-block-priceList li .item::after{
    height: 4.27vw;
  }
  .plan-block-priceList li .price01{
    font-size: 6.13vw;
  }
  .plan-block-priceList li .price02{
    font-size: calc(3.2vw * 0.8);
  }
  .plan-block-priceList li .text01{
    font-size: calc(2.93vw * 0.8);
  }
  .plan-block-table{
    margin-top: 6.93vw;
  }
  .plan-block-table tr td{
    padding: 1.2vw 2.4vw;
    font-size: calc(3.2vw * 0.8);
  }
  .plan-block-table tr td:nth-child(1){
    width: 20vw;
  }
}

@media screen and (max-width: 680px) {
  .plan-block-course{
    font-size: 5.07vw;
  }
  .plan-block-priceList li .item{
    font-size: 3.73vw;
  }
  .plan-block-priceList li .price01{
    font-size: 6.13vw;
  }
  .plan-block-priceList li .price02{
    font-size: 3.2vw;
  }
  .plan-block-priceList li .text01{
    font-size: 2.93vw;
  }
  .plan-block-table tr td{
    font-size: 3.2vw;
  }
}

.shrine-block .plan-block-slideBox{
  order: 2;
}

.shrine-block .plan-block-textBox{
  order: 1;
}

.plan-block.shrine-block,
.plan-block.shrine-block02{
  border-bottom: none;
  padding-bottom: 0;
}

.shrine-block .plan-block-textBoxInner,
.shrine-block02 .plan-block-textBoxInner{
  display: flex;
}

.shrine-block .plan-block-textBoxInner .plan-block-course,
.shrine-block02 .plan-block-textBoxInner .plan-block-course{
  width: 140px;
  font-size: 18px;
}

.shrine-block .plan-block-textBoxInner .plan-block-table,
.shrine-block02 .plan-block-textBoxInner .plan-block-flow{
  margin-top: 0;
  width: calc( 100% - 140px)
}

@media screen and (max-width: 680px) {
  .shrine-block .plan-block-textBoxInner,
  .shrine-block02 .plan-block-textBoxInner{
    display: block;
  }

  .shrine-block .plan-block-textBoxInner .plan-block-course,
  .shrine-block02 .plan-block-textBoxInner .plan-block-course{
    width: 100%;
    font-size: 4.27vw;
  }

  .shrine-block .plan-block-textBoxInner .plan-block-table,
  .shrine-block02 .plan-block-textBoxInner .plan-block-flow{
    margin-top: 6.67vw;
    width: 100%
  }
}

.shrine-block .plan-block-textBoxInner .plan-block-table tr td:nth-child(1){
  width: 100%;
}

.plan-block-flow{
  background-color: #F7F3EC;
  padding: 20px;
}

.plan-block-flow li{
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.plan-block-flow li:first-child{
  margin-top: 0;
}
.plan-block-flow li:before{
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: calc(50% - 15px);
  left: 15px;
  width: 2px;
  height: calc(100% + 20px);
  border-left: 2px dotted #B99A60;
}
.plan-block-flow li:last-child::before{
  display: none;
}
.plan-block-flow li .num{
  display: block;
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  margin-right: 12px;
}
.plan-block-flow li .text{
  font-size: 15px;
  width: calc(100% - 43px);
}

@media screen and (max-width: 680px) {
  .plan-block-flow{
    padding: 2.93vw;
  }

  .plan-block-flow li{
    margin-top: 4vw;
  }

  .plan-block-flow li:before{
    left: 3.065vw;
    top: calc(50% - 3vw);
  }

  .plan-block-flow li .num{
    width: 6.13vw;
    height: 6.13vw;
    margin-right: 1vw;
  }

  .plan-block-flow li .text{
    font-size: 3.47vw;
    width: calc(100% - 7.13vw);
  }

}

.shrine-block .plan-block-priceList{
  text-align: right;
}

.plan-block-textBoxRight{
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.plan-block-textBoxRight-inner{
  max-width: 320px;
}

@media screen and (max-width: 680px) {
  .plan-block-textBoxRight{
    width: 100%;
    display: block;
    margin-top: 8vw;
  }

  .plan-block-textBoxRight-inner{
    max-width: none;
  }
}

.plan-block-textBoxRight-inner .text01{
  letter-spacing: 0.1em;
}

.cautionaryList{
  margin-top: 22px;
}
.cautionaryList li{
  position: relative;
  font-size: 14px;
  margin-top: 12px;
  display: flex;
  gap: 0 0.2em
}
.cautionaryList li:first-child{
  margin-top: 0;
}
.cautionaryList li::before{
  content: "※";
}

@media screen and (max-width: 680px) {
  .cautionaryList{
    margin-top: 1.73vw;
  }
  .cautionaryList li{
    font-size: 2.93vw;
    margin-top: 1.73vw;
  }
}

.btnWrapper{
  display: flex;
  justify-content: flex-end;
  margin-top: 85px;
}

.shrine-block02 .btn {
  display: block;
  width: 144px;
  height: 102px;
  position: relative;
  margin: 0;
}

.shrine-block02 .btn img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.shrine-block02 .btn img:nth-of-type(1) {
  opacity: 0;
}
@media (hover: hover) {
  .shrine-block02 .btn:hover img:nth-of-type(1) {
    opacity: 1;
  }
  .shrine-block02 .btn:hover img:nth-of-type(2) {
    opacity: 0;
  }
}

@media screen and (max-width: 960px) {
  .btnWrapper{
    display: block;
    margin-top: 12.67vw;
  }

  .shrine-block02 .btn {
    width: 23.47vw;
    height: 16.8vw;
    margin: 0 auto;
  }
}


/* plan model */
.sec-planModel{
  background-color: #F7F6F3;
  padding-top: 80px;
  padding-bottom: 175px;
  position: relative;
}
.planModel-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.planModel-title .en{
  font-size: 18px;
  font-weight: 500;
  margin-top: 12px;
}
.planModel-title .jp{
  font-size: 28px;
}

.planModel-slideBox{
  margin-top: 47px;
}
.planModel-slideItemInner{
  margin: 0 10px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .sec-planModel{
    padding-top: 9.47vw;
    padding-bottom: 14vw;
  }
  .planModel-title .en{
    font-size: calc(4.27vw * 0.8);
    margin-top: 4vw;
  }
  .planModel-title .jp{
    font-size: calc(5.06vw * 0.8);
  }
  .planModel-slideBox{
    margin-top: 6.53vw;
  }
  .planModel-slideItemInner{
    margin: 0 2vw;
  }
}

@media screen and (max-width: 680px) {
  .planModel-title .en{
    font-size: 4.27vw;
  }
  .planModel-title .jp{
    font-size: 5.06vw;
  }
}

.planModel-slide-circle{
  width: 100%;
}

.planModel-slide-textTitle{
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 8px;
}

.planModel-slide-textPrice{
  line-height: 1;
}
.planModel-slide-textPrice .price01{
  font-size: 26px;
  font-weight: 700;
}
.planModel-slide-textPrice .text01{
  font-size: 11px;
}

.planModel_arrow{
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
.planModel_arrow.prev{
  left: -20px
}
.planModel_arrow.next{
  right: -20px
}

@media screen and (max-width: 1024px) {
  .planModel_arrow.prev{
    width: 8vw;
    left: 10vw
  }
  .planModel_arrow.next{
    width: 8vw;
    right: 10vw
  }
}

.planModel-container{
  background-color: #fff;
  padding: 96px 50px 110px;
  margin-top: 60px;
  text-align: center;
}

.planModel-containerImg{
  margin: 42px auto 0;
  max-width: 900px;
}

.planModel-containerText{
  margin-top: 34px;
}

.planModel-containerList{
  display: flex;
  justify-content: center;
  gap: 0 40px;
  margin-top: 42px;
}
.planModel-containerList li{
  width: 337px;
  height: 109px;
  padding-top: 8px;
  background-image: url(img/2411/planModel_ribon.png);
  background-repeat: no-repeat;
}
.planModel-containerListText{
  font-size: 18px;
  line-height: 1.75;
}
.planModel-containerListText .line{
  display: inline-block;
  position: relative;
}
.planModel-containerListText .line::after{
  content: "";
  display: block;
  width: calc(100% - 1em);
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0.5em;
  border-bottom: 2px dotted #B99A60;
}

.planModel-message{
  text-align: right;
  margin-top: 5px;
}

@media screen and (max-width: 1024px) {
  .planModel-container{
    padding: 9.47vw 7.33vw 6vw;
    margin-top: 11.2vw;
  }
  .planModel-containerImg{
    margin: 10.27vw auto 0;
    max-width: 500px;
  }
  .planModel-containerText{
    margin-top: 7.73vw;
  }
  .planModel-containerList{
    flex-direction: column;
    align-items: center;
    gap: 1.2vw;
    margin-top: 7.47vw;
  }
  .planModel-containerList li{
    width: calc(62.93vw * 0.8);
    height: calc(19.87vw * 0.8);
    padding-top: calc(0.984vw * 0.8);
    background-size: contain;
  }
  .planModel-containerListText{
    font-size: calc(3.6vw * 0.8);
  }
}

@media screen and (max-width: 680px) {
  .planModel-containerList li{
    width: 62.93vw;
    height: 19.87vw;
  }
  .planModel-containerListText{
    font-size: 3.6vw;
  }
}

/* Photo Retouch */
.sec-photoRetouch{
  position: relative;
  background-color: #F7F6F3;
  padding-top: 191px;
  padding-bottom: 150px;
}
.photoRetouch-polygon{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 275px;
  background-color: #fff;
}
.sec-photoRetouchInner{
  position: relative;
  z-index: 1;
}

.photoRetouch-title{
  display: flex;
  flex-direction: column;
}

.photoRetouch-title .en{
  font-size: 150px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}
.photoRetouch-title .jp{
  margin-top: 12px;
  font-weight: 400;
  line-height: 1.75;
}

.photoRetouch-list{
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  margin-top: 82px;
}
.photoRetouch-list li{
  width: calc((100% - 60px) / 3);
  max-width: 357px;
}
.photoRetouch-listImg{
  position: relative;
}
.photoRetouch-listImg img{
  position: relative;
  z-index: 1;
}
.photoRetouch-listImg figcaption{
  position: absolute;
  z-index: 2;
  width: 100%;
  text-align: center;
  bottom: 10px;
  left: 0;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .sec-photoRetouch{
    background-color: #fff;
    padding-top: 16vw;
    padding-bottom: 17.73vw;
  }
  .photoRetouch-polygon{
    background-color: #F7F6F3;
    width: calc(100% - 14.67vw);
    height: calc(100% - 23.87vw);
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
  }
  .photoRetouch-title .en{
    font-size: 14.67vw;
    text-align: center;
  }
  .photoRetouch-title .jp{
    margin-top: 4vw;
  }
  .photoRetouch-listImg figcaption{
    font-size: 16px;
  }
}

@media screen and (max-width: 680px) {
  .photoRetouch-list{
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 9.47vw 0;
    margin-top: 7.73vw;
  }
  .photoRetouch-list li{
    width: 100%;
  }
  .photoRetouch-listImg figcaption{
    bottom: 1.2vw;
  }

}

/* thought */
.sec-thought{
  position: relative;
  padding-top: 170px;
}

.thought-title{
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0 30px;
  letter-spacing: 0.1em;
  justify-content: center;
  line-height: 1;
}
.thought-title .en{
  writing-mode: vertical-rl;
  font-size: 150px;
  font-style: italic;
  display: inline-block;
  position: relative;
}
.thought-title .en .black{
  display: inline-block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  height: calc(100% - 220px);
}
.thought-title .en .white{
  display: inline-block;
  position: relative;
  z-index: 1;
  color: #fff;
}
.thought-title .jp{
  writing-mode: vertical-rl;
  padding-top: 1em;
  font-weight: 400;
}

.thought-content{
  position: relative;
  z-index: 1;
  margin-top: -220px;
  background-image: url(img/2411/thought-img01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 384px 0 238px;
}
.thought-contentInner{
  display: flex;
  gap: 0 50px;
}
.thought-contentText{
  width: calc((100% - 50px) / 2);
}
.thought-contentText p{
  color: #fff;
  font-size: 17px;
  line-height: 2.25;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1024px) {
  .sec-thought{
    padding-top: 13.33vw;
  }
  .thought-title{
    gap: 0 4vw;
  }
  .thought-title .en{
    font-size: 18.67vw;
  }
  .thought-title .en .black{
    height: calc(100% - 19.4vw);
  }
  .thought-title .en .black,
  .thought-title .en .white{
    width: 21vw;
  }
  .thought-content{
    background-image: url(img/thought-heading-img_tb.jpg);
    margin-top: -19.4vw;
  }
  .thought-contentInner{
    flex-direction: column;
    gap: 10.27vw 0;
  }
  .thought-contentText{
    width:100%;
  }
  .thought-contentText p{
    font-size: calc(3.33vw * 0.7);
  }
}
@media screen and (max-width: 680px) {
  .thought-content{
    background-image: url(img/thought-heading-img_sp.jpg);
    padding: 33.87vw 0 34.8vw;
  }
  .thought-contentText p{
    font-size: 3.33vw;
    line-height: 1.75;
  }
  .thought-contentText p{
    font-size: 3.33vw;
  }
}

/* costume */
.sec-costume{
  position: relative;
  padding-top: 174px;
  padding-bottom: 234px;
}
.sec-costumeInner{
  position: relative;
  z-index: 1;
}

.costume-title{
  display: flex;
  flex-direction: column;
}

.costume-title .en{
  font-size: 150px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}
.costume-title .jp{
  margin-top: 12px;
  font-weight: 400;
  line-height: 1.75;
}

.costume-list{
  display: flex;
  gap: 0 28px;
  margin-top: 102px;
}

.costume-list li{
  display: flex;
  justify-content: space-between;
  gap: 0 20px
}
.costume-listImg{
  width: calc((100% - 20px) / 2);
}
.costume-listTextBox{
  width: calc((100% - 20px) / 2);
  position: relative;
  padding-top: 30px;
  padding-bottom: 50px;
}
.costume-listTitle{
  line-height: 1;
  font-size: 32px;
  padding-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  position: relative;
}
.costume-listTitle::before,
.costume-listTitle::after{
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 2px;
}
.costume-listTitle::before{
  left: -50px;
  width: 30px;
  background-color: rgba(255,255,255,0.5);
}
.costume-listTitle::after{
  left: -20px;
  width: calc(100% + 20px);
  background-color: #000;
}
.costume-listText{
  margin-top: 15px;
}

.costume-listLink{
  position: absolute;
  bottom: 0;
  right: 0;
}
.costume-listLink a{
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.costume-listLink a .text{
  font-style: italic;
  font-size: 20px;
}

@media screen and (max-width: 1024px) {
  .sec-costume{
    padding-top: 14.13vw;
    padding-bottom: 17.33vw;
  }
  .costume-title {
    text-align: center;
  }
  .costume-title .en{
    font-size: 18.67vw;
  }
  .costume-title .jp{
    margin-top: 4vw;
  }
  .costume-list{
    flex-direction: column;
    gap: 6.67vw 0;
    max-width: 600px;
    margin: 10vw auto 0;
  }
  .costume-list li{
    gap: 0 5.33vw
  }
  .costume-listImg{
    width: calc((100% - 5.33vw) / 2);
  }
  .costume-listTextBox{
    width: calc((100% - 5.33vw) / 2);
    padding-top: 4vw;
    padding-bottom: 6.67vw;
  }
  .costume-listTitle{
    font-size: calc(5.6vw * 0.8);
    padding-bottom: 3.2vw;
  }
  .costume-listTitle::before{
    left: -11.33vw;
    width: 6vw;
  }
  .costume-listTitle::after{
    left: -5.33vw;
    width: calc(100% + 5.33vw);
  }
  .costume-listText{
    margin-top: 2.4vw;
  }
  .costume-listLink a{
    gap: 0 2vw;
  }
  .costume-listLink a .text{
    font-size: 3.2vw;
  }
  .costume-listLink a svg{
    width: 5.33vw;
    height: auto;
  }
}

@media screen and (max-width: 680px) {
  .costume-listTitle{
    font-size: 5.6vw;
  }

}

/* flow */
.sec-flow{
  position: relative;
  padding-top: 77px;
  padding-bottom: 160px;
  background-color: #f7f3ec;
}

.flow-polygon{
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1599px;
  height: 540px;
}
.flow-polygon figure{
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.flow-polygon figure img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sec-flowInner{
  position: relative;
  z-index: 1;
}

.flow-title{
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
}

.flow-title .en{
  font-size: 150px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}
.flow-title .jp{
  margin-top: 12px;
  font-weight: 400;
  line-height: 1.75;
}

@media screen and (max-width: 1024px) {
  .sec-flow{
    padding-top: 6vw;
    padding-bottom: 17.33vw;
  }
  .flow-polygon{
    width: 94%;
    height: 45.33vw;
  }
  .flow-title .en{
    font-size: 18.67vw;
  }
  .flow-title .jp{
    margin-top: 4vw;
  }
}

.flow-contents{
  background-color: #fff;
  padding: 53px 50px 100px;
  margin-top: 49px;
  position: relative;
  z-index: 1;
}

.flow-contentsInner{
  max-width: 944px;
  margin: 0 auto;
}

.flow-contentsTitle{
  text-align: center;
  font-size: 28px;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .flow-contents{
    padding: 9.33vw 4vw;
    width: calc(100% - 8vw);
    margin: 4vw auto 0;
  }
  .flow-contentsTitle{
    font-size: calc(5.07vw * 0.8);
  }
}

@media screen and (max-width: 680px) {
  .flow-contentsTitle{
    font-size: 5.07vw;
  }
}

.flow-contentsBlock{
  display: flex;
  justify-content: space-between;
  margin-top: 47px;
}
.flow-contentsBlock-imgBox{
  width: 45%;
}
.flow-contentsBlock-textBox{
  width: 50%;
}
.flow-contentsBlock-text01{
  line-height: 2;
  letter-spacing: 0.1em;
}
.flow-contentsBlock-img01{
  margin-top: 30px;
}

@media screen and (max-width: 1024px) {
  .flow-contentsBlock{
    display: block;
    margin-top: 8.27vw;
  }
  .flow-contentsBlock-imgBox{
    width: 53.33vw;
    margin: 0 auto;
  }
  .flow-contentsBlock-textBox{
    width: 100%;
    margin-top: 5.07vw;
  }
  .flow-contentsBlock-text01{
    width: 61.33vw;
    margin: 0 auto;
  }
  .flow-contentsBlock-img01{
    margin-top: 6.8vw;
  }
}

.flow-infoBlock{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 52px;
}
.flow-infoBlock-tel .phoneNumber{
  display: block;
}

.flow-infoBlock-list{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 59%;
}

.flow-infoBlock-listItem{
  width: 46.5%;
}
.flow-infoBlock-list a.flow-infoBlock-link{
  display: block;
}

@media screen and (max-width: 1024px) {
  .flow-infoBlock{
    flex-direction: column;
    gap: 4vw 0;
    justify-content: center;
    margin-top: 9.2vw;
  }
  .flow-infoBlock-tel{
    width: 48.8vw;
  }
  .flow-infoBlock-list{
    width: 80%;
  }
}

@media screen and (max-width: 680px) {
  .flow-infoBlock-list{
    width: 60vw;
    flex-direction: column;
    gap: 5.47vw 0;
    margin-top: 2vw;
  }
  .flow-infoBlock-listItem{
    width: 100%;
  }
}

.flow-stepBlock{
  background-color: #F7F3EC;
  padding: 60px 50px 54px;
  position: relative;
  margin-top: 109px;
}

.flow-stepBlockTitle{
  position: absolute;
  z-index: 2;
  top: -81px;
  right: -54px;
}
.flow-stepList{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 44px 0;
  counter-reset: listCounter;
  margin-top: 220px;
}

@media screen and (max-width: 1024px) {
  .flow-stepBlock{
    padding: 9.33vw 3.33vw 6.67vw 14vw;
    margin-top: 24.8vw;
  }
  .flow-stepBlockTitle{
    top: -29vw;
    right: -12vw;
    width: 70.53vw;
  }
  .flow-stepList{
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.33vw 0;
    margin-top: 0;
  }
}

.flow-stepListItem{
  position: relative;
  width: 43.6%;
  counter-increment: listCounter;
}
.flow-stepList .flow-stepListItem:nth-child(odd){
  top: -220px;
}

.flow-stepListItem::before{
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 2;
  top: 55px;
}
.flow-stepList .flow-stepListItem:nth-child(1)::before{
  background-image: url(img/2411/flow-num1.png);
  left: 107%;
}
.flow-stepList .flow-stepListItem:nth-child(2)::before{
  background-image: url(img/2411/flow-num2.png);
  right: 107%;
}
.flow-stepList .flow-stepListItem:nth-child(3)::before{
  background-image: url(img/2411/flow-num3.png);
  left: 107%;
}
.flow-stepList .flow-stepListItem:nth-child(4)::before{
  background-image: url(img/2411/flow-num4.png);
  right: 107%;
}

.flow-itemInner{
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 25px 25px 25px;
}
.flow-itemInner::before{
  content: "";
  display: block;
  width: 40px;
  height: 60px;
  background-color: #fff;
  position: absolute;
  top: 55px;
  z-index: 1;
}
.flow-stepList .flow-stepListItem:nth-child(odd) .flow-itemInner::before{
  left: calc(100% - 20px);
  clip-path: polygon(0 0,100% 50%,0 100%);
}
.flow-stepList .flow-stepListItem:nth-child(even) .flow-itemInner::before{
  right: calc(100% - 20px);
  clip-path: polygon(0 50%,100% 0,100% 100%);
}

.flow-itemInner::after{
  content: "";
  display: block;
  width: 1px;
  height: 52%;
  z-index: 1;
  border-right: 2px dotted #B99A60;
  position: absolute;
  top: 82px;
}
.flow-stepList .flow-stepListItem:nth-child(odd) .flow-itemInner::after{
  left: calc(107% + 27px);
}
.flow-stepList .flow-stepListItem:nth-child(even) .flow-itemInner::after{
  right: calc(107% + 27px);
}

.flow-stepList .flow-stepListItem:last-child .flow-itemInner::after{
  display: none;
}


.flow-itemTopNum{
  font-size: 26px;
  font-style: italic;
  color: #B99A60;
  line-height: 1;
  letter-spacing: 0.05em;
}

.flow-itemTopTags{
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
  gap: 0 10px;
}

.flow-itemTopTags span{
  line-height: 1;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 22px;
}
.flow-itemTopTags span.tag-gold{
  color: #B99A60;
  border: 1px solid #B99A60;
}
.flow-itemTopTags span.tag-black{
  color: #000;
  border: 1px solid #000;
}

.flow-itemTitle{
  font-size: 24px;
  font-weight: 400;
  margin-top: 12px;
  line-height: 1;
}
.flow-itemText{
  font-size: 15px;
  margin-top: 15px;
}
.flow-itemImg{
  margin-top: 20px;
}

@media screen and (max-width: 1100px) {
  .flow-stepListItem::before{
    width: 4.5vw;
    height: 4.5vw;
    top: 55px;
  }
  .flow-itemInner::before{
    width: 3.64vw;
    height: 5.46vw;
    top: 55px;
  }
  .flow-stepList .flow-stepListItem:nth-child(odd) .flow-itemInner::before{
    left: calc(100% - 1.82vw);
  }
  .flow-stepList .flow-stepListItem:nth-child(even) .flow-itemInner::before{
    right: calc(100% - 1.82vw);
  }
  .flow-itemInner::after{
    height: 52%;
    top: 82px;
  }
  .flow-stepList .flow-stepListItem:nth-child(odd) .flow-itemInner::after{
    left: calc(107% + 2.45vw);
  }
  .flow-stepList .flow-stepListItem:nth-child(even) .flow-itemInner::after{
    right: calc(107% + 2.45vw);
  }
}

@media screen and (max-width: 1024px) {
  .flow-stepListItem{
    width: 100%;
  }
  .flow-stepList .flow-stepListItem:nth-child(odd){
    top: 0;
  }
  .flow-stepListItem::before{
    width: 8vw;
    height: 8vw;
    top: 6.53vw;
  }
  .flow-stepList .flow-stepListItem:nth-child(odd)::before{
    left: -11.33vw;
  }
  .flow-stepList .flow-stepListItem:nth-child(even)::before{
    left: -11.33vw;
    right: auto;
  }
  .flow-itemInner{
    padding: 3.33vw 3.33vw;
  }
  .flow-itemInner::before{
    width: 5.33vw;
    height: 8vw;
    top: 6.53vw;
  }
  .flow-stepList .flow-stepListItem:nth-child(odd) .flow-itemInner::before{
    left: auto;
    right: calc(100% - 2.665vw);
    clip-path: polygon(0 50%,100% 0,100% 100%);
  }
  .flow-stepList .flow-stepListItem:nth-child(even) .flow-itemInner::before{
    right: calc(100% - 2.665vw);
  }
  .flow-itemInner::after{
    height: calc(100% + 3.33vw);
    top: 10.53vw;
  }
  .flow-stepList .flow-stepListItem:nth-child(odd) .flow-itemInner::after{
    left: -7.33vw;
  }
  .flow-stepList .flow-stepListItem:nth-child(even) .flow-itemInner::after{
    left: -7.33vw;
    right: auto;
  }

  .flow-itemTopNum{
    font-size: calc(3.47vw * 0.8);
  }
  .flow-itemTopTags{
    top: 9.2vw;
    right: 2.8vw;
    gap: 0 1.6vw;
  }
  .flow-itemTopTags span{
    font-size: calc(2.4vw * 0.8);
    height: calc(4.8vw * 0.8);
    min-width: auto;
    padding: 0 1.2vw;
  }
  .flow-itemTitle{
    font-size: calc(4.27vw * 0.8);
    margin-top: 1.6vw;
  }
  .flow-itemText{
    font-size: calc(3.2vw * 0.8);
    margin-top: 2vw;
  }
  .flow-itemImg{
    margin-top: 2.67vw;
  }
}

@media screen and (max-width: 680px) {
  .flow-itemTopNum{
    font-size: 3.47vw;
  }
  .flow-itemTopTags{
    top: 10.2vw;
  }
  .flow-itemTopTags span{
    font-size: 2.4vw;
    height: 4.8vw;
  }
  .flow-itemTitle{
    font-size: 4.27vw;
  }
  .flow-itemText{
    font-size: 3.2vw;
  }
}

/* blog */
.btn_basic {
  position: relative;
  display: block;
  width: 380px;
  height: 90px;
  line-height: 90px;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .btn_basic {
    width: 90%;
    height: 60px;
    line-height: 60px;
  }
}
.btn_basic::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn_basic.costume_link::before {
  width: 14px;
  height: 14px;
  border-top: none;
  border-right: none;
  margin-top: -7px;
  -webkit-transform: inherit;
          transform: inherit;
  background: url(../img/20th/icon-link.svg) no-repeat;
  background-size: contain;
  background-position: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn_basic::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  display: block;
  width: 100%;
  height: 100%;
  border-right: 1px solid #968159;
  border-bottom: 1px solid #968159;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn_basic:hover {
  opacity: 1;
  background-color: #fff;
  color: #968159;
}
.btn_basic:hover::before {
  border-top: solid 2px #968159;
  border-right: solid 2px #968159;
}
.btn_basic:hover::after {
  -webkit-transform: translate(-8px, -8px);
          transform: translate(-8px, -8px);
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.btn_basic:hover.costume_link::before {
  border-top: none;
  border-right: none;
  background: url(../img/20th/icon-link-gold.svg) no-repeat;
}

.blog_btn {
  margin: 0 auto;
  text-align: center;
  width: 380px;
  height: 80px;
  line-height: 78px;
  box-sizing: border-box;
}
.blog_btn{
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .blog_btn {
    width: 300px;
    height: 60px;
    line-height: 58px;
  }
  .blog_btn{
    margin-top: 30px;
  }
}
.blog_btn::before{
  right: 30px;
}
.blog_btn:hover{
  cursor: pointer;
}
.blog_btn.is-btn-hidden {
  display: none;
}
.blog_btn::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.blog_item.is-hidden{
  opacity: 0;
  height: 0;
  visibility: hidden;
}

/* banner */
.floating-bannerBox{
  position: fixed;
  z-index: 5;
  bottom: 2vw;
  right: 9vw;
}
.floating-banner{
  position: relative;
  z-index: 1;
  max-width: 475px;
}
.floating-banner a{
  display: block;
  position: relative;
  z-index: 1;
}
.floating-banner::after{
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 10px);
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 0;
  box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
}
.floating-banner-close{
  position: absolute;
  z-index: 2;
  top: -24px;
  right: -28px;
  width: 71px;
}

.floating-bannerBox.hide{
  display: none;
}

@media screen and (max-width: 1024px) {
  .floating-bannerBox{
    position: fixed;
    right: 0;
    bottom: 2vw;
    padding: 0 4vw;
    transition: all 0.4s;
  }
  .floating-banner-close{
    top: -5vw;
    right: -3vw;
    width: 16vw;
  }
}

@media screen and (max-width: 430px) {
  .floating-bannerBox{
    right: auto;
    left: auto;
  }
}

.planModel-containerListText2{
  font-size: 18px;
  line-height: 1.25;
}
.planModel-containerListText2 .line{
  display: inline-block;
  position: relative;
}
.planModel-containerListText2 .line::after{
  content: "";
  display: block;
  width: calc(100% - 1em);
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0.5em;
  border-bottom: 2px dotted #B99A60;
}
.planModel-containerListText2 .font--s{
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .planModel-containerListText2{
    font-size: calc(3.4vw * 0.8);
  }
  .planModel-containerListText2 .font--s{
  font-size: 2.4vw;
}
}
@media screen and (max-width: 680px) {
  .planModel-containerListText2{
    font-size: 3.2vw;
  }
    .planModel-containerListText2 .font--s{
  font-size: 2.8vw;
}
}