@charset "UTF-8";
@import url(//fonts.googleapis.com/css?family=Cinzel|Lora|Open+Sans&display=swap);
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  letter-spacing: .1em;
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 0 auto;
  width: 100% !important;


}
main {
  margin: 6.2% auto 0 !important;
}
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
   font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
}

button {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font: inherit;
}

.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.text_b01 {
	display: inline-block;
}

@media screen and (max-width: 768px) {
main {
  max-width: 100%!important;
}

}


/*.header-3 {
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 1000;
}*/

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 93%;
  height: 104px;
  margin: 0 auto;
  position: relative;
  border-left: 1px solid #a0a0a0;
  border-right: 1px solid #a0a0a0;
}

.header-inner .logo {
  position: absolute;
  top: 36px;
  left: 43px;
}

.header-inner .logo img {
  max-width: 200px;
  width: 80%;
}

.header-inner .header-nav {
  display: flex;
  align-items: center;
  width: 72%;
  margin: 14px 0 0 auto;
}

.header-inner .header-nav-wrap {
  display: flex;
  align-items: center;
}

.header-inner .header-nav-list {
  display: flex;
}

.header-inner .header-nav-item {
  padding: 0 4.3% 0 0;
}

.header-inner .header-nav-list-sns {
  display: flex;
  align-items: center;
  padding: 0 3.5% 0 0;
}


.header-inner .header-nav-item-login {
/*  padding: 0 13% 0 4%;*/
}
.header-inner .header-nav-item-login a{
			position: relative;
  z-index: 0;
  width: calc(140 / 640 * 100vw);
  aspect-ratio: 140 / 40;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #3e3a39;
  border-radius: 2px;
  font-size: calc(14 / 640 * 100vw);
  font-weight: bold;
  color: #3e3a39;
  align-self: baseline;
  white-space: nowrap;
  padding: 0 5%;

}
.header-inner .header-nav-item-login a:hover{


}


.header-inner .header-nav-item-login a:hover, .header-inner .header-nav-item-login a:active {
  text-decoration: none;

}


.header-inner .header-nav-item-login a::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 50%;
  right: .8em;
  transform: translateY(-50%) rotate(45deg);
  width: .5714em;
  aspect-ratio: 1;
  border: solid #3e3a39;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
  border-width: 1px 1px 0 0;
}



.header-inner .header-nav-item-fb {
  padding: 0 5% 0 0;
}

.header-inner .header-nav-item-insta {
  padding: 0;
}

.header-nav {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .header-nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 5%;
  }
}

@media screen and (max-width: 768px) {
  .header-nav-item {
    width: 100%;
  }
}

.header-button {
  box-sizing: border-box;
  padding: 0.5em 1.2em;
  font-size: 10px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

@media screen and (max-width: 768px) {
  .header-button {
    width: 100%;
  }
}

.header-login {
  color: #000;
}

.header-new {
  color: #000;
}

.header-post {
  font-weight: bold;
  color: #fff;
  background: #666666;
}

/*　ハンバーガーボタン */
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: -2px;
  width: 24px;
  background: #000;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 .8s forwards;
  animation: active-hamburger-bar02 .8s forwards;
}

@-webkit-keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}

.hamburger.active span:nth-child(3) {
  top: 16px;
  width: 24px;
  left: -2px;
  background: #000;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger::after {
  position: absolute;
  top: 67%;
  left: 36%;
  display: block;
  content: '';
  width: 42px;
  height: 42px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all .75s;
}


@media screen and (max-width: 500px) {
.hamburger::after {
  left: 62%;
}
}


.hamburger.active::after {
  border: 2px solid #000;
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  display: none;
  transition: opacity .6s ease, visibility .6s ease;
}

.g-nav-wrap {
  height: 100vh;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .g-nav-wrap {
    justify-content: center;
    background: #fff;
  }
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #5a322a;
  padding: 1em 0;
  text-decoration: none;
	font-size: calc(14 / 320 * 100vw);
	font-weight: bold;
	text-align: left;

}

