* { 
  margin: 0px; 
  padding: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Noto Sans JP', sans-serif;
  box-sizing: border-box;
  
}


html {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}


.pocopedia_logo {
  width: 200px;
  height: 100%;
  /* object-fit: cover; */
}
.footer-pocopedia_logo {
  width: 200px;
  height: 100%;
  /* object-fit: cover; */
}

.title-wrap{
  width:100%;
}
.login-logout-btn-wrap{
  display: flex;
  gap: 16px;
}
.text-center {
  text-align: center;
}
.sp{
  display: none;
}

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: space-around;

}

.nav-wrapper{
  max-width: 1200px;
  width: 80%;
  align-items: center;
  margin: 0 auto;
}

.nav-menu-a::before{
  content:"";
  position:absolute;
  width:100%;
  height:2px;
  background:#A9A9A9;
  border-radius: 5px;
  transform:scaleX(0);
  transition: all 0.6s ease;
  bottom: 0;
  left:0;
}
.nav-menu-a:hover::before{
  transform:scaleX(0.6);
}

.noscroll {
	overflow: hidden;
}


body {
  margin: 0;
  line-height: inherit;
  box-sizing: border-box;
  background-color: #ffffff;
  --color-primary: rgb(32,190,243);
  --input-bg-primary: #F5F5F5;
  --text-color-primary: #333;
  --text-color-secondary: #666;
  --text-color-tertiary: #999;

}

.section{
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 16px;
  padding: 32px 32px;
  width: 100%;
}
.cal-container{
  min-height: 100vh;
  padding-bottom: 306px;
  box-sizing: border-box;
  position: relative;
}
.main-container{
  min-height: 100vh;
  /* padding-bottom: 306px; */
  box-sizing: border-box;
  position: relative;
}

.title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px;
}

.subtitle{
  font-size: 16px;
  font-weight: 500;
}

.header-secondary{
  width:100%;
}

.burger-btn{
  display: none;
}

.menu-group{
  display: flex;
}

.menu-group-sp{
  display: none;
}

.sns-wrap-sp{
  display: none;
}

.menu-item {
  display: block !important;
  width: 20%;
  position: relative;
  transition: all .3s;
}

.menu-item:hover::before {
  background-color: #FFF;
}

.menu-item a {
  display: block;
  padding: 22px 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: all .3s;
}

.menu-item:hover a {
  color: #A9A9A9;
}

.menu-item .pococha{
  pointer-events: none;
}


.menu-item .menu-item-sub a{
  color: #000;
}

.menu-item-sub:hover a{
  color:#A9A9A9;
}

.menu-group-sub{
  visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
  opacity: 0;/*不透明度0*/
  transition: all .3s;/*表示の変化を0.3秒に指定*/
  width: 100%;
  z-index: 3;
  position: absolute;
  top: 60px;
  margin-top: 6.477px;
  left: 0;
}

.menu-item:hover .menu-group-sub{
  visibility: visible;/*Gナビメニューにホバーしたら表示*/
  opacity: 1;/*不透明度1*/
  transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/

}

.menu-item-sub{
  background-color: #FFF;
  height: 60px;
  transition: all .3s;
  position: relative;
}

.menu-item-sub:not(:first-child)::before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
}

.menu-item-sub a {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto 0;
  color:#000;
  text-decoration: none;
}

.menu-login{
  display: flex;
  justify-content: space-between;
  margin-right: 20px;
  width:200px;
  font-size: 14px;
  font-weight: 700;
  transition: .5s;
  height: 40px;
  text-decoration: none;
}

.header-btn{
  padding: 1em 2em;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}
  
.header-btn:hover {
  background-color: lightcyan;
  color:white;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  transform: translateY(-7px);
}
  
.header-btn:active {
  transform: translateY(-1px);
}

.login-title{
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;

}

.line_login_btn{
  display: flex;
  align-items: center;
  width: min(100%, var(--line-max-width, 282px));
  color: #fff;
  background-color: #06c755;
  border-radius: 8px;
}

.line_login_btn::before{
  content: "";
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  background-color: rgb(0 0 0 / 8%);
}

.line_login_btn .line_login_btn__logo{
  order: -1;
  width: 44px;
}
.line_login_btn .line_login_btn__logo img{
  width: 100%;
  height: auto;

}
.line_login_btn .line_login_btn__text{
  flex-grow: 1;
  order: 1;
  font-family: Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
}

.line_login_btn > span{
  flex-shrink: 0;
  padding: 7px 6px;
}

.lp-contents p {
	font-size: 0.8em;
	line-height: 2.5;
	font-weight: 700;
}
.lp-contents_howto {
	background: #f6b546;
  position: relative;
  text-align: center;
}

.lp-contents_inner{
  max-width: 1200px;
  margin: 0 auto;
}
.howtolist-title {
	color: #fff !important;
	background: #12284c;
	display: inline-block;
	margin: 0 0 2em;
	padding: 1em 2em;
	border-radius: 50px;
	position: relative;
}

