/* CSS Document */
/* Flexible Images */
img {
  max-width: 100%;
  height: auto;
  width: auto;
  box-sizing: border-box;
}
submit {
  -webkit-appearance: none;
}
/* ------------------------------------------------------------------------ */
/*  Basic Style

/* ------------------------------------------------------------------------ */
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "メイリオ", Meiryo, 'ヒラギノ角ゴ Pro W3', "Hiragino Kaku Gothic Pro", 'ヒラギノ角ゴ ProN W3', "Hiragino Kaku Gothic ProN", MS PGothic, sans-serif;
  font-size: 1.3rem;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  color: #1a1a1a;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}
#wrap {
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
body > #wrap {
  height: auto;
  box-sizing: border-box;
}
a:link {
  text-decoration: none;
}
a.link {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  color: #333;
}
@media (min-width: 640px) {
  a.link {
    padding-left: 22px;
  }
}
a.link:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
}
a.icon-external:before {
  background-image: url("/images/icon_external_sp.png");
  background-size: 13px auto;
  top: 4px;
  width: 13px;
  height: 12px;
}
@media (min-width: 640px) {
  a.icon-external:before {
    background-image: url("/images/icon_external_pc.png");
    background-size: 17px auto;
    width: 17px;
    height: 15px;
  }
}
a.icon-external:hover:before {
  background-position: 0 -12px;
}
@media (min-width: 640px) {
  a.icon-external:hover:before {
    background-position: 0 -15px;
  }
}
/* NP21 slider photo load start */
.slider {
  opacity: 0;
  transition: opacity .3s linear;
}
.slider.slick-initialized {
  opacity: 1;
}

.slider li img {
  width: 100%;
  margin: 0 auto;
}
#sec02 {
  margin: 6.5% 0;
}
#sec02 .inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
#sec02 .inner:before {
  content: "";
  display: inline-block;
  background: url(../img/bg_sec02_01.png) no-repeat center top / cover;
  background-size: 85%;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sec02 .inner h2 {
  max-width: 825px;
  width: 100%;
  position: relative;
  font-size: 32px;
  margin: 15px auto;
  font-weight: bold;
}
#sec02 .inner figure {
  margin: 0 auto;
}
@media screen and (max-width:767px) {
  #sec02 {
    margin: 10% 0 0;
    display: inline-block;
  }
  #sec02 .inner {
    margin: 0;
  }
  .inner figure img {
    width: 60%;
  }
}
@media screen and (max-width:1024px) {
  #sec02 .inner p {
    padding: 0 5%;
  }
  .inner figure img {
    width: 30%;
  }
}
/*タブ切り替え*/
.tab_area {
  max-width: 1000px;
  margin: 2% auto;
}
.tab-group {
  display: flex;
  justify-content: center;
  border-bottom: 2.5px solid #1a1a1a;
}
.tab {
  position: relative; /* NP21 */
  padding: 10px 5px;
  list-style: none;
  background: #1a1a1a;
  border: 2.5px solid #1a1a1a;
  color: #FFF;
  justify-content: center;
  cursor: pointer;
  width: calc(100% / 4);
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-right: 0.8%;
  border-bottom: none;
}
.tab:last-child {
  margin-right: 0;
}
.tab:hover, .tab:focus, .tab:active {
  animation-name: hvr-pop;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}