/* こ???クラスを、jQueryで付与???削除する */
nav.globalMenuSp.active {
  display: block;
}

.top {
  max-width: 93%;
  width: 100%;
  margin: 0 auto;
  border-left: 1px solid #a0a0a0;
  border-right: 1px solid #a0a0a0;
}

.top .mv-ttl {
  width: 83%;
  margin: 0px auto;
}

.top .mv-txt {
  width: 48%;
  margin: 4% auto 0 24%;
  position: relative;
}

.top .mv-txt-link {
  position: absolute;
  width: 17%;
  height: 20px;
  right: 71%;
  bottom: 6%;
  z-index: 1;
}

.top .content {
  margin: 12.2% auto 0;
}

.top .content-ttl {
  width: 37%;
  margin: 0 auto;
}

.top .content-box01 {
  margin: 9% 0 0 auto;
  padding: 5% 0 3% 0;
}

.top .content-box01-txt {
  margin: 1.2% 0 0 3.8%;
}

.top .content-box01-btn {
  width: 27%;
  margin: -7.3% 0 0 13.7%;
}

.top .content-box02 {
  margin: 8.1% auto 0 0;
  padding: 5% 0 3.3% 0;
}

.top .content-box02-txt {
  margin: 1.4% 3.5% 0 auto;
}

.top .content-box02-btn {
  width: 27%;
  margin: -6.3% 13.6% 0 auto;
}

.top .content-box03 {
  margin: 8.4% 0 0 auto;
  padding: 5% 0 4% 0;
}

.top .content-box03-txt {
  margin: 1.3% 0 0 3.6%;
}

.top .content-box03-btn {
  width: 27%;
  margin: -8.8% 0 0 14.7%;
}

.common {
  max-width: 93%;
  width: 100%;
  border-left: 1px solid #a0a0a0;
  border-right: 1px solid #a0a0a0;
  padding: 15% 0 50px;
  margin: 0 auto;
}

.common-foot-ttl {
  margin: 0 auto;
  width: 42.2%;
}

.common-foot-lead {
  margin: 2.1% auto 0;
  width: 39.5%;
}

.common-foot-logo {
  margin: 3.9% auto 0;
  width: 12.8%;
}

.common-foot-box {
  display: flex;
  justify-content: space-between;
  width: 53%;
  margin: 4.5% auto 0;
}

.common-foot-btn {
  display: block;
  width: 43.6%;
}

.common-foot-btn-attention {
  color: #000;
  letter-spacing: 0;
}

/* 20241219UP牟田対応 */
/* .common-foot-box {
  justify-content: center;
} */

#footer {
  text-align: center;
  font-size: 12px;
  width: 100%;
  max-width: 93%;
  padding: 0;
  margin: 0 auto;
  background: #f6f2ef;
  border-left: 1px solid #a0a0a0;
  border-right: 1px solid #a0a0a0;
}
#footer .copyright{
	display: block;
	font-size: 14px;
	letter-spacing: .07em;
	padding-bottom:.3em;
	  /*color:#5c3742;
	font-weight:bold;*/
}



#footer_links {
  font-size: 12px;
  line-height: 1.5em;
  padding: 30px 0;
  margin: 0px auto 0;
}
#footer_links {

	font-weight:bold;
}
#footer_links a{
	color: rgb(153, 0, 0);
	font-size: 14px;
	font-weight: 500;
  /*color:#5c3742;
	font-weight:bold;*/
	font-weight: normal;
}