.howtolist-title:after{
	content: "";
	position: absolute;
	right: 0;
	bottom: -10px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #12284c transparent transparent transparent;
	border-width: 10px 10px 0 10px;
}

.howtolist-title h2 {
	margin: 0;
}

.lp-howtolist {
	background: #fff;
	width: 90%;
	margin: 0 auto 1em;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
}
.lp-howtolist .ht-li-bn img{
  max-width: 450px;
}
.lp-howtolist .ht-li-nb {
	position: absolute;
	left: 0;
	top: 0;
	width: 10%;
	max-width: 60px;
	height: auto;
	z-index: 1;
}

.lp-howtolist .lp-howto-li {
	display: grid;
	gap: 10px;
	grid-template-columns: 0.8fr 2fr;
	grid-template-rows: minmax(80px, 1fr);
	padding: 12px 10px;
}

.lp-howtolist .lp-howto-li2 {
	position: relative;
	/* height: 100px; */
}

.lp-howtolist .lp-howto-li2 .ht-li-nb-ig {
	display: block;
	width: 75% !important;
	margin: 0 auto;
  padding-top: 15px;
}
.ht-li-if h3 {
  font-size: 2em;
  text-align: left;
  line-height: 2;
  margin: 0 0 6px;
}

.ht-li-if p {
  font-size: 1.3em;
  text-align: left;
  font-weight: 400;
  line-height: 2;
}

.lp-contents-inner {
	padding: 3em 0;
}

footer {
  width:100%;
  padding: 4rem 5% 2rem 5%;
  font-size: 15px;
  color: #fff;
  background: rgb(60 66 77);
  bottom: 0 !important;
}

.footer-bottom-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-pocopedia_logo{
  flex-basis: 33%;

}
.footer-space{
  flex-basis: 33%;
}

.footer-sns{
  flex-basis: 33%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 16px;


}

.footer-sns-wrap{
  height:30px;
  width:30px;
  margin-left: 8px;
  margin-right: 8px;
}

.footer-sns-img{
  height: 30px;
}


.footer-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;

}

.footer-title-wrap{
  margin-bottom: 16px;
  flex-basis: 20%;
}

.footer-title{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;

}

.footer-list{
  display: flex;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-item{
  margin-bottom: 6px;
  margin-right: 20px;
}

.footer-contents-wrapper{
  flex-direction: column;
  list-style: none;
  display: inline-block;  
}

.footer-copyright {
  text-align: center;
  bottom: 8px;
  color: rgb(178 182 191);
}

var {
  font-style: normal;
  font-weight: normal;
}
ul {
  list-style: none;
}
caption,

th {
  text-align: left;
}

h6 {
  font-size: 100%;
  font-weight: normal;
}
q:before,
q:after {
  content: "";
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
}

legend {
  color: #000;
}

*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul,li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  background: transparent;
}

#postal_code_search_button{
  background-color: #f55b79;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: .5s;
  height: 40px;
  margin-top: 10px;
}

.top-nav_header {
  width: 100%;
  height: 70px;
  align-items: center;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.03);
  background-color:#AFEEEE;
  display: grid;
  grid-template-columns: 1fr 1fr 146px;
  padding: 10px;
  box-sizing: border-box;
}

.top-nav_header .navbar-brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #1d60cc;
}

.top-nav_header .nav-link {
  text-align: center;
  display: block;
  height: 46px;
  margin: 0 auto;
  line-height: 46px;
  background-color: #f55b79;
  font-size: 14px;
  color: #fff;
  font-weight: 900;
  border-radius: .8rem;
  transition: .5s;
  letter-spacing: 2px;
}

.nav-link:hover {
  background-color: #de3a5a;
}

header a {
  display: block;
}

.wrapper {
  z-index: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.wrapper nav {
  position: relative;
  min-width: 230px;
  max-width: 30%;
  background-color: #1d60cc;
  border-right: 1px solid #edeff0;
  color: #fff;
  font-size: 14px;
}

.wrapper main {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
}

.wrapper main {
  padding: 1rem 0;
}

.position-sticky {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
}

.main_sidebar_menu {
  width: 100%;
}

.main_sidebar_menu li a {
  display: block;
  padding: 14px 12px;
  transition: .5s;
  line-height: 24px;
}

.main_sidebar_menu li a:hover {
  background-color: #0649b5;
}

.main_sidebar_menu .nav-item .nav-link {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
}

.mt-3 {
  font-size: 26px;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 900;
}

.section-banner{
  padding:0 16px 0 16px;
  margin-bottom: 16px;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

main table{
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 2em;
}

thead {
  font-size: .8rem;
  color: #1d60cc;
}

table tr{
  border-bottom: solid 1px #eee;
}

table th{
  text-align: center;
  padding: 15px 0;
}

table td{
  text-align: center;
  padding: 15px 15px 15px 15px;
}

.contents_bg {
  background-color: #fff;
  border-radius: 10px;
  padding: 2em;
}

.cookie-consent {
  z-index: 100;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: rgba(0,0,0,.7);
  padding: 1.2em;
  box-sizing: border-box;
  visibility: hidden;
}
.cookie-consent.is-show {
  visibility: visible;
}

.cookie-text {
  font-size: 15px;
  margin-bottom: 1em;
  padding: 0 5em;
}
.cookie-btn-wrap{
  display: flex;
  justify-content: center;
  padding-right:20px
}
.cookie-privacy {
  color:lightskyblue;
  text-decoration: none;
}
.cookie-agree, .cookie-reject {
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: dodgerblue;
  padding: .5em 1.5em;
  margin-left: 20px;
}
.cookie-agree:hover, .cookie-reject:hover {
  cursor: pointer;
}
/* パッと消える */
.cc-hide1 {
  display: none;
}
/* ゆっくり消える */
.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
      opacity: 1;
  }
  to {
      opacity: 0;
      visibility: hidden;
  }
}

