@charset "UTF-8";
/*

終了処理は①〜⑨をすべて適用すること

*/

/*=================[すべてに適用]=================*/
@media all {

html {
  font-size: 62.5%;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #000;
  height: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 1.4rem;
  min-width: initial;
}

body::after {
  content:"";
  background: #84cdd6;
  position: fixed;
  z-index:-1;
  top:0;
  left:0;
  width: 100%;
  height: 100vh;
}

* {
  box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6,p,ul,ol,li {
  padding: 0;
  margin: 0;
  font-weight: normal;
  list-style-type: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  font-size: 0px;
  vertical-align: bottom;
}

.contents {
  padding: 0 4vw 8vw;
  display: grid;
  gap: 5vw; /*終了処理①*/
}

._pc {
  display: none!important;
}

._sp {
  display: inline-block!important;
}

._notice-list {
  display: grid;
  gap: 1vw;
  /*padding-top: 4vw;終了処理②*/
}


._notice {
  font-size: 1.1rem;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}

._notice--flow {
  color: #c7000b;
  font-size: 1.3rem;
  font-weight: bold;
}

a, a img {
  color: #e30e0e;
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:visited {
  color: #be1111;
}

a:hover {
  color: #e27314;
  text-decoration: none;
}

a:active {
  color: #e27314;
}

a:hover img {
  opacity: 0.8;
}



/*====================================
kv (SP)
====================================*/
.kv {
  margin-bottom: 4%;
  box-shadow: 0 0 1.5em rgba(62, 110, 129, 0.2);
}

.kv__txt-pc {
  display: none;
}


/*====================================
present (SP)
====================================*/
.present {
  border-radius: 7px;
  overflow: hidden;
}

.present__inner {
  padding: 4vw;
  display: grid;
  gap: 4vw;
  background: #fff;
}

/*====================================
entry (SP)
====================================*/
.entry {
  border-radius: 7px;
  overflow: hidden;
}

.entry__inner {
  padding: 4vw;
  background: #fff;
  display: grid;
  gap: 2.5vw;
}

.entry__flow {
  display: grid;
  gap: 2.5vw;
}

.entry__flow-box {
  display: grid;
  gap: 3vw;
  padding: 4vw;
  border: 3px solid #d8ecef;
  border-radius: 5px;
}

.entry__flow-arrow {
  width: 9.3vw;
  margin: 0 auto;
}

.entry__btn {
  display: grid;
  gap: 5px;
}



/*====================================
contact (SP)
====================================*/
.contact {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  /*margin: 5vw 0;終了処理③*/
}

.contact__inner {
  padding: 4vw;
  display: grid;
  gap: 2vw;
}

.contact__tit {
  background: #17305d;
  color: #fff;
  text-align: center;
  padding: 2vw;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.4;
}

.contact__subtit {
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4;
}

.contact__list {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
}

.contact__list-tit,
.contact__list-copy {
  padding: 0;
  margin: 0;
}

.contact__list-tit {
  color: #00479d;
  text-align: right;
}


/*====================================
outline (SP)
====================================*/
.outline {
  font-size: 1.3rem;
  line-height: 1.5;
  background: #fff;
  border-radius: 7px;
}

.outline__inner {
  padding: 4vw;
}

.outline__contents {
  border: 1px solid #ddd;
  padding: 4%;
  overflow-y: scroll;
  height: 250px;
  display: grid;
  gap: 4vw;
}

.outline__tit-l {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e70017;
  margin-bottom: .6em;
  padding-bottom: .4em;
  border-bottom: 2px solid #e70017;
}

.outline__tit-m {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: .3em;
}

.outline__tit-s {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: .3em;
}


/*====================================
back-cpidx (SP)
====================================*/
.back-cpidx {
  text-align: center;
  /*margin-top: 25px;終了処理④*/
}

.back-cpidx__link,
.back-cpidx__link:visited {
  color: #000;
  display: inline-block;
  background:#fff;
  padding: 5px 15px;
  text-decoration: none;
  border-radius: 100px;
}

.back-cpidx__link i, .back-cpidx__link a:visited i {
  color: #ff0000;
}

.back-cpidx__link:hover i {
  color: #fff;
}


/*====================================
footer (SP)
====================================*/
.footer {
  padding: 4vw;
  background: #eee;
  color: #666;
  text-align: center;
  width: 100%;
}

.footer__inner {
  display: grid;
}

.footer__logo-img {
  width: 60%;
}

.footer__copyright-copy {
  font-size: 0.8rem;
}


/*====================================
pagetop (SP)
====================================*/
#pagetop {
  position: fixed;
  right: 3%;
  bottom: 3%;
  text-align: center;
  line-height: 1;
  font-size: 1.8rem;
  z-index: 99999;
}

#pagetop a {
  text-decoration: none;
  text-align: center;
  display: block;
  color: #e30e0e;
  background: #fff;
  border-radius: 1000px;
  padding: 15px;
}

#pagetop a:hover {
  background: #e30e0e;
  color: #fff;
  text-decoration: none;
}