@media screen and (max-width: 768px) {
  body {
    color: #333;
    letter-spacing: .1em;
    text-align: justify;
    text-justify: inter-ideograph;
    margin: 0 auto;
    width: 100% !important;
  }
  main {
    margin: 0 0 0 !important;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    height: 77px;
    margin: 0 auto;
    position: relative;
  }
  .header-inner .logo {
    position: absolute;
    top: 18%;
    left: 3%;
    max-width: 22%;
    display: block;
  }
  .header-inner .logo img {
    max-width: 100%;
  }
  .header-inner .header-nav {
    width: 100%;
  }
  .header-inner .header-nav-list {
    display: flex;
    width: 48%;
    margin: -5% auto 0 40%;
    justify-content: space-between;
    align-items: center;
  }
  .header-inner .header-nav-list-ham {
   /* width: 68%;*/
    width: 74%;
    margin: -5% auto 0;
    justify-content: flex-start;
  }
  .header-inner .header-nav-list-ham .header-nav-item-ham {
    padding: 0;
  }
  /*.header-inner .header-nav-list-ham .header-nav-item-ham:nth-child(2) {
    width: 80%;
  }

  .header-inner .header-nav-list-ham .header-nav-item-ham:nth-child(3) {
    width: 50%;
    margin: 0 40% 0 0;
  }


  .header-inner .header-nav-list-ham .header-nav-item-ham:nth-child(4) {
    width: 45%;
    margin: 0 20% 0 0;
  }*/


  .header-inner .header-nav-item-login {
    width: 60%;
    padding: 0 5% 0 0;
  }
  .header-inner .header-nav-item-fb {
    width: 20%;
    padding: 0 5% 0 0;
  }
  .header-inner .header-nav-item-insta {
    width: 15%;
    padding: 0;
  }
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 4.5%;
    top: 2%;
    width: 8%;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: auto;
    background: #555;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
  }
  .top {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .top .mv-ttl {
    width: 100%;
    margin: 0px auto;
  }
  .top .mv-txt {
    width: 86%;
    margin: 7.5% auto 0 5%;
  }
  .top .content {
    margin: 23.5% auto 0;
  }
  .top .content-ttl {
    width: 81.2%;
    margin: 0 auto;
  }
  .top .content-box01 {
    margin: 16% 0 0 0;
    padding: 0;
    width: 100%;
  }
  .top .content-box01-txt {
    width: 100%;
    margin: 0;
  }
  .top .content-box01-btn {
    width: 66.2%;
    margin: 0 auto 0 14.7%;
  }
  .top .content-box02 {
    margin: 24% 0 0 0;
    padding: 0;
    width: 100%;
  }
  .top .content-box02-txt {
    width: 100%;
    margin: 0;
  }
  .top .content-box02-btn {
    width: 66.2%;
    margin: 0 auto 0 14.7%;
  }
  .top .content-box03 {
    margin: 24% 0 0 0;
    padding: 0;
    width: 100%;
  }
  .top .content-box03-txt {
    width: 100%;
    margin: 0;
  }
  .top .content-box03-btn {
    width: 66.2%;
    margin: 0 auto 0 14.7%;
  }
  .common {
    max-width: 100%;
    width: 100%;
    margin: 10% auto 0;
  }
  .common-foot-ttl {
    margin: 0 auto;
    width: 82.2%;
  }
  .common-foot-lead {
    margin: 7% auto 0;
    width: 67.5%;
  }
  .common-foot-lead img {
    margin: 0 auto;
  }
  .common-foot-logo {
    margin: 7.9% auto 0;
    width: 31%;
  }
  .common-foot-box {
    display: flex;
    justify-content: space-between;
    width: 65.5%;
    margin: 15.5% auto 0;
    flex-wrap: wrap;
  }
  .common-foot-btn {
    display: block;
    width: 100%;
  }
  .common-foot-btn:nth-child(2) {
    margin: 12% auto 0;
  }
  .common-foot-btn-attention {
    color: #000;
    letter-spacing: 0;
  }
  /* 20241219UP牟田対応 */
  /* .common-foot-box {
    justify-content: center;
  } */
  #footer {
    width: 100%;
    max-width: 100%;
  }
  .footer-nav--new {
    margin-bottom: 86px;
  }
  .footer-nav--new__inner {
	  padding:40px 20px;
    background-color: #f4f4f4;
  }
  .footer-nav--new__link-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
  .footer-nav--new__link-list__child {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    padding-right: 5px;
    margin-bottom: 25px;
  }
  .footer-nav--new__link-list__link {
    /*font-size: 14px;*/
    line-height: 1;
    color: #231815 !important;
	  font-size:22px!important;
  }
  .footer-nav--new__link-list__link--bold {
    font-weight: bold;
  }
  .footer-nav--new__link-list--sns__child {
    display: inline-block;
    padding-right: 10px;
  }
  .footer-nav--new__link-list--sns__child a{
    width:50px;
	  display: block;
  }


  .footer-nav--new__link-list--sns__child img{
   width: 100%;
    height: auto;
  }
  .copyright {
    display: block;

	  color:#313131;

    text-align: center;
	 /* font-weight: bold;
	  font-size: 16px;
	  padding-bottom:50px;*/

  }
}
@media screen and (max-width:640px) {



	 .footer-nav--new {
    margin-bottom:calc(86 / 640 * 100vw);
  }
	  .footer-nav--new__inner {
	  padding:calc(40 / 640 * 100vw) 20px;
    background-color: #f4f4f4;
  }

  .footer-nav--new__link-list__child {
    margin-bottom:calc(25 / 640 * 100vw) ;
  }

  .footer-nav--new__link-list__link {
    font-size:calc(22 / 640 * 100vw) !important;
  }

  .footer-nav--new__link-list--sns__child a{
    width:calc(50 / 640 * 100vw);
  }

	  .copyright {
    font-size: calc(16 / 640 * 100vw);
	  padding-bottom:calc(10 / 640 * 100vw);
	/*  padding-bottom:calc(50 / 640 * 100vw);*/
  }















}

