@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/*--------------
ここから
--------------*/


/* ▽ 初期設定 --------------*/

:root {
  --base: #003c6e;
  --black: #000;
  --white: #fff;
  --no_yakuhan: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

#koyomaru_kandume {
  position: relative;
  /* padding-bottom: 120px; */
  width: 100vw;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 500;
  color: var(--black);
  margin-left: calc(50% - 50vw) !important;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume {
    /* padding: 0 0 80px 0; */
  }
}

#koyomaru_kandume a {
  transition: ease-in-out .3s;
}

#koyomaru_kandume a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume a:hover {
    opacity: 1;
  }
}

#koyomaru_kandume * {
  box-sizing: border-box;
}

#koyomaru_kandume img {
  display: block;
  width: 100%;
  max-width: 100%;
}

#koyomaru_kandume a img {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

#koyomaru_kandume a:hover img {
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume a:hover img {
    opacity: 1;
    transition: 0.3s ease-in-out;
  }
}

#koyomaru_kandume .pc {
  display: block;
}

#koyomaru_kandume .sp {
  display: none;
}

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

/*--------------------------
レイアウト
--------------------------*/

#koyomaru_kandume section {
  width: 100%;
  margin: 0;
  padding: 0;
}

#koyomaru_kandume .l_container {
  max-width: 1280px;
  margin: 0 auto;
}

#koyomaru_kandume .l_inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 calc(20/1280*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .l_inner {
    padding: 0 calc(30/375*100%);
  }
}



/*--------------------------
メソッド
--------------------------*/

.shadow{
    filter:drop-shadow(3px 7px 5px rgba(35 24 21 / .4));
    will-change: filter;
}

/* ▽ テキスト --------------*/
.mt_1em {
  margin-top: 1em;
  display: inline-block;
}

/* ▽ インビュー --------------*/

#koyomaru_kandume .area_fade, #koyomaru_kandume .area_fade02, #koyomaru_kandume .fade_delay01, #koyomaru_kandume .fade_delay02 {
  opacity: 0;
  transform: translateY(50px);
  transition: ease-in-out .4s;
}

#koyomaru_kandume .area_fade.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

#koyomaru_kandume .area_fade02.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

#koyomaru_kandume .fade_delay01.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  transition-delay: .5s;
}

#koyomaru_kandume .fade_delay02.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
  transition-delay: 1s;
}

#koyomaru_kandume .fade_scale01, #koyomaru_kandume .fade_scale02, #koyomaru_kandume .fade_scale03 {
  opacity: 0;
  transform: scale(0.5);
  transition: ease-in-out .4s;
}

#koyomaru_kandume .fade_scale01.active {
  opacity: 1;
  transform: scale(1);
}

#koyomaru_kandume .fade_scale02.active {
  opacity: 1;
  transform: scale(1);
  transition-delay: .5s;
}

#koyomaru_kandume .fade_scale03.active {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1s;
}

#koyomaru_kandume .kv_delay01 {
  opacity: 0;
  animation-name:fadeUp;
  animation-duration: .4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

#koyomaru_kandume .kv_delay02 {
  opacity: 0;
  animation-name:fadeUp;
  animation-duration: .4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: .5s;
}

#koyomaru_kandume .kv_delay03 {
  opacity: 0;
  animation-name:fadeUp;
  animation-duration: .4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes fadeUp{
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


#koyomaru_kandume .fadeIn, #koyomaru_kandume .fadeIn01, #koyomaru_kandume .fadeIn02 {
  opacity: 0;
  transition: ease-in-out .8s;
}

#koyomaru_kandume .fadeIn.active {
  opacity: 1;
}

#koyomaru_kandume .fadeIn01.active {
  opacity: 1;
  transition-delay: 1s;
}

#koyomaru_kandume .fadeIn02.active {
  opacity: 1;
  transition-delay: 1.5s;
}

/*--------------------------
ゆれる
--------------------------*/

#koyomaru_kandume .shake {
  animation: shake 2s infinite;
}

@keyframes shake {
  0% {
      transform: rotate(5deg);
      /* 時計回りに20度傾いた状態からスタート */
  }
  50% {
      transform: rotate(-5deg);
      /* 反時計回りに20度まで回転 */
  }
  100% {
      transform: rotate(5deg);
      /* 時計回りに20度の位置まで回転 */
  }
}

