/* ---------------------------- */
/* Base
/* ---------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");

.ja {
  font-family: "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto,
    "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium",
    Verdana, Meiryo, sans-serif;
}
.en {
  font-family: "Marcellus", serif;
  font-weight: 400;
}

html {
  font-size: 62.5%;
}
main .l-inner * {
  box-sizing: border-box;
}
main .l-inner {
  margin: 0 auto;
}
main .l-inner article {
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI",
  "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
  color: #4d4d4d;
  background-color: #e6e6e6;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.ftool-wrapper {
  background-color: #fff;
}
.ftool-wrapper p {
  line-height: 1em;
}
.ftool-wrapper .col--02--C {
  width: auto;
}

body {
  overflow-x: unset;
  margin: 0;
}

/*fix*/
.pc {
  display: block;
}
.sp {
  display: none !important;
}

/* block */
.block {
  display: block;
}
/* grid */
.grid {
  display: grid;
}
/* flex */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* -ms-flex-direction */
.f_direction {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.f_row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.f_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.f_column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/* flex-wrap */
.f_wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.f_nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.f_wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.f_row-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

/* justify-content */
.f_jc-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.f_jc-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.f_jc-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.f_jc-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.f_jc-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* align-items */
.f_ai-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.f_ai-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.f_ai-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.f_ai-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.f_ai-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/* align-content */
.f_ac-stretch {
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.f_ac-start {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.f_ac-end {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.f_ac-center {
  -ms-flex-line-pack: center;
  align-content: center;
}
.f_ac-between {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.f_ac-around {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}

/* align-self */
.f_as-auto {
  -ms-flex-item-align: auto;
  align-self: auto;
}
.f_as-start {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.f_as-end {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.f_as-center {
  -ms-flex-item-align: center;
  align-self: center;
}
.f_as-baseline {
  -ms-flex-item-align: baseline;
  align-self: baseline;
}
.f_as-stretch {
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.align-l {
  text-align: left;
}
.align-r {
  text-align: right;
}
.align-c {
  text-align: center;
}

.ver-t {
  vertical-align: top;
}
.ver-m {
  vertical-align: middle;
}
.ver-b {
  vertical-align: bottom;
}

.w5 {
  width: 5%;
}
.w10 {
  width: 10%;
}
.w15 {
  width: 15%;
}
.w20 {
  width: 20%;
}
.w25 {
  width: 25%;
}
.w30 {
  width: 30%;
}
.w35 {
  width: 35%;
}
.w40 {
  width: 40%;
}
.w45 {
  width: 45%;
}
.w50 {
  width: 50%;
}
.w55 {
  width: 55%;
}
.w60 {
  width: 60%;
}
.w65 {
  width: 65%;
}
.w70 {
  width: 70%;
}
.w75 {
  width: 75%;
}
.w80 {
  width: 80%;
}
.w85 {
  width: 85%;
}
.w90 {
  width: 90%;
}
.w95 {
  width: 95%;
}
.w100 {
  width: 100%;
}

.ma5 {
  margin: 5px;
}
.ma10 {
  margin: 10px;
}
.ma15 {
  margin: 15px;
}
.ma20 {
  margin: 20px;
}
.ma25 {
  margin: 25px;
}
.ma30 {
  margin: 30px;
}
.ma35 {
  margin: 35px;
}
.ma40 {
  margin: 40px;
}
.ma45 {
  margin: 45px;
}
.ma50 {
  margin: 50px;
}
.ma55 {
  margin: 55px;
}
.ma60 {
  margin: 60px;
}
.ma65 {
  margin: 65px;
}
.ma70 {
  margin: 70px;
}
.ma75 {
  margin: 75px;
}
.ma80 {
  margin: 80px;
}
.ma85 {
  margin: 85px;
}
.ma90 {
  margin: 90px;
}
.ma95 {
  margin: 95px;
}
.ma100 {
  margin: 100px;
}

.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mt40 {
  margin-top: 40px;
}
.mt45 {
  margin-top: 45px;
}
.mt50 {
  margin-top: 50px;
}
.mt55 {
  margin-top: 55px;
}
.mt60 {
  margin-top: 60px;
}
.mt65 {
  margin-top: 65px;
}
.mt70 {
  margin-top: 70px;
}
.mt75 {
  margin-top: 75px;
}
.mt80 {
  margin-top: 80px;
}
.mt85 {
  margin-top: 85px;
}
.mt90 {
  margin-top: 90px;
}
.mt95 {
  margin-top: 95px;
}
.mt100 {
  margin-top: 100px;
}

.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb55 {
  margin-bottom: 55px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb65 {
  margin-bottom: 65px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb75 {
  margin-bottom: 75px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb85 {
  margin-bottom: 85px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb95 {
  margin-bottom: 95px;
}
.mb100 {
  margin-bottom: 100px;
}
.mb150 {
  margin-bottom: 150px;
}

.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml30 {
  margin-left: 30px;
}
.ml35 {
  margin-left: 35px;
}
.ml40 {
  margin-left: 40px;
}
.ml45 {
  margin-left: 45px;
}
.ml50 {
  margin-left: 50px;
}
.ml55 {
  margin-left: 55px;
}
.ml60 {
  margin-left: 60px;
}
.ml65 {
  margin-left: 65px;
}
.ml70 {
  margin-left: 70px;
}
.ml75 {
  margin-left: 75px;
}
.ml80 {
  margin-left: 80px;
}
.ml85 {
  margin-left: 85px;
}
.ml90 {
  margin-left: 90px;
}
.ml95 {
  margin-left: 95px;
}
.ml100 {
  margin-left: 100px;
}

.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.mr30 {
  margin-right: 30px;
}
.mr35 {
  margin-right: 35px;
}
.mr40 {
  margin-right: 40px;
}
.mr45 {
  margin-right: 45px;
}
.mr50 {
  margin-right: 50px;
}
.mr55 {
  margin-right: 55px;
}
.mr60 {
  margin-right: 60px;
}
.mr65 {
  margin-right: 65px;
}
.mr70 {
  margin-right: 70px;
}
.mr75 {
  margin-right: 75px;
}
.mr80 {
  margin-right: 80px;
}
.mr85 {
  margin-right: 85px;
}
.mr90 {
  margin-right: 90px;
}
.mr95 {
  margin-right: 95px;
}
.mr100 {
  margin-right: 100px;
}

.pa5 {
  padding: 5px;
}
.pa10 {
  padding: 10px;
}
.pa15 {
  padding: 15px;
}
.pa20 {
  padding: 20px;
}
.pa25 {
  padding: 25px;
}
.pa30 {
  padding: 30px;
}
.pa35 {
  padding: 35px;
}
.pa40 {
  padding: 40px;
}
.pa45 {
  padding: 45px;
}
.pa50 {
  padding: 50px;
}
.pa55 {
  padding: 55px;
}
.pa60 {
  padding: 60px;
}
.pa65 {
  padding: 65px;
}
.pa70 {
  padding: 70px;
}
.pa75 {
  padding: 75px;
}
.pa80 {
  padding: 80px;
}
.pa85 {
  padding: 85px;
}
.pa90 {
  padding: 90px;
}
.pa95 {
  padding: 95px;
}
.pa100 {
  padding: 100px;
}

.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pt35 {
  padding-top: 35px;
}
.pt40 {
  padding-top: 40px;
}
.pt45 {
  padding-top: 45px;
}
.pt50 {
  padding-top: 50px;
}
.pt55 {
  padding-top: 55px;
}
.pt60 {
  padding-top: 60px;
}
.pt65 {
  padding-top: 65px;
}
.pt70 {
  padding-top: 70px;
}
.pt75 {
  padding-top: 75px;
}
.pt80 {
  padding-top: 80px;
}
.pt85 {
  padding-top: 85px;
}
.pt90 {
  padding-top: 90px;
}
.pt95 {
  padding-top: 95px;
}
.pt100 {
  padding-top: 100px;
}

.pb5 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb35 {
  padding-bottom: 35px;
}
.pb40 {
  padding-bottom: 40px;
}
.pb45 {
  padding-bottom: 45px;
}
.pb50 {
  padding-bottom: 50px;
}
.pb55 {
  padding-bottom: 55px;
}
.pb60 {
  padding-bottom: 60px;
}
.pb65 {
  padding-bottom: 65px;
}
.pb70 {
  padding-bottom: 70px;
}
.pb75 {
  padding-bottom: 75px;
}
.pb80 {
  padding-bottom: 80px;
}
.pb85 {
  padding-bottom: 85px;
}
.pb90 {
  padding-bottom: 90px;
}
.pb95 {
  padding-bottom: 95px;
}
.pb100 {
  padding-bottom: 100px;
}

.pl5 {
  padding-left: 5px;
}
.pl10 {
  padding-left: 10px;
}
.pl15 {
  padding-left: 15px;
}
.pl20 {
  padding-left: 20px;
}
.pl25 {
  padding-left: 25px;
}
.pl30 {
  padding-left: 30px;
}
.pl35 {
  padding-left: 35px;
}
.pl40 {
  padding-left: 40px;
}
.pl45 {
  padding-left: 45px;
}
.pl50 {
  padding-left: 50px;
}
.pl55 {
  padding-left: 55px;
}
.pl60 {
  padding-left: 60px;
}
.pl65 {
  padding-left: 65px;
}
.pl70 {
  padding-left: 70px;
}
.pl75 {
  padding-left: 75px;
}
.pl80 {
  padding-left: 80px;
}
.pl85 {
  padding-left: 85px;
}
.pl90 {
  padding-left: 90px;
}
.pl95 {
  padding-left: 95px;
}
.pl100 {
  padding-left: 100px;
}

.pr5 {
  padding-right: 5px;
}
.pr10 {
  padding-right: 10px;
}
.pr15 {
  padding-right: 15px;
}
.pr20 {
  padding-right: 20px;
}
.pr25 {
  padding-right: 25px;
}
.pr30 {
  padding-right: 30px;
}
.pr35 {
  padding-right: 35px;
}
.pr40 {
  padding-right: 40px;
}
.pr45 {
  padding-right: 45px;
}
.pr50 {
  padding-right: 50px;
}
.pr55 {
  padding-right: 55px;
}
.pr60 {
  padding-right: 60px;
}
.pr65 {
  padding-right: 65px;
}
.pr70 {
  padding-right: 70px;
}
.pr75 {
  padding-right: 75px;
}
.pr80 {
  padding-right: 80px;
}
.pr85 {
  padding-right: 85px;
}
.pr90 {
  padding-right: 90px;
}
.pr95 {
  padding-right: 95px;
}
.pr100 {
  padding-right: 100px;
}

.t_regular {
  font-weight: 400;
}
.t_medium {
  font-weight: 500;
}
.t_sem-bold {
  font-weight: 600;
}
.t_bold {
  font-weight: 700;
}
.t_extra-bold {
  font-weight: 900;
}

.t_maincolor {
  color: var(--main-color) !important;
}

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time05 {
  animation-delay: 0.5s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time08 {
  animation-delay: 0.8s;
}
.delay-time1 {
  animation-delay: 1s;
}
.delay-time12 {
  animation-delay: 1.2s;
}
.delay-time15 {
  animation-delay: 1.5s;
}
.delay-time2 {
  animation-delay: 2s;
}
.delay-time25 {
  animation-delay: 2.5s;
}
.delay-time3 {
  animation-delay: 3s;
}
.delay-time35 {
  animation-delay: 3.5s;
}
.delay-time4 {
  animation-delay: 4s;
}
.delay-time45 {
  animation-delay: 4.5s;
}

/* common */
.box-wrapper {
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}
.box-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/bg.jpg);
  background-repeat: repeat;
  opacity: 0.25;
}
.box-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 105%;
  width: 100%;
  background: linear-gradient(to bottom, #fff, #654d39, #643524, #244964, #fff);
  opacity: 0.1;
}

.box-wrapper img {
  width: 100%;
  height: auto;
}
/*.box-wrapper {
  transition: 1s;
  background: url(../images/bg.jpg);
  background-repeat: repeat;
}*/
.box-wrapper * {
  letter-spacing: 0;
  color: #070707;
}

.ftool-wrapper .col--02--C > div,
.ftool-wrapper .description {
  margin-bottom: 0;
}

.item-box li.description p{ line-height: 1.4; }

.box-wrapper .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 2;
}
.box-wrapper p {
  line-height: 2.4;
}

/* .fv */
.fv {
  text-align: center;
  padding: 100px 0;
}
.fv .container {
  max-width: 1000px;
}
.fv .logo {
  max-width: 128px;
  margin-bottom: 25px;
}
.fv h1 {
  margin-bottom: 50px;
}
.fv p {
  font-size: 17px;
  margin-bottom: 0;
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI",
  "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
}

.box-wrapper * {
  box-sizing: border-box;
}
.box-wrapper .item-wrapper .title {
  max-height: 100px;
  margin-bottom: 50px;
}
.box-wrapper .item-wrapper > .grid {
  gap: 260px 0;
}
.box-wrapper .item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 65px;
}
.box-wrapper .item-box .img img {
  border: 3px solid #fff;
}
.box-wrapper .item-box .img {
  position: relative;
}
.box-wrapper .item-box .img:before {
  content: "01";
  position: absolute;
  left: 20px;
  top: 24px;
  z-index: 2;
  font-size: 29px;
  color: #654d39;
  font-family: "Marcellus", serif;
}
.box-wrapper .item-grid .item-box:nth-child(2) .img:before {
  content: "02";
}
.box-wrapper .item-grid .item-box:nth-child(3) .img:before {
  content: "03";
}
.box-wrapper .item-grid .item-box:nth-child(4) .img:before {
  content: "04";
}
.box-wrapper .item-grid .item-box:nth-child(5) .img:before {
  content: "05";
}
.box-wrapper .item-grid .item-box:nth-child(6) .img:before {
  content: "06";
}
.box-wrapper .item-grid2 .item-box:nth-child(1) .img:before {
  content: "07";
}
.box-wrapper .item-grid2 .item-box:nth-child(2) .img:before {
  content: "08";
}
.box-wrapper .item-grid2 .item-box:nth-child(3) .img:before {
  content: "09";
}
.box-wrapper .item-grid2 .item-box:nth-child(4) .img:before {
  content: "10";
}
.box-wrapper .item-grid2 .item-box:nth-child(5) .img:before {
  content: "11";
}
.box-wrapper .item-grid2 .item-box:nth-child(6) .img:before {
  content: "12";
}
.box-wrapper .item-grid3 .item-box:nth-child(1) .img:before {
  content: "13";
}
.box-wrapper .item-grid3 .item-box:nth-child(2) .img:before {
  content: "14";
}
.box-wrapper .item-grid3 .item-box:nth-child(3) .img:before {
  content: "15";
}
.box-wrapper .item-grid3 .item-box:nth-child(4) .img:before {
  content: "16";
}
.box-wrapper .item-grid3 .item-box:nth-child(5) .img:before {
  content: "17";
}
.box-wrapper .item-grid3 .item-box:nth-child(6) .img:before {
  content: "18";
}
.box-wrapper .item-grid2 .item-box .img:before {
  color: #643524;
}
.box-wrapper .item-grid3 .item-box .img:before {
  color: #244964;
}

.box-wrapper .item-box .img:after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 24px;
  background: url("../images/arrow-01.svg") right bottom/contain no-repeat;
  width: 30px;
  height: 30px;
}
.box-wrapper .item-grid2 .item-box .img:after {
  background: url("../images/arrow-02.svg") right bottom/contain no-repeat;
}
.box-wrapper .item-grid3 .item-box .img:after {
  background: url("../images/arrow-03.svg") right bottom/contain no-repeat;
}

.box-wrapper .link {
  font-size: 22px;
  padding: 200px 0 100px;
  z-index: 1;
  position: relative;
}

.box-wrapper .link p{ margin-bottom: 0; }

.box-wrapper .link img {
  max-width: 1em;
  max-height: 1em;
}
.box-wrapper .link a {
  text-decoration: none;
  gap: 10px;
}

.box-wrapper .modal {
  background-color: #fafafa;
  width: 100%;
  height: 100vh;
  padding: 150px 0;
  margin: 0;
  overflow: scroll;
  position: fixed;
  left: 0;
  top: -100vh;
  z-index: 0;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
}
.box-wrapper .modal.active {
  top: 0;
  z-index: 9999;
}
.box-wrapper .modal .close {
  display: none;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 999;
  cursor: pointer;
}
.box-wrapper .modal.active .close {
  display: block;
}
.box-wrapper .modal .close::before,
.box-wrapper .modal .close::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #736442;
  transform: rotate(-45deg);
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0;
  margin: auto;
  transition: all 0.5s 0s ease;
}
.box-wrapper .modal .close::after {
  transform: rotate(45deg);
}
.box-wrapper .modal .coordinate {
  position: relative;
}
.box-wrapper .modal .coordinate:before {
  content: "OCTOBER";
  position: absolute;
  font-family: "Marcellus", serif;
  font-size: 41px;
  color: #654d39;
  left: -105px;
  top: 0;
  z-index: 1;
  writing-mode: vertical-rl;
}
.box-wrapper .modal .coordinate.red:before {
  content: "NOVEMBER";
  color: #643524;
}
.box-wrapper .modal .coordinate.blue:before {
  content: "DECEMBER";
  color: #244964;
}
.box-wrapper .modal .coordinate:after {
  content: "";
  position: absolute;
  height: calc(100% - 22em);
  width: 1px;
  background: #654d39;
  bottom: 0;
  left: -72px;
  z-index: 1;
}
.box-wrapper .modal .coordinate:not(:last-child) {
  margin-bottom: 400px;
}
.box-wrapper .modal .coordinate .top {
  margin-bottom: 100px;
  align-items: center;
}
.box-wrapper .modal .coordinate .top .text h2 {
  color: #fff;
  margin: 0 0 35px;
  line-height: 1em;
  font-size: 5.8rem;
  position: relative;
}
.box-wrapper .modal .coordinate .top .text-box {
  font-size: 1.5rem;
  line-height: 2;
}
.box-wrapper .modal .coordinate .top {
  gap: 100px 0;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.box-wrapper .modal .coordinate .top > .left {
  width: 54%;
}
.box-wrapper .modal .container{ padding: 0 150px!important; }
.box-wrapper .modal .coordinate .top > .right {
  width: 42%;
}
.box-wrapper .modal .coordinate .top .text {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
}
.box-wrapper .modal .coordinate .top .text p {
  font-size: 37px;
  gap: 30px;
  margin: 0;
}
.box-wrapper .modal .coordinate .top .text p .num {
  font-size: 90px;
  font-size: 6vw;
}
.box-wrapper .modal .coordinate .top .text p * {
  line-height: 1em;
  font-size: 2.5vw;
}
.box-wrapper .modal .coordinate .bottom > * {
  width: 100%;
  max-width: 650px;
}
.box-wrapper .modal .coordinate.brown * {
  color: #654D39;
}
.box-wrapper .modal .coordinate.red * {
  color: #643524;
}
.box-wrapper .modal .coordinate.blue * {
  color: #244964;
}
.box-wrapper .modal .coordinate.brown:before {
  color: #654D39;
}
.box-wrapper .modal .coordinate.brown:after {
  color: #654D39;
}
.box-wrapper .modal .coordinate.red:before {
  color: #643524;
}
.box-wrapper .modal .coordinate.red:after {
  background: #643524;
}
.box-wrapper .modal .coordinate.blue:before {
  color: #244964;
}
.box-wrapper .modal .coordinate.blue:after {
  background: #244964;
}
.box-wrapper .slick-dots {
  width: auto;
}
.box-wrapper .slick-dots li {
  width: 20px;
  border: 1px solid #654d39;
  height: 3px;
  background: #fff;
}
.box-wrapper .slick-dots li.slick-active {
  background: #654d39;
}

.box-wrapper .brown .slick-dots li {
  border-color: #654D39;
}
.box-wrapper .brown .slick-dots li.slick-active {
  background: #654D39;
}

.box-wrapper .red .slick-dots li {
  border-color: #643524;
}
.box-wrapper .red .slick-dots li.slick-active {
  background: #643524;
}

.box-wrapper .blue .slick-dots li {
  border-color: #244964;
}
.box-wrapper .blue .slick-dots li.slick-active {
  background: #244964;
}
.box-wrapper .slick-dots li button:before {
  content: "";
  height: 3px;
}

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

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

  .fv p{ font-size: 15px; }

  .box-wrapper .modal .coordinate:not(:last-child){ margin-bottom: 200px; }
  .box-wrapper .modal .container{ padding: 0 55px!important; }
  .box-wrapper .modal .coordinate .top{ flex-direction: column; margin-bottom: 0; }
  .box-wrapper .modal .coordinate .bottom .item-box{ margin-top: 45px; }
  .box-wrapper .modal .coordinate .top > .left{ width: 100%; padding-left: 0px; }
  .box-wrapper .modal .coordinate:before{ font-size: 20px; left: -45px; }
  .box-wrapper .modal .coordinate .top .text p{ flex-direction: column; font-size: 37px; gap: 5px; align-items: end; }
  .box-wrapper .modal .coordinate .top .text p *{ line-height: 1.2em; text-align: right; }
  .box-wrapper .modal .coordinate .top > .right{ width: 55%; }
  .box-wrapper .modal .coordinate:after{ height: calc(100% - 9em); left: -29px; }
  .box-wrapper .modal .close{ top: 20px; right: 20px; width: 15px; height: 15px; }
  .box-wrapper .modal .close::before, .box-wrapper .modal .close::after{ width: 15px; }
  .box-wrapper .modal{ padding: 50px 0; }
  .box-wrapper .modal .coordinate .top{ gap: 20px 0; }
}

@media screen and (max-width: 750px) {
  /* .common */

  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .box-wrapper .container {
    padding: 0 15px;
    width: auto;
  }

  /* .fv */

  .box-wrapper .fv {
  }
  .box-wrapper .fv h1 {
    margin: 30px;
  }

  /* .item-box */
  .box-wrapper .item-wrapper .title {
    max-height: 65px;
    margin-bottom: 10px;
  }
  .box-wrapper .item-grid {
    gap: 5px;
  }
  .box-wrapper .item-wrapper > .grid {
    gap: 100px 0;
  }

  .box-wrapper .item-box .img:after {
    right: 10px;
    bottom: 14px;
    width: 17px;
    height: 22px;
  }
  .box-wrapper .item-box .img:before {
    left: 10px;
    top: 9px;
    font-size: 15px;
  }
  .box-wrapper .link {
    font-size: 16px;
    padding: 100px 0 30px;
  }


}

@media screen and (max-width: 500px) {
  .fv{ padding: 100px 0 60px; }

  .box-wrapper .modal .coordinate .top .text p .num{ font-size: 49px; }
  .box-wrapper .modal .coordinate .top .text p *{ font-size: 22px; }
}


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

}