/*共有*/
.sp_on {
	display: none;
}
@media screen and (max-width:768px) {
.sp_on {
	display: inline;
}
.sp_off {
	display: none;
}

  }




/*ヘッダーテキスト化*/
.block_header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background: #fff;
}
.block_header .header_inner {
    position: relative;
    z-index: 0;
    width: 93%;
    margin: 0 auto;
    /*padding: 38px 2.388%;*/
    padding: 32px 2.388%;
    border-left: 1px solid #a0a0a0;
    border-right: 1px solid #a0a0a0;
    display: flex;
    justify-content: space-between;
	height: 100px;
}
.block_header .header_logo {
    position: absolute;
    /*top: 25px;*/
    top: 38px;
    left: 2.388%;
    width: 136px;
}
.block_header .header_nav {
    width: calc(100% - 136px);
    margin: 0 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 3.30%;
}
.block_header .header_nav .manu_list {
    width: 890px;
    max-width: 95%;
    display: flex;
    justify-content: flex-end;
    gap: 0 2.87%;
}
.block_header .header_nav .manu_list a {
    font-size: 14px;
    white-space: nowrap;
    color: #5a322a;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.block_header .header_nav .sub_list {
    width: 210px;
    max-width: 15.10%;
    display: flex;
    align-items: center;
    gap: 0 8%;
}
.block_header .header_nav .sub_list a {
    display: block;
}
.block_header .header_nav .sub_list .login {
    position: relative;
    z-index: 0;
    width: 61.90%;
    aspect-ratio: 130 / 36;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #3e3a39;
    border-radius: 2px;
    font-size: calc(14 / 1800 * 100vw);
    font-weight: bold;
    color: #3e3a39;
    align-self: baseline;
    white-space: nowrap;
    padding: 0 5%
}
.block_header .header_nav .sub_list .login::after {
            content: "";
        display: block;
        position: absolute;
        z-index:0;
        top: 50%;
        right:.8em;
	transform: translateY(-50%) rotate(45deg);
        width: .5714em;
        aspect-ratio: 1;
	border: solid #3e3a39;
	border-width: 1px 1px 0 0;

}
.block_header .header_nav .sub_list .login:hover, .block_header .header_nav .sub_list .login:active {
    text-decoration: none;
    color: #3e3a39;
}
.block_header .header_nav .sub_list .sns {
    width: 9.52%;
    width: 20px;
}
@media screen and (max-width:1500px) {
    .block_header .header_nav .manu_list a,
	.block_header .header_nav .sub_list .login {
        font-size: calc(13 / 1500 * 100vw);
    }
}
@media screen and (max-width: 1200px) {
.block_header .header_nav .sub_list .login{
     letter-spacing: -.1em;
}
.block_header .header_nav .sub_list .login::after {
        right:.2em;
}
}
@media screen and (max-width: 768px) {
    .block_header {
        display: none;
    }
}