.floating_btn{
    position: fixed;
    width: 262px;
    bottom: 0;
    right:0;
    margin: 0 60px 60px 0;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating_btn.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
    .floating_btn{
      position: fixed;
      width: calc(262/1440*100%);
      bottom: 0;
      right:0;
      margin: 0 calc(70/1440*100%) calc(70/1440*100%) 0;
  }
}

@media screen and (max-width: 1000px) {
    .floating_btn{
      margin: 0 calc(60/1000*100%) calc(60/1000*100%) 0;
  }
}

@media screen and (max-width: 767px) {
    .floating_btn{
      position: fixed;
      width: calc(102/375*100%);
      bottom: 0;
      right:0;
      margin: 0 calc(15/375*100%) calc(45/375*100%) 0;
  }
}

/*--------------------------
キービジュアル
--------------------------*/

#koyomaru_kandume .kv {
  width: 100%;
  position: relative;
}

#koyomaru_kandume .nav_wrap {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#koyomaru_kandume nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  font-size: 20px;
  line-height: 1;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  margin: 0 auto 50px;
}

#koyomaru_kandume nav a {
  color: var(--white);
  text-decoration: none;
}

@media screen and (max-width: 1440px) {
  #koyomaru_kandume nav {
    font-size: 1.38vw;
    margin: 0 auto calc(50/1440*100%);
  }
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em 3em;
    font-size: 3.2vw;
    line-height: 1;
    margin: 0 auto calc(30/315*100%);
  }
}


/*--------------------------
セクション01
--------------------------*/
#koyomaru_kandume .paper_bg {
  width: 100%;
  background: url(/product/brands/koyomaru_kandume/img/paper_bg_pc.jpg) no-repeat center top / cover;
  /* position: relative;
  z-index: -2; */
  margin-top: -20px;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .paper_bg {
    background: url(/product/brands/koyomaru_kandume/img/paper_bg_sp.jpg) no-repeat center top / cover;
    margin-top: calc(-5/375*100%);
  }
}

#koyomaru_kandume #sec01 {
  background: url(/product/brands/koyomaru_kandume/img/sec01_bg_pc.png) no-repeat center center / cover;
  /* position: relative;
  z-index: -1; */
  margin-top: -20px;
}

@media screen and (max-width: 1440px) {
  #koyomaru_kandume #sec01 {
    margin-top: calc(-20/1440*100%);
  }
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume #sec01 {
    background: url(/product/brands/koyomaru_kandume/img/sec01_bg_sp.png) no-repeat center center / cover;
    margin-top: calc(-5/375*100%);
  }
}

#koyomaru_kandume .sec01_ttl {
  width: calc(430/960*100%);
  margin: 0 auto;
  padding: calc(70/960*100%) 0 0;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec01_ttl {
    width: calc(212/315*100%);
    padding: calc(50/315*100%) 0 0;
  }
}

#koyomaru_kandume .sec01_flex {
  margin: calc(30/960*100%) auto 0;
  padding-bottom: calc(50/960*100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(40/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec01_flex {
    margin: calc(15/315*100%) auto 0;
    padding-bottom: calc(60/315*100%);
    display: flex;
    flex-direction: column;
    gap: 5.3vw;
  }
}

#koyomaru_kandume .sec01_flex_point {
  width: calc(145/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec01_flex_point {
    width: calc(87/315*100%);
  }
}

#koyomaru_kandume .sec01_flex_text {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

@media screen and (max-width: 1000px) {
  #koyomaru_kandume .sec01_flex_text {
    font-size: 1.6vw;
  }
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec01_flex_text {
    font-size: 3.2vw;
    line-height: 1.8;
    text-align: center;
  }
}

#koyomaru_kandume .sec01_flex_text .mt_1em {
  margin-top: 1em;
  display: inline-block;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec01_flex_text .mt_1em {
    margin-top: 1.5em;
    line-height: 1.6;
  }
}

#koyomaru_kandume .sec01_image {
  width: 100%;
  padding-top: 148px;
  background: url(/product/brands/koyomaru_kandume/img/sec01_ph_pc.jpg) no-repeat center center / cover;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec01_image {
    width: 100%;
    padding-top: 17vw;
    background: url(/product/brands/koyomaru_kandume/img/sec01_ph_sp.jpg) no-repeat center center / cover;
  }
}