@media screen and (max-width:768px) {
  header{
    position:sticky;
    top:0;
    z-index:5;
  }
  
  .title-wrap{
  background-color: #fff;
  /* z-index: 100; */

  }
  .title{
  justify-content: flex-start;
  gap:50px;
  
}

.pocopedia_logo {
  width: 120px;
  height: 100%;
}

.login-logout-btn-wrap{
  gap: 10px;
  position: absolute;
  right: 40px;
 
}
.header-btn{
  padding: 0.8em 1em;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;

}

.burger-btn {
  position: absolute;
  top: 10px;
  right: 0;
  display: block;
  width: 39px;
  height: 39px;
  background-color: transparent;
  border: none;
}

.bar {
  width: 20px;
  height: 1.5px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
}

.bar_top {
  top: 10px;
}

.bar_mid {
  top: 50%;
  transform: translate(-50%, -50%);
}

.bar_bottom {
  bottom: 10px;
}
.burger-btn.close{
  z-index:3;
}

.burger-btn.close .bar_top {
  transform: translate(-50%, 10px) rotate(45deg);
  transition: transform .3s;
}

.burger-btn.close .bar_mid {
  opacity: 0;
  transition: opacity .3s;
}

.burger-btn.close .bar_bottom {
  transform: translate(-50%, -8px) rotate(-45deg);
  transition: transform .3s;
}
.nav-wrapper {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 56px;
  left: 0;
  z-index: 2;
  /*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
}

.nav-wrapper.close {
  display: block;
}

.header-nav {
  width: 100%;
  height: 100%;
  background-color:#fff;
  z-index: 2;
  position: absolute;
}

.menu-group-sp.menu-title{
  margin: 30px 35px 0 35px;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.2);
}

.menu-group {
  display: none;
}

.menu-group-sp {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin:0 35px 50px 35px;
  z-index: 3;
}


.menu-group-sp .menu-item {
  font-size: 12px;
  font-weight: 600;
  flex-basis:50%;
  height: 35px;
  width: auto;
  margin-right: 0;
  color: #000;
  text-align: left;
  

}
.menu-group-sp ul{
  text-align: left;
}

.menu-item {
  padding:4px 0;
  width: 100%;
}
.menu-item a{
  justify-content: flex-start;
    font-size: 13px;
    text-align: left;

}

.menu-group-sp.menu-title form{
  width:100%;
}

.menu-title input{
  width:100%;
  padding:5px 0;
  border-style: none;

}


.sns-wrap-sp{
  display: flex;
  justify-content: space-between;
  width:30%;
  margin: 20px auto;
}


.menu-sns-img{
  filter: brightness(0%);
  height: 20px;
  width:20px;
}

.menu-sns-img.x{
  width:21.36px;
}

.ht-li-if h3 {
	font-size: 1.1em;
	text-align: left;
	line-height: 1.5;
	margin: 0 0 6px;
}

.ht-li-if p {
	font-size: 0.9em;
	text-align: left;
	font-weight: 400;
	line-height: 1.5;
}
.section-banner{
  padding: 0 0 0 0;
  margin-bottom: 16px;
}


footer{
  font-size: 12px;
  padding:4rem 0 2rem 0
}

.footer-wrap {
  flex-wrap: wrap;
  justify-content: space-evenly;
  

}


.footer-pocopedia_logo{
  margin: 6px auto 3px;
}

.footer-bottom-item{
  margin: 0 auto;
  display: block;
}

.footer-title-wrap {
  flex-basis: 45%;
  padding-left: 6%;
}
.footer-secondary-wrap {
  text-align: center;
}

.cookie-consent {
    flex-direction: column;
}

.cookie-btn-wrap{
  padding-right:10px
}
.cookie-agree, .cookie-reject {
  font-size: 12px;
  color: #fff;
  text-align: center;
  background: dodgerblue;
  padding: .5em 1.5em;
  margin-left: 10px;
}
.cookie-text {
  font-size: 12px;
  margin-bottom: 1em;
  padding: 0 1em;
}
 
}