/* ======================================================================
 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;
  z-index: 2;
  @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/popup//bg_mv.jpg), url(../img/popup/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/popup//sp/bg_mv.jpg), url(../img/popup/sp/bg.jpg);
    background-size: 100%, 100%;
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
  }
}

/* =================================
 l-footer
================================= */
.l-footer {
  background: #2456a6;
  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 {
  position: relative;
  height: 700px;

  @media (width <= 768px) {
    height: auto;
  }
}

.p-pvcp__mv-img img {
  height: 700px;
  object-fit: cover;
  /* max-width: none; */

  @media (width <= 768px) {
    height: auto;
  }
}

.l-cmcp__mv-logo {
  position: absolute;
  top: 60px;
  left: calc(50% - -120px);
  width: 400px;

  @media (width <= 768px) {
    width: 200px;
    left: auto;
    right: 25px;
    top: 37%
  }
}


.p-pvcp__contents {
  background: #c6d6e5;
  position: relative;
  padding-top: 80px;
  padding-bottom: 20px;

  @media (width <= 768px) {
    padding-top: 50px;
    padding-bottom: 10px;
  }
}

.top_items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  @media (width <= 768px) {
    flex-direction: column;
    padding: 0 20px;
  }
}

.top_items .item {
  width: calc(50% - 6px);
  overflow: hidden;
  border-radius: 6px;
  @media (width <= 768px) {
    width: 100%;
  }
}

.bottom_items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
  @media (width <= 768px) {
    flex-direction: column;
    padding: 0 20px;
    margin-bottom: 30px;
  }
}

.bottom_items .item {
  width: calc(100% / 3 - 8px);
  overflow: hidden;
  border-radius: 6px;
  @media (width <= 768px) {
    width: 100%;
  }
}

.bnr {
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 900px;
  @media (width <= 768px) {
    margin-bottom: 30px;
  }
}

.alert {
  margin: 0 auto;
  margin-bottom: 50px;
  @media (width <= 768px) {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}

.alert img {
  width: 100%;
}


.copyright {
  background: #c6d6e5;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 40px 0;
  @media (width <= 768px) {
    padding: 20px 0;
  }
}


.p-pvcp__popup {
  background: #fff;
}

.p-pvcp__popup_head {
  background: #2e68c7;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  padding: 20px 0;
  @media (width <= 768px) {
    font-size: 15px;
    letter-spacing: -0.03em;
  }
}

.p-pvcp__popup_head span {
  @media (width <= 768px) {
    font-size: 24px;
  }
}

.p-pvcp__popup_list {
  padding: 50px 0;
  margin: 0 auto;
  max-width: 900px;

  @media (width <= 768px) {
    padding: 30px 20px;
  }
}

.p-pvcp__popup_item {
  margin-bottom: 30px;
  padding: 0 20px;
  padding-bottom: 30px;
  border-bottom: 2px solid #2e68c7;

  @media (width <= 768px) {
    padding: 0 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.p-pvcp__popup_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.p-pvcp__popup_item_ttl {
  font-size: 22px;
  font-weight: 700;
  color: #2e68c7;
  margin-bottom: 10px;
  @media (width <= 768px) {
    font-size: 18px;
  }
}

.p-pvcp__popup_item_list {
  font-size: 15px;
  @media (width <= 768px) {
    font-size: 14px;
  }
}

.p-pvcp__popup_item_list_item {
  margin-bottom: 10px;
  display: flex;
  @media (width <= 768px) {
    letter-spacing: -0.03em;
    flex-direction: column;
    gap: 5px;
  }
}

.p-pvcp__popup_item_list_item_ttl {
  font-weight: 700;
  flex-shrink: 0;
}

.p-pvcp__popup_item_list_item_txt a {
  color: #2e68c7;
  text-decoration: underline;
}


.p-pvcp__popup_item_txt {
  font-size: 15px;
  font-weight: 500;
  @media (width <= 768px) {
    font-size: 14px;
  }
}

.p-pvcp__popup_item_txt:first-child {
  padding-bottom: 10px;
}

.p-pvcp__popup_item_txt span {
  display: block;
  font-weight: 700;
  font-size: 18px;
  padding-bottom: 10px;
  @media (width <= 768px) {
    font-size: 16px;
  }
}

 /* 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;
  }
}