@charset "UTF-8";
/* 基本設定 */
/*============================================
	― 変数設定
=============================================*/
/*============================================
	― PC表示
=============================================*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap");
.pc-disblock {
  display: block;
}

.pc-disline {
  display: inline;
}

.pc-dislineblock {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

/*============================================
	― スマホ表示切り替え
=============================================*/
@media screen and (max-width: 769px) {
  .pc-disblock {
    display: none;
  }
  .pc-disline {
    display: none;
  }
  .pc-dislineblock {
    display: none;
  }
  .sp-disblock {
    display: block;
  }
  .sp-disline {
    display: inline;
  }
  .sp-dislineblock {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
}

/* modules */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 BOX-LIST01 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.box-list {
  width: 100%;
  background: linear-gradient(45deg, rgb(101, 96, 100) 0%, rgb(141, 141, 142) 100%);
  padding: 50px 0 50px 0;
  overflow: hidden;
}
.box-list .wrapper .inner .box-wrapper {
  padding: 60px 0% 60px 0%;
  margin: 0 0 0 0;
  max-width: 1920px;
  position: relative;
}
.box-list .wrapper .inner .box-wrapper .box {
  width: 90%;
  padding: 5px 0 0px 0;
  position: relative;
}
.box-list .wrapper .inner .box-wrapper .box:after {
  position: absolute;
  content: "";
  top: 5vw;
  left: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transform: scale(0.75);
  -moz-filter: blur(5vw);
  -ms-filter: blur(5vw);
  filter: blur(5vw);
  background: linear-gradient(270deg, #413d3f, #4e4e4e);
  background-size: 200% 200%;
  animation: animateGlow 10s ease infinite;
}
@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.box-list .wrapper .inner .box-wrapper .box .inset {
  background: linear-gradient(45deg, rgb(82, 82, 82) 0%, rgb(97, 95, 95) 100%);
  position: relative;
  z-index: 2;
  padding: 5px 0 50px 0;
}
.box-list .wrapper .inner .box-wrapper .box .inset h3 {
  color: #fff;
  font-family: "Antonio";
  font-weight: normal;
  text-align: center;
  letter-spacing: 4px;
  font-size: 30px;
  margin: -25px 0 0 0;
}
.box-list .wrapper .inner .box-wrapper .box .inset .thumb {
  width: 450px;
  margin: 40px auto 0;
}
.box-list .wrapper .inner .box-wrapper .box .inset h2 {
  color: #fff;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  font-size: 50px;
  margin: 50px 0 0 0;
}
.box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 4% 0 4%;
}
.box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block {
  background: rgba(63, 62, 62, 0.9);
  padding: 15px 60px 15px 60px;
  margin: 20px 20px 0 0;
  width: 48%;
  display: flex;
  align-items: center;
}
.box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block .icon {
  line-height: 0;
  width: 80px;
}
.box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block .icon img {
  width: 100%;
  height: auto;
}
.box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block .catch {
  width: calc(100% - 70px);
  padding: 0 20px 0 15px;
}
.box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block .catch h4 {
  color: #fff;
  font-family: "Josefin Sans";
  letter-spacing: 4px;
  font-size: 22px;
}
.box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block .catch p {
  color: rgb(218, 218, 218);
  letter-spacing: 2px;
  font-size: 18px;
}
.box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block:nth-child(2n) {
  margin: 20px 0 0 0;
}
.box-list .wrapper .inner .box-wrapper .box .inset .sentence {
  margin: 60px auto 0;
  width: 86%;
}
.box-list .wrapper .inner .box-wrapper .box .inset .sentence p {
  color: #fff;
  letter-spacing: 2px;
  line-height: 2.5;
  padding: 10px 0 10px 0;
  font-size: 18px;
}
.box-list .wrapper .inner .box-wrapper .box.box01 {
  margin: 0 auto 0;
}
.box-list .wrapper .inner .box-wrapper .box.box01 .inset .thumb {
  position: relative;
}
.box-list .wrapper .inner .box-wrapper .box.box02 {
  margin: 80px auto 0;
}
.box-list .wrapper .inner .box-wrapper .box.box02 .thumb {
  position: relative;
}
.box-list .wrapper .inner .box-wrapper .box.box03 {
  margin: 80px auto 0;
}
.box-list .wrapper .inner .box-wrapper .box.box03 .inset .thumb {
  position: relative;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .box-list {
    padding: 50px 0 50px 0;
    overflow: hidden;
  }
  .box-list .wrapper .inner .box-wrapper {
    padding: 60px 0% 60px 0%;
    margin: 0 0 0 0;
    max-width: 100%;
  }
  .box-list .wrapper .inner .box-wrapper .box {
    width: 90%;
    padding: 5px 0 0px 0;
    position: relative;
    margin: 20px auto 0;
  }
  .box-list .wrapper .inner .box-wrapper .box:after {
    position: absolute;
    content: "";
    top: 5vw;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset {
    padding: 5px 0 50px 0;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset h3 {
    letter-spacing: 4px;
    font-size: 6vw;
    margin: -25px 0 0 0;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset .thumb {
    width: 60vw;
    margin: 40px auto 0;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset h2 {
    letter-spacing: 2px;
    font-size: 8vw;
    margin: 50px 0 0 0;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper {
    display: block;
    padding: 0 4% 0 4%;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block {
    padding: 15px 20px 15px 20px;
    margin: 20px auto 0;
    width: 100%;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block .icon {
    line-height: 0;
    width: 8vw;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block .icon img {
    width: 100%;
    height: auto;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block .catch {
    width: calc(100% - 8vw);
    padding: 0 20px 0 20px;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block .catch h4 {
    letter-spacing: 3px;
    font-size: 5vw;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block .catch p {
    letter-spacing: 1px;
    font-size: 3.75vw;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset .block-wrapper .block:nth-child(2n) {
    margin: 20px auto 0;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset .sentence {
    margin: 30px auto 0;
    width: 86%;
  }
  .box-list .wrapper .inner .box-wrapper .box .inset .sentence p {
    letter-spacing: 2px;
    line-height: 2.5;
    padding: 10px 0 10px 0;
    font-size: 4vw;
  }
  .box-list .wrapper .inner .box-wrapper .box.box01 {
    margin: 0 auto 0;
  }
  .box-list .wrapper .inner .box-wrapper .box.box01 .inset .thumb {
    position: relative;
  }
  .box-list .wrapper .inner .box-wrapper .box.box02 {
    margin: 80px auto 0;
  }
  .box-list .wrapper .inner .box-wrapper .box.box02 .thumb {
    position: relative;
  }
  .box-list .wrapper .inner .box-wrapper .box.box03 {
    margin: 80px auto 0;
  }
  .box-list .wrapper .inner .box-wrapper .box.box03 .inset .thumb {
    position: relative;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* breakpoints *//*# sourceMappingURL=style.css.map */