/*--------------------------
セクション02
--------------------------*/

#koyomaru_kandume .sec02_ttl {
  width: calc(536/960*100%);
  margin: 0 auto calc(70/960*100%);
  padding-top: calc(95/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_ttl {
    width: calc(215/315*100%);
    margin: 0 auto calc(30/315*100%);
    padding-top: calc(35/315*100%);
  }
}

#koyomaru_kandume .sec02_pattern_wrap {
  position: relative;
}

#koyomaru_kandume .sec02_pattern01 {
  position: absolute;
  width: calc(197/960*100%);
  top:0;
  right: 0;
  margin: calc(-73/960*100%) calc(-185/960*100%) 0 0;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_pattern01 {
    width: calc(88/315*100%);
    top:0;
    right: 0;
    margin: 0 calc(-27/315*100%) 0 0;
  }
}

#koyomaru_kandume .sec02_pattern02 {
  position: absolute;
  width: calc(170/960*100%);
  top:0;
  left: 0;
  margin: calc(156/960*100%) 0 0 calc(-195/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_pattern02 {
    position: absolute;
    width: calc(76/315*100%);
    top:auto;
    bottom: 0;
    left: 0;
    margin: 0 0 calc(-60/315*100%) calc(-35/315*100%);
  }
}

#koyomaru_kandume .sec02_pattern03 {
  position: absolute;
  width: calc(197/960*100%);
  bottom:0;
  right: 0;
  margin: 0 calc(-166/960*100%) calc(23/960*100%) 0;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_pattern03 {
    position: absolute;
    width: calc(76/315*100%);
    bottom:0;
    right: 0;
    margin: 0 calc(-47/315*100%) calc(-262/315*100%) 0;
  }
}

#koyomaru_kandume .sec02_pattern04 {
  position: absolute;
  width: calc(197/960*100%);
  top:0;
  left: 0;
  margin: calc(43/960*100%) 0 0 calc(-280/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_pattern04 {
    position: absolute;
    width: calc(88/315*100%);
    top: auto;
    bottom:0;
    left: 0;
    margin: 0 0 calc(10/315*100%) calc(-10/315*100%);
  }
}

#koyomaru_kandume .sec02_kodawari_wrap01,
#koyomaru_kandume .sec02_kodawari_wrap02,
#koyomaru_kandume .sec02_kodawari_wrap03 {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_kodawari_wrap01,
  #koyomaru_kandume .sec02_kodawari_wrap02,
  #koyomaru_kandume .sec02_kodawari_wrap03 {
    flex-direction: column;
    width: calc(230/315*100%);
    margin: 0 auto;
  }
}

#koyomaru_kandume .sec02_kodawari_wrap01{
  padding: 0 calc(30/960*100%) 0 calc(50/960*100%);
  gap: calc(28/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_kodawari_wrap01{
    padding: 0;
    gap: 0;
  }
}

#koyomaru_kandume .sec02_kodawari_wrap02 {
  padding: 0 calc(60/960*100%) 0 calc(50/960*100%);
  gap: calc(23/960*100%);
  margin-top: calc(25/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_kodawari_wrap02 {
    padding: 0;
    gap: 0;
    margin-top: calc(50/315*100%);
  }
}

#koyomaru_kandume .sec02_kodawari_wrap03 {
  padding: 0 calc(30/960*100%) 0 calc(50/960*100%);
  gap: calc(83/960*100%);
  margin-top: calc(110/960*100%);
  padding-bottom: calc(75/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_kodawari_wrap03 {
    padding: 0;
    gap: 4vw;
    margin-top: calc(245/315*100%);
    padding-bottom: calc(60/315*100%);
  }
}

#koyomaru_kandume .sec02_kodawari_wrap01 .sec02_kodawari_text,
#koyomaru_kandume .sec02_kodawari_wrap03 .sec02_kodawari_text {
  width: calc(387/880*100%);
}

#koyomaru_kandume .sec02_kodawari_wrap02 .sec02_kodawari_text {
  width: calc(384/850*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_kodawari_wrap01 .sec02_kodawari_text,
  #koyomaru_kandume .sec02_kodawari_wrap03 .sec02_kodawari_text {
    width: 100%;
  }

  #koyomaru_kandume .sec02_kodawari_wrap02 .sec02_kodawari_text {
    width: 100%;
    order: 0;
  }
}

