/* ======================================================================
 reset
====================================================================== */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  overflow-y: scroll;
}
/* html, body {
  height: 100%;
} */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
ul {
  list-style: none;
  padding-left: 0;
}


:root {
  --color-main: #e60012;
  --color-text: #333;
  --font-base: "Noto Sans JP", 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic',Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  --font-awesome: "Font Awesome 7 Free";
  --base-width: 1240px;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  color: var(--color-text);
  background: #000;
  line-height: 1.6;
  word-wrap : break-word;
	word-break: break-all;
  min-width: var(--base-width);
	overflow: hidden;
  @media (width <= 768px) {
    min-width: inherit;
  }
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

strong {
	font-weight: bold;
}

a {
  transition: opacity .2s;
	&:link {
		color: var(--color-text);
		text-decoration: none;
		cursor: pointer;
	}
	&:visited {
		color: var(--color-text);
		text-decoration: none;
	}
	&:hover {
		color: var(--color-text);
		text-decoration: none;
    opacity: .8;
	}
	&:active {
		color: var(--color-text);
		text-decoration: none;
	}
}

/* モバイル時 電話番号カラー */
a[href^="tel"]{
  color: var(--color-text);
}

:focus-ring {
  outline: none;
}


/* input */
/* ( 1 ) radio / checkbox 以外リセット */
input[type='button'], input[type='submit'], input[type='text'], input[type='email'], input[type='tel'],  input[type='url'], input[type='password'], input[type='reset'], input[type='search'], textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  border-image: none;
  background: transparent;
  font-family: inherit; /* 子要素へ引き継ぎ */
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input, textarea {
  &:placeholder-shown {
    color: var(--color-text);
  }
  &::placeholder {
    color: var(--color-text);
  }
  &:focus {
    &:placeholder-shown {
      color: var(--color-text);
    }
    &::placeholder {
      color: var(--color-text);
    }
  }
}


/* =================================
 l-content__size
================================= */
.l-content__size-pc-1 {
  width: var(--base-width);
  margin: 0 auto;
  padding-inline: 20px;
  @media (width <= 768px) {
    width: auto;
    padding-inline: 0;
  }
}


/* =================================
 l-header
================================= */
.l-header {
  z-index: 998;
}

.l-header__logo {
  margin-block: 16px -47px;
  margin-left: 22px;
  position: relative;
  @media (width <= 768px) {
    width: calc(195/750*100vw);
    margin-block: calc(16/750*100vw) calc(-65/750*100vw);
    margin-left: calc(22/750*100vw);
  }
}



/* =================================
 l-main
================================= */
.l-main {
  background-image: url(../img/pv-campaign//bg_mv.jpg), url(../img/pv-campaign/bg.jpg);
  background-size: auto, auto;
  background-position: center top, center top;
  background-repeat: no-repeat, no-repeat;
  @media (width <= 768px) {
    background-image: url(../img/pv-campaign//sp/bg_mv.jpg), url(../img/pv-campaign/sp/bg.jpg);
    background-size: 100%, 100%;
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
  }
}

/* =================================
 l-footer
================================= */
.l-footer {
  background: rgb(0 0 0 / .75);
  padding-top: 40px;
  @media (width <= 768px) {
    padding-top: calc(60/750*100vw);
  }
}

.l-footer__logo {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  @media (width <= 768px) {
    margin-inline: auto;
    margin-bottom: calc(20/750*100vw);
    width: calc(293/750*100vw);
  }
}

.l-footer__bottom {
  background: #171717;
  padding: 16px 0;
  @media (width <= 768px) {
    padding: calc(20/750*100vw) 0;
  }
}

.l-footer__copyright {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 36px;
  @media (width <= 768px) {
    font-size: calc(20/750*100vw);
    margin-bottom: calc(60/750*100vw);
  }
}

.l-footer__attend {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  @media (width <= 768px) {
    font-size: calc(20/750*100vw);
  }
}

.c-toTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 997;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  @media (width <= 768px) {
    width: calc(90/750*100vw);
    height: calc(90/750*100vw);
    bottom: calc(40/750*100vw);
    right: calc(40/750*100vw);
  }
  &.fade-in {
    opacity: 1;
    pointer-events: auto;
  }
}


.p-pvcp__mv {
  /* background: url(../img/pv-campaign//bg_mv.jpg) center top / auto no-repeat; */
}

.p-pvcp__mv-img {
  margin-inline: 289px -558px;
  margin-bottom: -1351px;
  @media (width <= 768px) {
    margin-inline: 0;
    margin-bottom: calc(-1150/750*100vw);
  }
}

.l-cmcp__mv-logo {
  margin-bottom: -81px;
  margin-left: 34px;
  position: relative;
  display: inline-block;
  @media (width <= 768px) {
    margin-bottom: calc(-111/750*100vw);
    margin-left: calc(13/750*100vw);
    width: calc(605/750*100vw);
  }
}

.p-pvcp__mv-ttl {
  margin-left: -400px;
  margin-bottom: -3px;
  @media (width <= 768px) {
    margin-left: 0;
    margin-bottom: calc(7/750*100vw);
    width: calc(710/750*100vw);
  }
}

.p-pvcp__mv-period {
  margin-right: -400px;
  margin-bottom: 16px;
  @media (width <= 768px) {
    margin-right: 0;
    margin-left: auto;
    margin-bottom: calc(54/750*100vw);
    width: calc(710/750*100vw);
  }
}

.p-pvcp__contents {
  background: url(../img/pv-campaign/bg_obo.png) calc(50% - 200px) top / auto no-repeat;
  position: relative;
  padding-top: 53px;
  @media (width <= 768px) {
    background: url(../img/pv-campaign/sp/bg_obo.png) left calc(302/750*100vw) / calc(710/750*100vw) no-repeat;
    padding-top: 0;
  }
}

.p-pvcp__contents-box {
  position: relative;
}

.p-pvcp__contents-chara-1 {
  @media (width <= 768px) {
    margin-inline: auto;
    margin-bottom: calc(-471/750*100vw);
    width: calc(503/750*100vw);
  }
}

.p-pvcp__contents-img-1 {
  margin-left: 100px;
  margin-bottom: -142px;
  @media (width <= 768px) {
    margin-left: 0;
    margin-bottom: calc(54/750*100vw);
    width: calc(670/750*100vw);
  }
}

.p-pvcp__contents-btn {
  position: absolute;
  top: 191px;
  left: 303px;
  @media (width <= 768px) {
    top: calc(297/750*100vw);
    left: calc(34/750*100vw);
    width: calc(604/750*100vw);
  }
}

.p-pvcp__contents-img-2 {
  margin-left: -48px;
  margin-bottom: -173px;
  position: relative;
  @media (width <= 768px) {
    margin-left: 0;
    margin-bottom: calc(-81/750*100vw);
    width: calc(695/750*100vw);
  }
}

.p-pvcp__contents-chara-2 {
  margin-right: -261px;
  margin-bottom: -510px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  @media (width <= 768px) {
    margin-right: 0;
    margin-left: auto;
    margin-bottom: calc(-448/750*100vw);
    width: calc(482/750*100vw);
  }
}

.p-pvcp__terms {
  background: url(../img/pv-campaign/bg_note.png) calc(50% + 200px) top / auto no-repeat;
  padding-top: 71px;
  height: 402px;
  margin-bottom: 30px;
  @media (width <= 768px) {
    background: url(../img/pv-campaign/sp/bg_note.png) right top / calc(710/750*100vw) no-repeat;
    padding-top: calc(104/750*100vw);
    height: calc(606/750*100vw);
    margin-bottom: calc(30/750*100vw);
  }
}

.p-pvcp__terms-note-inner {
  background: #171717;
  border: 1px solid rgb(255 255 255 / .2);
  width: 900px;
  height: 270px;
  overflow-y: auto;
  margin-inline: auto;
  padding: 26px 30px;
  color: #fff;
  font-size: 1.1rem;
  position: relative;
  @media (width <= 768px) {
    width: calc(630/750*100vw);
    height: calc(400/750*100vw);
    margin-inline: calc(80/750*100vw) auto;
    padding: calc(30/750*100vw);
    font-size: calc(20/750*100vw);
  }
  dl + dl {
    margin-top: 1.5em;
  }
}

.p-pvcp__terms-ttl {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 16px;
  @media (width <= 768px) {
    font-size: calc(26/750*100vw);
    margin-bottom: calc(30/750*100vw);
  }
}

.p-pvcp__terms-note-list {
  list-style: disc;
  li {
    margin-left: 1.5em;
  }
}

.p-pvcp__terms__copyright {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 48px;
  @media (width <= 768px) {
    margin-bottom: calc(70/750*100vw);
  }
}



 /* spからコーディング : モバイルファースト */
/* @media (width >= 1025px) {
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}
@media (width <= 1024px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
} */

/* pcからコーディング */
@media (width >= 769px) {
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}
@media (width <= 768px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}