/*shop.csguide--index__html*/
/*mv_text*/
.mv_text {
    color: #5a322a;
    margin-top: calc(68 / 1800 * 100vw);
}
.mv_text .inner {
    width: calc(810 / 1800 * 100vw);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.mv_text h2 {
    width: 4.94%;
    font-size: calc(21 / 1800 * 100vw);
    font-weight: bold;
}
.mv_text .box_text {
    position: relative;
    z-index: 0;
    width: 91.35%;
    padding: 0 calc(35 / 1800 * 100vw) calc(13 / 1800 * 100vw);
    border: solid #5a322a;
    border-width: 0 1px;
}
.mv_text .box_text::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    background-color: #5a322a;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    top: calc(-4 / 1800 * 100vw);
    left: calc(-4 / 1800 * 100vw);
    width: calc(7 / 1800 * 100vw);
    aspect-ratio: 1;
    border-radius: 99px;
}
.mv_text .box_text p {
    font-size: calc(17 / 1800 * 100vw);
    line-height: 1.76;
    letter-spacing: .05em;
}
.mv_text .box_text a {
    display: block;
    width: fit-content;
    margin-top: .5em;
    color: #5a322a;
    font-size: calc(17 / 1800 * 100vw);
    font-weight: bold;
    letter-spacing: -.07em;
}
@media screen and (max-width: 768px) {
    .mv_text .inner {
        width: calc(524 / 640 * 100vw);
        margin-top: calc(50 / 640 * 100vw);
        display: block;
    }
    .mv_text h2 {
        width: auto;
        font-size: calc(26 / 640 * 100vw);
        margin: 0 0 .2254em -1em;
    }
    .mv_text .box_text {
        width: 100%;
        padding: 0 0 calc(5 / 640 * 100vw) calc(35 / 640 * 100vw);
        border-width: 0 0 0 1px;
		border: none;
    }
    .mv_text .box_text::before {
        top: calc(5 / 640 * 100vw);
        left: calc(-6 / 640 * 100vw);
        width: calc(11 / 640 * 100vw);
    }
    .mv_text .box_text::after {
        content: "";
        display: block;
        position: absolute;
        z-index:0;
        background-color: #5a322a;
        top: 5px;
        left: -1px;
        width: 1px;
        height:calc(100% - 6px);

    }
    .mv_text .box_text p {
        font-size: calc(26.22 / 640 * 100vw);
        line-height: 1.76;
        letter-spacing: -.05em;
    }
    .mv_text .box_text a {
        margin-top: 1em;
        font-size: calc(26.22 / 640 * 100vw);
        border-bottom: 1px solid #5a322a;
        padding-bottom: .3em
    }
    .mv_text .box_text a:hover, .mv_text .box_text a:active {
        text-decoration: none;
    }
}
/*content_ttl*/
.content_ttl {
    margin: 0 auto calc(135 / 1800 * 100vw);
}
.content_ttl h2 {
    font-size: calc(45 / 1800 * 100vw);
    font-weight: bold;
    letter-spacing: -.02em;
    color: #5a322a;
    text-align: center;
	/*text-shadow: 0 0 1px #5a322a;*/
}
.content_ttl h2 .dec01{
	font-weight: bold;
   letter-spacing: .3em;
	margin-left:.3em;
}
@media screen and (max-width:768px) {
    .content_ttl {
        margin: 0 auto calc(108 / 640 * 100vw);
    }
    .content_ttl h2 {
        font-size: calc(36 / 640 * 100vw);
		 letter-spacing: .07em;
    }
}
/*content_box01*/
.content_box01 {}
.content_box01 .inner {
    position: relative;
    z-index: 0;
    /*background-image: url("../images/top/img01.jpg");

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;*/
    padding-left: 3.35%;
    padding-bottom: calc(45 / 1800 * 100vw);
    width: calc(1540 / 1800 * 100vw);
    aspect-ratio: 1540 / 569;
    margin: 0 0 0 auto;
    display: flex;
    align-items: flex-end;
    color: #5a322a;
}
.content_box01 .box_img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.content_box01 .box_img img {
    width: 100%;
    height: auto;
}
.content_box01 .box_text {
    width: calc(480 / 1800 * 100vw);
}
.content_box01 .box_text h3 {
    font-size: calc(28 / 1800 * 100vw);
    font-weight: bold;
    letter-spacing: -.02em;
    line-height: 1.8;
	/*text-shadow: 0 0 1px #5a322a;*/
}
.content_box01 .box_text h3 .dec01{
   font-weight: bold;
  letter-spacing: .16em;

}
.content_box01 .box_text p {
    margin: calc(35 / 1800 * 100vw) 0 calc(54 / 1800 * 100vw);
font-size: calc(18 / 1800 * 100vw);
  font-weight: bold;
  line-height: 2.60;
  letter-spacing: .02em;
}
.content_box01 .box_text .dec01 {
font-size: 1.125em;
	font-weight: bold;
	 letter-spacing: .06em;
}
.content_box01 .box_text a {
    position: relative;
    z-index: 0;
    width: calc(417 / 1800 * 100vw);
    aspect-ratio: 417 / 71;
    color: #5a322a;
    font-size: calc(26 / 1800 * 100vw);
    font-weight: bold;
    line-height: 1;
    border: 1px solid #5a322a;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
.content_box01 .box_text a::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    background-color: #5a322a;
    top: 50%;
    right: calc(13 / 1800 * 100vw);
    transform: translateY(-50%);
    width: calc(6 / 1800 * 100vw);
    aspect-ratio: 6 / 8;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.content_box01 .box_text a:hover, .content_box01 .box_text a:active {
    text-decoration: none;
    background-color: rgba(255 255 255 /.8);
}
@media screen and (max-width: 768px) {
    .content_box01 .inner {
        padding: 0;
        width: calc(548 / 640 * 100vw);
        aspect-ratio: unset;
        flex-flow: column;
        align-items: flex-end;
        color: #5a322a;
    }
    .content_box01 .box_img {
        position: static;
        margin-bottom: calc(50 / 640 * 100vw);
    }
    .content_box01 .box_text {
        width: 100%;
        padding-right: 10.7%;
        ;
    }
    .content_box01 .box_text h3 {
        font-size: calc(32 / 640 * 100vw);
        letter-spacing: .2em;
    }

	.content_box01 .box_text h3 .dec01 {
  letter-spacing: .13em;
}
    .content_box01 .box_text p {
        margin: calc(37 / 640 * 100vw) 0;
        font-size: calc(26.22 / 640 * 100vw);
        line-height: 1.78;
        /*letter-spacing: -0.02em;*/
		letter-spacing: -0.10em;
		font-weight: 500;
    }
    .content_box01 .box_text a {
        position: relative;
        z-index: 0;
        width: calc(425 / 640 * 100vw);
        aspect-ratio: 425 / 71;
        font-size: calc(26 / 640 * 100vw);
    }
    .content_box01 .box_text a::after {
        right: calc(13 / 640 * 100vw);
        width: calc(6 / 640 * 100vw);
    }
}
/*content_box02*/
.content_box02 {
    margin-top: calc(140 / 1800 * 100vw);
}
.content_box02 .inner {
    position: relative;
    z-index: 0;
    /*background-image: url("../images/top/img01.jpg");

        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;*/
    padding-right: 3.35%;
    padding-bottom: calc(45 / 1800 * 100vw);
    width: calc(1540 / 1800 * 100vw);
    aspect-ratio: 1540 / 569;
    margin: 0 auto 0 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    color: #5a322a;
}
.content_box02 .box_img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.content_box02 .box_img img {
    width: 100%;
    height: auto;
}
.content_box02 .box_text {
    width: calc(460 / 1800 * 100vw);
}
.content_box02 .box_text h3 {
    font-size: calc(28 / 1800 * 100vw);
    font-weight: bold;
   letter-spacing: -.02em;
    line-height: 1.8;
	/*text-shadow: 0 0 1px #5a322a;*/
}
.content_box02 .box_text h3 .dec01{
   font-weight: bold;
  letter-spacing: .16em;

}
.content_box02 .box_text p {
    margin: calc(35 / 1800 * 100vw) 0 calc(54 / 1800 * 100vw);
font-size: calc(18 / 1800 * 100vw);
  font-weight: bold;
  line-height: 2.60;
  letter-spacing: .02em;
}
.content_box02 .box_text .dec01 {
font-size: 1.125em;
	font-weight: bold;
	 /*letter-spacing: .06em;*/
}


.content_box02 .box_text a {
    position: relative;
    z-index: 0;
    width: calc(417 / 1800 * 100vw);
    aspect-ratio: 417 / 71;
    color: #5a322a;
    font-size: calc(26 / 1800 * 100vw);
    font-weight: bold;
    line-height: 1;
    border: 1px solid #5a322a;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
.content_box02 .box_text a::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    background-color: #5a322a;
    top: 50%;
    right: calc(13 / 1800 * 100vw);
    transform: translateY(-50%);
    width: calc(6 / 1800 * 100vw);
    aspect-ratio: 6 / 8;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.content_box02 .box_text a:hover, .content_box02 .box_text a:active {
    text-decoration: none;
    background-color: rgba(255 255 255 /.8);
}
@media screen and (max-width: 768px) {
    .content_box02 {
        margin-top: calc(140 / 640 * 100vw);
    }
    .content_box02 .inner {
        padding: 0;
        width: calc(548 / 640 * 100vw);
        aspect-ratio: unset;
        flex-flow: column;
        align-items: flex-end;
        color: #5a322a;
    }
    .content_box02 .box_img {
        position: static;
        margin-bottom: calc(50 / 640 * 100vw);
    }
    .content_box02 .box_text {
        width: calc(490 / 640 * 100vw);
        margin-right: -6.30%;
    }
    .content_box02 .box_text h3 {
        font-size: calc(32 / 640 * 100vw);
        letter-spacing: .2em;
    }
    .content_box02 .box_text p {
        margin: calc(37 / 640 * 100vw) 0;
        font-size: calc(26.22 / 640 * 100vw);
        line-height: 1.78;
        letter-spacing: -.1em;
				font-weight: 500;

    }
    .content_box02 .box_text a {
        position: relative;
        z-index: 0;
        width: calc(425 / 640 * 100vw);
        aspect-ratio: 425 / 71;
        font-size: calc(26 / 640 * 100vw);
    }
    .content_box02 .box_text a::after {
        right: calc(13 / 640 * 100vw);
        width: calc(6 / 640 * 100vw);
    }
}
/*content_box02*/
.content_box03 {
    margin-top: calc(140 / 1800 * 100vw);

}
.content_box01.content_box03 .box_text h3 {
    color: #fff;
	/*text-shadow: 0 0 1px #fff;*/
}
.content_box01.content_box03 .box_text p {
    color: #fff;
}
@media screen and (max-width: 768px) {
    .content_box03 {
        margin-top: calc(140 / 640 * 100vw);
    }
    .content_box01.content_box03 .box_text h3, .content_box01.content_box03 .box_text p {
        color: #5a322a;
		/*text-shadow: 0 0 1px #5a322a;*/
    }
}
/*common_n*/
.common_n {
    margin: 0 auto;
    padding: calc(290 / 1800 * 100vw) 0 calc(114 / 1800 * 100vw);
    max-width: 93%;
    width: 100%;
    border-left: 1px solid #a0a0a0;
    border-right: 1px solid #a0a0a0;
}
.common_n h3 {
    font-size: calc(45 / 1800 * 100vw);
    font-weight: bold;
    letter-spacing: -.02em;
    color: #5a322a;
    text-align: center;
	/*text-shadow: 0 0 1px #5a322a;*/
}
.common_n h3 .dec01{
	font-weight: bold;
   letter-spacing: .3em;
	margin-left:.3em;
}



.common_n p {
    width: fit-content;
    text-align: center;
    margin: calc(40 / 1800 * 100vw) auto calc(60 / 1800 * 100vw);
    font-size: calc(17 / 1800 * 100vw);
    font-weight: bold;
    line-height: 2.75;
    letter-spacing: .05em;
    color: #5a322a;
}
.common_n .footer_logo {
    width: calc(230 / 1800 * 100vw);
    margin: 0 auto calc(80 / 1800 * 100vw);
}
.common_n .wrapper_btn {
    width: calc(950 / 1800 * 100vw);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.common_n .wrapper_btn .btn00 {
    position: relative;
    z-index: 0;
    width: 43.89%;
    aspect-ratio: 417 / 71;
    color: #5a322a;
   /* font-size: calc(26 / 1800 * 100vw);
	letter-spacing: -.04em;*/
    font-weight: bold;
    line-height: 1;
    border: 1px solid #5a322a;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
	font-size: calc(24 / 1800* 100vw);
  letter-spacing: .04em;
	/*text-shadow: 0 0 1px #5a322a;*/

}
.common_n .wrapper_btn .btn00:hover, .common_n .wrapper_btn .btn00:active {
    text-decoration: none;
    opacity: .6;
}
.common_n .wrapper_btn .btn00::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    background-color: #5a322a;
    top: 50%;
    right: calc(13 / 1800 * 100vw);
    transform: translateY(-50%);
    width: calc(6 / 1800 * 100vw);
    aspect-ratio: 6 / 8;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.common_n .wrapper_btn .btn00 .cap {
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: -1.5em;
    font-size: min(.7em, 13px);
    letter-spacing: 0;
    color: #000;
}
.common_n .wrapper_btn .btn00.registration {
    color: #fff;
    background-color: #5a322a;
	/*text-shadow: 0 0 1px #fff;*/
}
.common_n .wrapper_btn .btn00.registration::after {
    background-color: #fff;
}
@media screen and (max-width: 768px) {
    .common_n {
        max-width: 100%;
        width: 100%;
        padding: calc(150 / 640 * 100vw) 0 calc(150 / 640 * 100vw);
    }
    .common_n h3 {
        font-size: calc(32 / 640 * 100vw);
    letter-spacing: .08em;
    }
	.common_n h3 .dec01 {
  letter-spacing: .3em;
}
    .common_n p {
        margin: calc(48 / 640 * 100vw) auto;
        font-size: calc(26.22 / 640 * 100vw);
        line-height: 1.78;
        letter-spacing: -.05em;
		font-weight:500;
    }
    .common_n .footer_logo {
        width: calc(200 / 640 * 100vw);
        margin: 0 auto calc(100 / 640 * 100vw);
    }
    .common_n .wrapper_btn {
        flex-flow: column;
        align-items: center;
        gap: calc(60 / 640 * 100vw) 0;
    }
    .common_n .wrapper_btn .btn00 {
        position: relative;
        z-index: 0;
        width: calc(425 / 640 * 100vw);
        aspect-ratio: 425 / 71;
        font-size: calc(26 / 640 * 100vw);
    }
    .common_n .wrapper_btn .btn00::after {
        right: calc(13 / 640 * 100vw);
        width: calc(6 / 640 * 100vw);
    }
}




/*shop.csguide--******__html*/
.mv_text{


}


@media screen and (max-width: 768px) {


}