#koyomaru_kandume .sec02_kodawari_text p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  padding: 1.5em 1em 0 1.5em;
  text-align: justify;
}

@media screen and (max-width: 1000px) {
  #koyomaru_kandume .sec02_kodawari_text p {
    font-size: 1.8vw;
    padding: 1.5em 0 0;
  }
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_kodawari_text p {
    font-size: 3.2vw;
  }
}

#koyomaru_kandume .sec02_kodawari_wrap01 .sec02_kodawari_image {
  width: calc(436/880*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_kodawari_wrap01 .sec02_kodawari_image {
    width: calc(283/230*100%);
    margin: 0 0 0 calc(-53/230*100%);
  }
}

#koyomaru_kandume .sec02_kodawari_wrap02 .sec02_kodawari_image {
  width: calc(436/850*100%);
  position: relative;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_kodawari_wrap02 .sec02_kodawari_image {
    width: 100%;
    order: 2;
    position: relative;
  }
}

#koyomaru_kandume .sec02_kodawari_wrap02 .sec02_kodawari_image picture {
  position: absolute;
  width: calc(839/436*100%);
  top: 0;
  left: 0;
  margin: calc(-160/436*100%) 0 0 calc(-300/436*100%);
  display: block;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_kodawari_wrap02 .sec02_kodawari_image picture {
    position: absolute;
    width: calc(384/230*100%);
    top: 0;
    left: 0;
    right:0;
    margin: 0 0 0 calc(-77/230*100%) ;
  }
}

#koyomaru_kandume .sec02_kodawari_wrap03 .sec02_kodawari_image {
  width: calc(410/880*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_kodawari_wrap03 .sec02_kodawari_image {
    width: 100%;
  }
}

#koyomaru_kandume .sec02_msc {
  position: relative;
  overflow: hidden;
}

#koyomaru_kandume .sec02_msc_bg {
  width: 100%;
  background: url(/product/brands/koyomaru_kandume/img/sec02_msc_bg_pc.png) no-repeat center center / contain;
  aspect-ratio: 1440 / 607; 
}

@media screen and (max-width: 1280px) {
  #koyomaru_kandume .sec02_msc_bg {
    width: 100%;
    background: url(/product/brands/koyomaru_kandume/img/sec02_msc_bg_pc.png) no-repeat center center / cover;
  }
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_msc_bg {
    width: 100%;
    background: url(/product/brands/koyomaru_kandume/img/sec02_msc_bg_sp.png) no-repeat center center / cover;
  }
}

#koyomaru_kandume .sec02_msc_bg_container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1440px) {
  #koyomaru_kandume .sec02_msc_bg_container {
    position: relative;
    padding: calc(140/1440*100%) 0 calc(130/1440*100%);
  }
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_msc_bg_container {
    padding: calc(60/375*100%) 0 calc(65/375*100%);
  }
}

#koyomaru_kandume .sec02_msc_container {
  width: calc(800/960*100%);
  margin: 0 auto;
  background-color: rgba(255, 255, 255, .8);
  padding: calc(55/960*100%) calc(45/960*100%) calc(60/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_msc_container {
    width: 100%;
    padding: calc(25/315*100%) calc(30/315*100%);
  }
}

#koyomaru_kandume .sec02_msc_ttl {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: var(--base);
}

@media screen and (max-width: 1000px) {
  #koyomaru_kandume .sec02_msc_ttl {
    font-size: 3.0vw;
  }
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_msc_ttl {
    font-size: 4.8vw;
    line-height: 1.4;
  }
}

#koyomaru_kandume .sec02_msc_wrap {
  margin: calc(55/710*100%) auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(25/710*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_msc_wrap {
    margin: calc(20/255*100%) auto 0;
    flex-direction: column;
    gap: 4vw;
  }
}

#koyomaru_kandume .sec02_msc_text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  flex:1;
}

@media screen and (max-width: 1000px) {
  #koyomaru_kandume .sec02_msc_text {
    font-size: 1.6vw;
  }
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_msc_text {
    font-size: 3.2vw;
    line-height: 1.8;
  }
}

#koyomaru_kandume .sec02_msc_logo {
  width: calc(295/710*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec02_msc_logo {
    width: calc(182/255*100%);
    margin: 0 auto;
  }
}