/* NP21 */
.tab-new::before {
  position: absolute;
  top: -1.5em;
  content: 'NEW';
  color: red;
  font-size: 1em;
  line-height: 1;
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.panel-group {
  height: auto;
  border-top: none;
  padding: 25px 0;
}
.panel {
  display: none;
  flex-wrap: wrap;
}
.panel_box_text {
	font-size: 11px;
  /*padding-top: 10px;*/
}
.panel_box_notes {
	color: red;
	font-size: 11px;
}
.panel_figure {
  margin-top: 10px;
}
.tab.is-active {
  background: #FFF;
  transition: all ease-out;
  color: #1a1a1a;
  position: relative;
}
.tab.is-active:hover, .tab.is-active:focus, .tab.is-active:active {
  animation-name: hvr-none;
  opacity: 1;
  border: 2.5px solid #1a1a1a;
  border-bottom: none;
  transition: none;
  animation-iteration-count: 0;
}
@keyframes hvr-none {
  50% {
    transform: scale(1);
  }
}
.tab.is-active:hover::after {
  transform: none;
  opacity: 1;
}
.tab.is-active::after {
  content: "";
  display: block;
  background: #FFF;
  height: 4px;
  width: 99.8%;
  position: absolute;
  bottom: -4px;
  left: 0;
}
@-moz-document url-prefix() {
  .tab.is-active::after {
    content: "";
    display: block;
    background: #FFF;
    height: 4px;
    width: 100%;
    position: absolute;
    bottom: -4px;
    left: 0;
  }
}
.panel.is-show {
  display: flex;
  justify-content: flex-start;
  margin: 0px -10px;
}
.panel.is-show .panel_box {
  display: block;
  max-width: calc(100% / 3);
  width: 100%;
  text-align: left;
  position: relative;
  padding: 10px;
}
.panel.is-show .panel_box p.new {
  background: red;
  padding: 2px 5px;
  color: #ffe619;
  font-weight: bold;
  position: absolute;
  top: -5px;
  left: -5px;
}
a.more_link img, a.more_link02 img {
  border: none !important;
}
.panel.is-show figure a {
  display: inline-block;
}
.panel.is-show figure a:hover {
  opacity: 0.8;
}
.panel.is-show .panel_box h4 {
  /*font-size: 18px;*/
  font-size: 14px;
  font-weight: bold;
  /*padding: 15px 0;*/
}
.panel.is-show .panel_box ul li {
  list-style: disc;
  margin-left: 1.2em;
}
.panel.is-show .panel_box a img {
  border: 1px solid #cccccc;
}
a.more_link, a.more_link02 {
  color: #1a1a1a;
  font-weight: bold;
  border: none !important;
  border-bottom: 2px solid #000000 !important;
  font-size: 18px;
  position: absolute;
  width: 95px;
  padding-bottom: 4px;
  transition: all 0.2s ease;
  bottom: -40px;
  right: 0;
}
a.more_link02 {
  bottom: -40px;
  right: 110px !important;
}
a.more_link:after, a.more_link02:after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: -4px;
  left: 0;
  border: none !important;
  border-bottom: 2px solid #ffef3b !important;
}
a.more_link img, a.more_link02 img {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 0;
}
a.more_link:hover, a.more_link02:hover {
  text-decoration: none;
  /*transform: translateY(-5%);*/
}
.fb_iframe_widget {
  margin-bottom: 5%;
}
@media screen and (max-width:767px) {
  .tab_area {
    margin: 5% auto;
  }
  .tab {
    font-size: 69% !important;
    padding: 5px;
  }
  .tab.is-active::after {
    height: 5px;
    bottom: -5px;
  }
  .panel-group {
    padding: 25px 5%;
  }
  .panel.is-show .panel_box {
    max-width: calc(100% / 1);
  }
  a.more_link02 {
    bottom: -90px;
    right: 0 !important;
  }
  ._2p3a {
    max-width: 80%;
  }
}
@media screen and (max-width:1024px) {
  .tab {
    font-size: 100%;
  }
  .panel-group {
    padding: 25px 10px;
  }
}
@media screen and (max-width:1200px) {
  .panel.is-show {
    padding: 0 10px;
  }
}
/*おすすめコンテンツ*/
#sec03 {
  margin: 5% 0 0;
  background: #fffbcf url(../img/bg_sec03_01.png) no-repeat top center;
  background-size: 100%;
}
#sec03 .inner {
  margin: 0 auto;
  width: 100%;
  padding: 4% 0;
}
#sec03 .inner h2 {
  max-width: 825px;
  width: 100%;
  position: relative;
  font-size: 32px;
  margin: 15px auto;
  font-weight: bold;
}
#sec03 .cnt_area {
  max-width: 1000px;
  margin: 2% auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sec03 .cnt_area .cnt_box {
  display: block;
  max-width: 32%;
  width: 100%;
  text-align: left;
  position: relative;
}
#sec03 .cnt_area .cnt_box h4 {
  font-size: 18px;
  font-weight: bold;
  padding: 15px 0;
}
#sec03 .cnt_area .cnt_box img {
  border: 1px solid #cccccc;
}
a.more_link img, a.more_link02 img {
  transition: 0.5s ease;
}
a.more_link:hover img, a.more_link02:hover img {
  transform: translateX(5px);
}
@media screen and (max-width:767px) {
  #sec03 .inner {
    padding: 15% 0 0;
  }
  #sec03 .inner > p {
    padding: 0 5%;
  }
  #sec03 .cnt_area {
    padding: 25px 5%;
  }
  #sec03 .cnt_area .cnt_box {
    width: 47% !important;
    max-width: 47% !important;
  }
}
@media screen and (max-width:1200px) {
  #sec03 .cnt_area {
    padding: 0 10px;
  }
  #sec03 .cnt_area .cnt_box {
    width: 32%;
  }
}
/*お知らせ*/
#sec04 {
  margin: 6% 0 60px;
}
#sec04 .inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
#sec04 .inner::before {
  content: "";
  display: inline-block;
  background: url(../img/bg_sec04_01.png) no-repeat center top / cover;
  background-size: 60%;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sec04 .inner figure {
  margin: 0 auto;
  padding-top: 20px;
}
#sec04 .inner h2 {
  max-width: 825px;
  width: 100%;
  position: relative;
  font-size: 32px;
  margin: 15px auto;
  font-weight: bold;
}
#sec04 dl.dl-horizontal {
  max-width: 1000px;
  margin: 1% auto;
  display: flex;
  flex-wrap: wrap;
}
#sec04 dl.dl-horizontal dt, #sec04 dl.dl-horizontal dd {
  text-align: left;
  padding: 2% 0;
  border-bottom: 2px dotted #1a1a1a;
}
#sec04 dl.dl-horizontal dt {
  width: 14%;
  font-weight: bold;
  padding: 2% 0;
}
#sec04 dl.dl-horizontal dt span {
  width: 40px;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  margin-left: 10px;
}
#sec04 dl.dl-horizontal dt span.label-info.red {
  color: #FFF;
  background: #df4b4b;
}
#sec04 dl.dl-horizontal dt span.label-success {
  color: #FFF;
  background: #ff8800;
}
#sec04 dl.dl-horizontal dt span.label-info {
  color: #FFF;
  background: #381e1d;
}
#sec04 dl.dl-horizontal dd {
  width: 86%;
  padding: 2% 0;
  margin: 0;
}
#sec04 dl.dl-horizontal dd a {
  color: #1a1a1a;
}
.label {
  padding: 0;
  line-height: 1.5;
  border-radius: 0;
}
@media screen and (max-width:767px) {
  #sec04 .inner::before {
    background-size: 90%;
  }
  #sec04 .inner figure img, #sec05 .inner figure img {
    width: 30% !important;
  }
}
@media screen and (max-width:1024px) {
  #sec04 {
    padding: 10% 0 0;
  }
  #sec04 .inner::before {
    background-size: 70%;
  }
  #sec04 dl.dl-horizontal {
    padding: 0 5%;
    flex-direction: column;
  }
  #sec04 dl.dl-horizontal dt {
    border: none;
    padding: 5% 0 0;
  }
  #sec04 dl.dl-horizontal dd {
    width: 100%;
    padding: 2% 0 5%;
    border-bottom: 1px dotted #1a1a1a;
  }
  #sec04 .inner figure img, #sec05 .inner figure img {
    width: 20% !important;
  }
  #sec04 dl.dl-horizontal dd {
    width: 100%;
    padding: 2% 0 3%;
    border-bottom: 1px dotted #1a1a1a;
  }
  #sec04 dl.dl-horizontal dt {
    width: 100%;
  }
  #sec04 dl.dl-horizontal dt span {
    padding: 0 3px;
  }
}
@media screen and (max-width:1200px) {
  #sec04 dl.dl-horizontal {
    padding: 0 10px;
  }
}
/*公式SNS*/
#sec05 {
  margin: 5% 0 0;
}
#sec05 .inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
#sec05 .inner figure {
  margin: 0 auto;
  padding-top: 15px;
}
#sec05 .inner h2 {
  max-width: 825px;
  width: 100%;
  position: relative;
  font-size: 32px;
  margin: 15px auto;
  font-weight: bold;
}
.sns_area {
  display: flex;
  justify-content: space-between;
  margin: 3% auto;
  /*max-width: 140px;*/
  max-width: 187px;
}
.sns_area a {
  color: #1a1a1a;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: all 0.2s ease-out;
}
.sns_area a:hover {
  text-decoration: none;
  transform: translateY(-5px);
}
.btn-party {
  display: inline-block;
  width: 30%;
  padding: 5px 15px;
  margin-bottom: 10px;
  border-radius: 0.3rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .12), 0 2px 2px 0 rgba(0, 0, 0, .24);
  background: #007bff;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width:767px) {
  #sec05 {
    padding: 10% 0;
  }
  #sec05 .inner p {
    padding: 0 5%;
  }
  .sns_area {
    margin: 3% auto;
    max-width: 100%;
    justify-content: center;
  }
  .sns_area a {
    padding: 5px 10px;
    font-size: 20px;
  }
  .sns_area a img {
    width: 52px;
  }
}
@media screen and (max-width:1024px) {
  .sns_area {
    margin: 5% auto;
  }
}
/*20210325 追加*/
#sec06 {
  margin-top: 6%;
}
#sec06 h2 {
  max-width: 825px;
  width: 100%;
  position: relative;
  font-size: 32px;
  margin: 15px auto;
  font-weight: bold;
}
#sec06 p {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.event_smile{
  width: 50%;
}
#sec06 .event_smile__text{
  margin: 10px 0px 20px;
  font-size: 100%;
  text-align: left;
}
.event_btn {
  position: relative;
  text-align: right;
}
.event_btn a.more_link {
  width: 140px;
  text-align: left;
  position: inherit;
  bottom: 0;
  display: inline-block;
  font-size: 12px;
}
@media screen and (max-width:767px) {
  #sec06 {
    padding: 10% 10px 0;
    margin-bottom: 0;
  }
  .event_smile{
    width: 100%;
}
}
/* NP21 */
.expression-sympathy {
  position: relative;
  max-width: 960px;
  margin: -20px auto 30px;
  padding: 20px;
  border: 3px solid red;
  border-radius: 5px;
  color: red;
  text-align: center;
  box-sizing: initial;
  background: none;
}
.expression-sympathy:hover {
  opacity: 0.6;
}
.expression-sympathy-title {
  font-size: 1.75em;
  font-weight: normal;
  line-height: 1.5;
}
.expression-sympathy-info {
  display: inline-block;
  padding: 0 10px;
  font-size: 1.5em;
  background: yellow;
  line-height: 1.5;
}
.expression-sympathy a:link {
  color: red;
}
.expression-sympathy a:visited {
  color: red;
}
.expression-sympathy a:hover {
  color: red;
}
.expression-sympathy a:active {
  color: red;
}
.sympathy {
  position: relative;
  width: 980px;
  max-width: 980px;
  margin: 0 auto 40px;
  padding: 0 20px;
  border: 2px solid gray;
  border-radius: 5px;
  background: #fff8d8;
}
.sympathy__define {
  width: auto;
  margin: 0 0 22px 0;
  padding: 23px 0 0 0;
}
.sympathy__term {
  position: relative;
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  font-size: 1.75rem;
  font-weight: bold;
}
.sympathy__description {
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  text-align: left;
}
.sympathy__text {
  font-size: 0.95em;
  text-align: left;
}
.sympathy__list {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 1em;
}
.sympathy__list-item {
  margin: 0 0 10px 0;
  line-height: 1.7;
  text-align: center;
}
.sympathy_button {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 0 20px 0;
}
.sympathy_button-item {
  width: calc(50% - 60px);
}
.sympathy_button-link {
  display: block;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  /*box-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);*/
  background: #2f85f0;
  color: white;
}
.sympathy_button-link:hover {
  color: aliceblue;
  background: #4e95f1;
}
.customized-support {
  position: relative;
  max-width: 960px;
  margin: 0 auto 30px;
  padding: 20px;
  color: white;
  background-image: linear-gradient(0deg, #FFC107 0%, #f76a35 100%);
  border-radius: 5px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 3px #c58668;
  transition: .4s;
  text-align: center;
  box-sizing: initial;
}
.customized-support:hover {
  opacity: 0.6;
}
.customized-support-text {
  font-size: 1.75em;
  margin: 0;
}
.customized-support a:link {
  color: white;
}
.customized-support a:visited {
  color: white;
}
.customized-support a:hover {
  color: white;
}
.customized-support a:active {
  color: white;
}
.signage-only {
  display: none;
  max-width: 960px;
  margin: 0 auto 40px;
}
.signage-only__list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  padding: 0;
}
.signage-only__item {
  margin: 0;
  padding: 0 15px;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
@media (max-width: 1000px) {
  .expression-sympathy {
    margin: -20px 10px 30px;
    padding: 15px;
  }
  .expression-sympathy-title {
    font-size: 1.3em;
  }
  .expression-sympathy-info {
    font-size: 0.9em;
  }
  .sympathy {
    width: 93%;
    margin: 0 auto 60px;
    padding: 0 1em;
  }
  .sympathy__list-item {
    text-align: left;
  }
  .sympathy_button {
    flex-direction: column;
    margin: 0 0 10px 0;
  }
  .sympathy_button-item {
    width: 95%;
    margin: 0 auto 15px;
    text-align: left;
  }
  .sympathy__term {
    font-size: 1.5rem;
    text-align: left;
  }
  .customized-support {
    margin: 0 10px 30px;
    padding: 15px;
  }
  .customized-support-text {
    font-size: 1.3em;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0)
}
/*2021.06.11 追記*/
#event_smile .flex {
  display: flex;
  justify-content: center;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}
#event_smile .flex li:first-child {
  margin-right: 20px;
}
#event_smile .flex li a:hover {
  opacity: .8;
}
@media screen and (max-width:980px) {
  #event_smile {
    padding: 0 10px;
  }
  /*#event_smile .flex {
    width: 70%;
  }*/
}
@media screen and (max-width:767px) {
  #event_smile .flex {
    display: block;
  }
  #event_smile .flex li:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.mh2 {
  margin-bottom: 80px;
}