/*====================================
終了処理 (SP) 終了処理⑤
====================================*/
/* .entry__tit,
.present__tit {
  position: relative;
  overflow: hidden;
  z-index: 0;
  font-size: 1px;
}

.entry__tit::after,
.present__tit::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(50,50,50,.9);
  top: 0;
  left: 0;
  z-index: 5;
}

.contents__box__end,
.contents__box__end-conection {
  position: relative;
}

.contents__box__end-conection {
  padding: 4vw;
}

.contents__box__end::after {
  position: absolute;
  content: '';
  width: calc(100% + 8vw);
  height: calc(100% + 8vw);
  background: rgba(50,50,50,.9);
  top: -4vw;
  left: -4vw;
  z-index: 5;
}

.contents__box__end-conection::after {
  position: absolute;
  content: '';
  width: calc(100%);
  height: calc(100%);
  background: rgba(50,50,50,.9);
  top: 0;
  left: 0;
  z-index: 5;
}

 .end {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  top:0;
  left:0;
} */

}




/*=================[PC向け適用]=================*/
@media all and (min-width: 769px) {
html {
  background: none;
}

body {
  font-size: 1.5rem;
  min-width:1100px;
}

._pc {
  display: inline-block!important;
}

._sp {
  display: none!important;
}

._notice-list {
  gap: .25em;
  /*padding-top: 20px;終了処理⑥*/
}

._notice {
  font-size: 1.4rem;
}

._notice--flow {
  font-size: 1.7rem;
  padding-left: 0;
  text-indent: 0;
}

.contents {
  padding: 0;
  width: 850px;
  margin: 0 auto 50px;
   gap: 50px; /*終了処理⑦*/
}


/*====================================
kv (PC)
====================================*/
.kv {
  position: relative;
  background: #fffddd url(/special/campaign/2025-1121-giftcatalogue-present/img/kv_bg_pc.jpg) top center;
  background-size: cover;
  margin-bottom: 50px;
}

.kv__txt-pc {
  width: 100%;
  background: #002870;
  background-size: cover;
  padding: 8px;
  text-align: center;
  display: block;
  font-size: 1px;
}

.kv__txt-pc img {
  width: 200px;
  height: auto;
}

.kv__img {
	width: 910px;
	margin: 0 auto;
  padding: 20px 0 50px;
  position: relative;
  left:-10px
}

/*====================================
present (PC)
====================================*/
.present {
  border-radius: 10px;
}

.present__inner {
  padding: 30px;
  gap: 25px;
}

.present__img {
  padding-top: 10px;
}

/*====================================
entry (PC)
====================================*/
.entry {
  border-radius: 10px;
}

.entry__inner {
  padding: 30px;
}

.entry__flow {
  gap: 15px;
}

.entry__flow-box {
  gap: 20px;
  margin: 0 auto;
  padding: 30px 35px;
  border-width: 5px;
  border-radius: 10px;
  text-align: center;
}

.entry__flow-arrow {
  width: 55px;
}

.entry__btn {
  gap: 10px;
}


/*====================================
contact (PC)
====================================*/
.contact {
  border-radius: 7px;
  /*margin: 50px 0;終了処理⑧*/
}

.contact__inner {
  padding: 20px 40px;
  gap: 10px;
}

.contact__tit {
  padding: 10px;
  font-size: 1.8rem;
}

.contact__subtit {
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
}

/*====================================
outline (PC)
====================================*/
.outline {
  font-size: 1.4rem;
  border-radius:10px;
}

.outline__inner {
  padding: 30px;
}

.outline__contents {
  padding: 20px;
  gap: 30px;
}

.outline__tit-l {
  font-size: 1.6rem;
}

.outline__tit-m {
  font-size: 1.5rem;
}

.outline__tit-s {
  font-size: 1.4rem;
}

/*====================================
back-cpidx (PC)
====================================*/
.back-cpidx__link:hover {
  color: #fff;
  background:#ff0000;
}

/*====================================
footer (PC)
====================================*/
.footer {
  padding: 30px;
}

.footer__inner {
  grid-template-columns: 260px 1fr;
  width: 900px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__logo-img {
  width: 100%;
}

.footer__copyright {
  text-align: right;
}

.footer__copyright-copy {
  font-size: 1.1rem;
}

/*====================================
終了処理 (PC) 終了処理⑨
====================================*/
/* .contents__box__end-conection {
  padding: 25px;
}

.contents__box__end::after {
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  top: -30px;
  left: -30px;
} */

}