/*--------------------------
セクション03
--------------------------*/
#koyomaru_kandume .sec03_ttl {
  width: calc(247/960*100%);
  margin: 0 auto;
  padding-top: calc(45/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec03_ttl {
    width: calc(100/315*100%);
    margin: 0 auto;
    padding-top: calc(40/315*100%);
  }
}

#koyomaru_kandume .sec03_wrap {
  width: calc(800/960*100%);
  margin: calc(40/960*100%) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap:calc(50/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec03_wrap {
    width: calc(285/315*100%);
    margin: calc(25/315*100%) auto 0;
    flex-direction: column;
    gap:4vw;
  }
}

#koyomaru_kandume .sec03_image {
  width: calc(310/800*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec03_image {
    width: calc(190/285*100%);
  }
}

#koyomaru_kandume .sec03_text {
  flex:1
}

#koyomaru_kandume .sec03_text p {
  margin-top: 1.5em;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

@media screen and (max-width: 1000px) {
  #koyomaru_kandume .sec03_text p {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec03_text p {
    font-size: 3.2vw;
    line-height: 1.7;
  }
}

#koyomaru_kandume .sec03_wrap_ttl {
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  color: var(--base);
  padding-left: .7em;
  position: relative;
}

@media screen and (max-width: 1000px) {
  #koyomaru_kandume .sec03_wrap_ttl {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec03_wrap_ttl {
    font-size: 4.6vw;
    text-align: center;
  }
}

#koyomaru_kandume .sec03_wrap_ttl::before {
  content: "";
  background: url(/product/brands/koyomaru_kandume/img/sec03_point.png) no-repeat center / contain;
  width: 10px;
  height: 31px;
  position: absolute;
  top: 0;
  bottom:0;
  left: 0;
  margin: auto 0;
}

@media screen and (max-width: 1000px) {
  #koyomaru_kandume .sec03_wrap_ttl::before {
    width: 1vw;
    height: 3.1vw;
  }
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec03_wrap_ttl::before {
    width: 1.2vw;
    height: 5.8vw;
  }
}

.sec03_btn a {
  pointer-events: auto;
}

.sec03_btn {
  width: calc(210/440*100%);
  display: block;
  margin-top: calc(55/440*100%);
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .sec03_btn {
    width: calc(225/315*100%);
    margin: calc(45/315*100%) auto 0;
  }
}

#koyomaru_kandume .sec03_bg {
  background-color: #f3ddb9;
  padding-top: 135px;
  margin-top: -115px;
}

@media screen and (max-width: 1000px) {
  #koyomaru_kandume .sec03_bg {
    background-color: #f3ddb9;
    padding-top: 13.5vw;
    margin-top: -11.5vw;
  }
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec03_bg {
    padding-top: calc(85/375*100%);
    margin-top: calc(-65/375*100%);
  }
}

/*--------------------------
セクション04
--------------------------*/
#koyomaru_kandume #sec04 {
  background: #faf5eb url(/product/brands/koyomaru_kandume/img/sec04_bg.png) repeat center / auto;
}

#koyomaru_kandume .sec04_ttl {
  width: calc(256/960*100%);
  margin: 0 auto;
  padding-top: calc(120/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec04_ttl {
    width: calc(105/315*100%);
    padding-top: calc(55/315*100%);
  }
}

#koyomaru_kandume .sec04_movie {
  width: calc(498/960*100%);
  margin: calc(50/960*100%) auto 0;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec04_movie {
    width: calc(280/315*100%);
    margin: calc(20/315*100%) auto 0;
  }
}

#koyomaru_kandume .sec04_bnr_wrap {
  width: calc(895/960*100%);
  margin: calc(80/960*100%) auto 0;
  padding-bottom: calc(110/960*100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(45/960*100%);
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec04_bnr_wrap {
    width: calc(280/315*100%);
    margin: calc(40/315*100%) auto 0;
    padding-bottom: calc(45/315*100%);
    flex-direction: column;
    gap: 5.3vw;
  }
}

#koyomaru_kandume .sec04_bnr_wrap li {
  width: calc(425/895*100%);
  display: block;
  transition: ease-in-out .3s;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec04_bnr_wrap li {
    width: 100%;
  }
}

#koyomaru_kandume .sec04_bnr_wrap li:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  #koyomaru_kandume .sec04_bnr_wrap li:hover {
    opacity: 1;
  }
}

