@charset "utf-8";
/* CSS Document */ :root {
  --white: #ffffff;
  --white-opa: rgba(255, 255, 255, 0.8);
  --black: #444444;
  --light-black: #505768;
  --blue: #2A5AED;
  --dark-blue: #38389C;
  --light-blue: #8adfff;
  --pink: #FF4394;
  --red-pink: #F55153;
  --light-pink: #FFE6F0;
  --orange: #f79514;
  --purple: #9C45D9;
  --light-purple: #6982FF;
  --green: #0fbd93;
  --dark-green: #21573f;
  --light-green: #afff7f;
  --white-orange: #F8D4A5;
  --black-opa: rgba(42, 49, 50, .6);
  --bg-grad: linear-gradient(90deg, #CAFAEE, #DFFACF, #EDFAF7);
  --bg-pop: repeating-linear-gradient(90deg, transparent, transparent 12px, #F1FBDA 12px, #F1FBDA 24px);
  --bg-pop-sp: repeating-linear-gradient(90deg, transparent, transparent 6px, #F1FBDA 6px, #F1FBDA 12px);
  --green-grad: linear-gradient(34deg, #00cd9a, #afff7f);
}
* {
  box-sizing: border-box;
  max-width: none;
}
#container {
  position: relative;
  /*font-family: 'メイリオ', 'Meiryo', 'Helvetica', 'ヒラギノ角ゴシック ProN', 'Arial', 'ＭＳ Ｐゴシック';	*/
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
  margin: 0;
  font-size: clamp(14px, 16 * 100 / 1000 * 1vw, 16px);
  color: var(--black);
  line-height: 1.4;
  overflow: clip;
}
.all-container img {
  width: 100%;
  height: auto;
}
th {
  font-family: 'Noto Sans JP', sans-serif;
}
.w1200 {
  max-width: 1760px;
  width: 95%;
  margin: 0 auto;
}
.w1000 {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}
#container img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
}
#container .icon {
  width: 1.5em;
  margin-right: .3em;
  max-width: 100%;
}
#container small {
  line-height: 1.2;
}
a, a:link {
  background: none;
  text-decoration: none;
}
.s_font {
  font-size: 0.8em;
  line-height: 1.4; /* display: block;*/
}
.sp {
  display: none;
}
.sp_only {
  display: none;
}
.end_only {
  display: none;
}
.flex_box {
  display: flex;
}
.mplus {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.min {
  font-family: 'Noto Serif JP', serif;
}
.red {
  color: #FC3E00;
}
.m-top1 {
  margin-top: 1em !important;
}
.marker {
  background: linear-gradient(transparent 60%, var(--white)9A4 60%);
  display: inline-block;
}
dd {
  text-align: justify;
}
/*-----------------------pagetop*/
#pagetop {
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 50;
  width: 4em;
  height: 4em;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
}
#pagetop a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background-image: none;
  background-color: rgba(15, 189, 147, 0.40);
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#pagetop a:before {
  content: "▲";
  display: block;
  position: absolute;
  color: var(--white);
  font-size: 2em;
  text-indent: 0;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#pagetop a:hover {
  text-decoration: none;
  background-color: #a5a5a5;
}
/*--------------------パンくず */
#pankuzu {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: var(--white);
}
#pankuzu ul {
  margin: 0 auto;
  width: 1000px;
  font-size: .85em;
  padding: 15px 20px 20px;
  _zoom: 1;
}
#pankuzu li {
  float: left;
  list-style: none;
}
#pankuzu li + li:before {
  margin: 0 8px;
  content: '>';
}
/*--------------------------------------------------- twitter */
.twitter {
  text-align: right;
  margin: -2.5em 10% 0 0;
}
/*--------------------------------------------------- 紙吹雪 */
/*========= particle js を描画するエリア設定 ===============*/
html, body {
  position: relative;
  height: 100%; /*高さを100%にして描画エリアをとる*/
  z-index: 1;
}
#particles-js {
  position: fixed; /*描画固定*/
  z-index: -1; /*描画を一番下に*/
  width: 100%;
  height: 100%;
  background: var(--bg-grad);
}
#wrapper {
  position: relative; /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
  width: 100%;
  height: 100%;
}
/*--------------------------------------------------- menu */
#menu {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
}
#menu .page-nav {
  display: block;
  background-color: var(--green);
  width: 100%;
  z-index: 20;
  box-sizing: border-box;
  transition: transform 0.3s;
}
#menu .page-nav ul {
  display: flex;
  justify-content: flex-end;
  column-gap: .5em;
  place-items: center;
  max-width: 1000px;
  width: 95%;
  height: 75px;
  margin: 0 0 0 auto;
  margin-right: 2em;
}
#menu .page-nav li a {
  position: relative;
  display: block;
  color: var(--green);
  font-weight: 600;
  transition: .3s all ease-out;
  text-align: center;
  background-color: var(--white);
  height: 65px;
  padding: 0 .5em;
}
#menu .page-nav li:nth-child(1) a {
  display: flex;
  align-items: center;
}
#menu .page-nav li a .menu-flex {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: .5em;
  flex-wrap: wrap;
  width: 100%;
}
#menu .page-nav ul a:hover {
  filter: brightness(.8);
}
#menu .page-nav li a div {
  width: 40px;
  padding: .2em;
}
#menu .page-nav li:nth-child(1) a .menu-flex div {
  padding: .5em;
  border-radius: .5em;
  background: #000;
}
#menu .page-nav li:nth-child(2) a span {
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 1;
  margin-top: -2px;
}
/*------------------------------------------------------------------------------------ content */
.content {
  padding: 4em 0;
}
.content h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  text-align: center;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 4px; /* 文字間 */
}
.content .attention {
  text-align: center;
  margin-bottom: 3em;
  color: var(--blue);
  font-weight: 600;
  border-bottom: var(--blue) solid 2px;
}
/*------------------------------------------------------------------------------------------------------------ main */
#main {
  padding-bottom: 2em;
  margin-top: 1em;
}
h1 img {
  width: 100%;
  height: auto;
}
#main h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  text-align: center;
  /*color: #9C45D9;*/
  color: var(--purple);
  max-width: 1900px;
  margin: auto;
  margin-bottom: .2em;
  font-size: clamp(24px, 40 * 100 / 1000 * 1vw, 48px);
  text-shadow: 1px 1px 5px var(--white), 1px 1px 5px var(--white), 1px 1px 5px var(--white);
}
.hashtag {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 1em;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  text-align: center;
  color: var(--blue);
  max-width: 1900px;
  margin: auto;
  padding-bottom: .2em;
  text-shadow: 1px 1px 5px var(--white), 1px 1px 5px var(--white), 1px 1px 5px var(--white);
}
.hashtag-heading {
  font-size: clamp(16px, 32 * 100 / 1000 * 1vw, 32px);
}
.hashtag ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: .5em;
  line-height: 1.2;
}
.hashtag ul li p {
  font-size: 1.2em;
}
#main .w1000 p {
  font-size: .9em;
  margin: 1.5em auto !important;
  padding: .2em .5em;
  border: 5px var(--light-blue) double;
  background: var(--white);
}
#main dl {
  font-size: .9em;
}
#campaign-code, #campaign-code02 {
  font-size: clamp(18px, 40 * 100 / 1000 * 1vw, 40px);
}
#clipboard-info, #clipboard-info02 {
  font-size: clamp(14px, 28 * 100 / 1000 * 1vw, 28px);
}
.event {
  margin-top: 3vw;
  text-align: center;
  color: var(--dark-green);
}
.event h2 {
  font-size: clamp(18px, 28 * 100 / 1000 * 1vw, 32px);
  font-weight: 900;
  max-width: 800px;
  margin: auto;
  color: var(--dark-green);
  font-family: 'Noto Sans JP', sans-serif;
  text-shadow: unset;
}
.event .event-info {
  font-size: clamp(14px, 24 * 100 / 1000 * 1vw, 28px);
  width: 100%;
  margin: 0 auto .5em;
}
.event-date {
  text-align: center;
  padding: 1em .5em;
  max-width: 800px;
  width: 100%;
  background: var(--light-green);
  border-radius: .5em;
  margin: 0 auto 1em;
  font-weight: 900;
}
.event-date dt {
  font-size: clamp(18px, 28 * 100 / 1000 * 1vw, 32px);
  max-width: none;
  text-align: center;
  margin-bottom: .3em;
}
.event-date dd {
  font-size: clamp(16px, 24 * 100 / 1000 * 1vw, 28px);
  text-align: center;
}
.event-date .noto {
  font-size: 14px;
}
.event-info p {
  font-size: 16px;
  text-align: left;
}
/*----------------------------------------------------------------------------------- pop-store*/
.pop-store {
  padding: 2em;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 4em;
  background-color: var(--white-orange);
  background-image: var(--bg-pop);
  border: solid 6px var(--white);
  border-radius: 2em;
}
.pop-wrapper {
  width: 100%;
  background-color: var(--white);
  padding: 2.5em;
  margin: 0 auto;
  border-radius: 1em;
}
.pop-store-info {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.pop-store-info h2 {
  font-size: clamp(18px, 24 * 100 / 1000 * 1vw, 28px);
  color: var(--orange);
  margin-bottom: 1em;
  text-shadow: 2px 2px 3px var(--white), -2px 2px 3px var(--white), 2px -2px 3px var(--white), -2px -2px 3px var(--white), 2px 0px 3px var(--white), 0px 2px 3px var(--white), -2px 0px 3px var(--white), 0px -2px 3px var(--white);
}
.pop-store-info p {
  text-align: left;
  font-size: clamp(16px, 18 * 100 / 1000 * 1vw, 20px);
  font-weight: 700;
}
.pop-store-info .pop-text {
  margin-bottom: .5em;
}
.pop-store-info .pop-link {
  margin: 1em 0 .2em;
  text-align: center;
  color: var(--pink);
}
.pop-store-info dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 2em;
  font-weight: 700;
}
.pop-flex {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
}
.pop-bnr {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
/*----------------------------------------------------------------------------------- nav の場合*/
nav {
  position: sticky;
  top: .6em;
  width: 1000px;
  margin: auto;
  z-index: 9999;
}
.my-parts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transition: 1.0s;
}
.my-parts ul::after {
  content: "";
  display: block;
  clear: both;
}
.my-parts ul > li {
  position: relative;
  flex: 1;
  margin-left: 3px;
  box-sizing: border-box;
  font-weight: 800;
}
.my-parts ul > li:first-child {
  margin-left: 0;
}
.my-parts ul li a {
  border-radius: 15px;
  display: block;
  padding: .8em;
  text-decoration: none;
  color: var(--white);
  background: var(--green);
  border: var(--white) 2px solid;
  text-align: center;
  font-size: 1.2em;
  font-weight: 600;
  text-shadow:
    2px 2px 1px var(--blue), -2px 2px 1px var(--blue), 2px -2px 1px var(--blue), -2px -2px 1px var(--blue), 2px 0px 1px var(--blue), 0px 2px 1px var(--blue), -2px 0px 1px var(--blue), 0px -2px 1px var(--blue);
  transition: .5s;
}
.my-parts ul li a:hover {
  background: #F4E409;
  border-radius: 15px 15px 0 0;
}
.my-parts ul > li ul {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
}
.my-parts ul > li li {
  float: none;
  width: 100%;
  margin: 2px 0;
}
.my-parts ul > li li a {
  background: rgba(255, 255, 255, 0.90);
  padding: .3em .8em;
  font-size: 1em;
  color: #FF6700;
  font-weight: 600;
  border: none;
  border-radius: 0;
  text-shadow: none;
}
.my-parts ul > li li a:hover {
  border-radius: 0;
}
.my-parts ul li:hover ul {
  display: block;
}
/*----------------------------------------------------- map*/
.map {
  max-width: 1500px;
  margin: 1em auto 3em;
  background: rgba(255, 255, 255, 0.70);
  padding: 1em;
}
.map .pamphlet.flex_box {
  justify-content: space-between;
  max-width: 800px;
  margin: auto;
}
.map .pamphlet li {
  width: 49.5%;
}
.map p {
  text-align: center;
}
.map a {
  text-decoration: underline;
}
.map .secchi {
  margin-top: 1em;
  font-size: 0.9em;
}
.map .secchi strong {
  display: block;
  max-width: 30em;
  text-align: center;
  background: var(--light-pink);
  margin: auto;
  padding: 2px .5em;
}
.map .secchi small {
  display: block;
}
.announce h5, .map h5 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 25px;
  text-align: center;
  font-weight: 900;
  color: var(--pink);
  padding: .5em;
  text-shadow:
    2px 2px 1px var(--white), -2px 2px 1px var(--white), 2px -2px 1px var(--white), -2px -2px 1px var(--white), 2px 0px 1px var(--white), 0px 2px 1px var(--white), -2px 0px 1px var(--white), 0px -2px 1px var(--white);
}
.card.pamphlet.flex_box {
  flex-wrap: wrap;
  max-width: 100%;
}
.card.pamphlet.flex_box li {
  margin: 2px;
  width: 24%;
}
/*----------------------------------------------------- announce*/
.announce {
  text-align: center;
  margin-bottom: 2em;
  max-width: 1500px;
  margin: 1em auto;
  background: rgba(255, 255, 255, 0.70);
  padding: .5em 0;
}
.announce dt {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 1em;
}
.announce dt small {
  font-weight: normal;
}
.announce dd {
  max-width: 1300px;
  margin: auto;
}
.deramasu_x a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  max-width: 450px;
  margin: 1em auto 3em;
  background: var(--white);
  font-size: 14px;
  padding: 1em;
  border-radius: 1em;
  border: 3px #000 solid;
  color: #000;
}
.deramasu_x a:hover {
  background: #000;
  color: var(--white);
}
.deramasu_x dd {
  width: 25em;
  text-align: center;
}
.deramasu_x dt {
  width: 6em;
  padding: .5em;
  border-radius: .5em;
  background: #000;
}
.deramasu_x dd strong {
  display: block;
  font-size: clamp(24px, 28 * 100 / 1000 * 1vw, 30px);
  font-weight: 900;
}
/*------------------------------------------------------------------------------------------------------------ panel */
.panel-cooperation {
  padding: 3em;
  max-width: 1000px;
  width: 100%;
  margin: 2em auto 4em;
  background-color: var(--white-opa);
}
.panel-wrapper {
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 2em;
  margin: 0 auto;
}
.panel-cooperation dl {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.panel-cooperation dt {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  text-align: center;
  font-weight: 900;
  letter-spacing: 4px;
  font-size: clamp(20px, 24 * 100 / 1000 * 1vw, 28px);
  color: var(--orange);
  margin-bottom: 1em;
  text-shadow: 2px 2px 3px var(--white), -2px 2px 3px var(--white), 2px -2px 3px var(--white), -2px -2px 3px var(--white), 2px 0px 3px var(--white), 0px 2px 3px var(--white), -2px 0px 3px var(--white), 0px -2px 3px var(--white);
}
.panel-cooperation dd {
  text-align: center;
  font-weight: 700;
  font-size: clamp(18px, 20 * 100 / 1000 * 1vw, 24px);
  margin-bottom: 1em;
}
.panel-cooperation dd span {
  display: block;
  font-size: clamp(16px, 18 * 100 / 1000 * 1vw, 20px);
}
.panel-image {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
/*------------------------------------------------------------------------------------------------------------ box */
.comingsoon-text {
  font-size: 16px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
  margin-top: 5em;
  text-shadow: 2px 2px 3px var(--green), -2px 2px 3px var(--green), 2px -2px 3px var(--green), -2px -2px 3px var(--green), 2px 0px 3px var(--green), 0px 2px 3px var(--green), -2px 0px 3px var(--green), 0px -2px 3px var(--green);
}
.click {
  font-size: clamp(16px, 20 * 100 / 1000 * 1vw, 24px);
  text-align: center;
  margin-bottom: 1em;
  padding: 3px;
  background: var(--light-purple);
  color: var(--white);
  font-weight: 700;
}
.box {
  /*	padding-top: 80px;
	margin: 2em 0;*/
  background: linear-gradient(0deg, var(--white) calc(100% - 80px), rgba(255, 255, 255, 0.00) 80px);
}
.box h3 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.5em;
  padding: 5px .5em;
  background: var(--green);
  color: var(--white);
  justify-content: space-between;
  align-items: flex-end;
}
.box h3 .fa-solid, .fa-brands {
  color: var(--white);
  font-size: 1.5em;
  margin: 0 4px;
  transition: 0.4s;
}
.box h3 .fa-icon {
  max-width: 1.7em !important;
  margin: 0 8px;
  transition: 0.4s;
}
.box h3 a small {
  font-size: 0.5em;
  font-weight: normal;
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
}
.box h3 a {
  text-decoration: none;
}
.box h3 .link a:hover {
  font-size: 1.2em;
}
.box > dl dt {
  flex: 3;
}
.detail {
  flex: 4.5;
  padding: 0 1.5em 1.5em;
}
/*.box .center_dd{ flex: 4.5; padding: 1em 1em .5em 1.5em;}
.box .img_dd{ flex: 2.5; padding: 1em 1em; position: relative;}
.box .img_dd img{ border: var(--white) 3px solid;}
.box .img_dd .flex_box{flex-wrap: wrap;	justify-content: center;}
.box .img_dd .flex_box li{width: calc(100% / 2); margin-bottom: 0;}
.box .img_dd a{font-size: .9em; letter-spacing: -1px;}
.img_dd .fa-magnifying-glass-plus{
	position: absolute;
	top:20%; 
	right: .7em;
	font-size: 2em;
	color: rgba(255,126,0,0.60);
}*/
.detail h4 {
  background: linear-gradient(transparent 80%, #D9F3FF 80%);
  font-size: 1.1em;
  display: inline-block;
  padding-right: .5em;
  margin: 1.5em 0 .2em;
}
.detail h4 .icon {
  width: 3em !important;
}
.detail dt {
  margin-top: .3em;
  font-weight: 600;
}
.detail dd {
  line-height: 1.2;
  margin-left: 1em;
}
/*.box dd li{ 	margin-bottom: 1em;}*/
.box .btn {
  display: block;
}
.box .btn a {
  display: inline-block;
  color: var(--white);
  padding: .4em 2em;
  border-radius: 5px;
  background: var(--green-grad);
  text-decoration: none;
  margin: .5em 0 .8em;
}
.detail .btn-bottom a{
	margin-bottom: 0.4em;
}
.box .btn a:hover {
  background: var(--green-grad);
}
.box a {
  text-decoration: underline;
}
.box .btn.btnsoon a {
  background: #939393;
}
.fa-solid.xxs {
  font-size: .6em;
  margin-right: 1em;
}
.fa-solid.red {
  color: #EB4B4B;
}
.box .soon {
  border: #676767 1px solid;
  padding: 0px 1em;
  color: #676767;
  display: inline-block;
  transform: rotate(-3deg);
  margin-top: 0.3em;
  margin-left: 2em;
  font-size: .9em;
}
.box strong.soon {
  font-size: 1.7em;
}
.collabo-con .text {
  flex: 3;
  margin-bottom: 0.5em;
}
.collabo-con .pamphlet {
  flex: 2;
  margin-left: 1em;
}
.collabo-con .pamphlet ul {
  margin-bottom: 0;
}
.collabo-con .pamphlet ul li:nth-of-type(even) {
  margin-left: 5px;
}
.collabo-con .image {
  flex: 1;
  margin: .5em 0 0 3em;
}
.collabo-con .pamphlet .flex_box {
  flex-wrap: wrap;
  justify-content: space-between;
}
#mwt .collabo-con .pamphlet .flex_box {
  display: block;
}
.collabo-con .pamphlet .flex_box li {
  width: 48.5%;
  margin-bottom: 2px;
}
#mwt .collabo-con .pamphlet .flex_box li{
  width: 100%;
  margin-bottom: 1em;
}
.collabo-con .pamphlet .flex_box li.w100p {
  width: 100%;
  margin-bottom: 2px;
}
.detail.flex_box .collabo-con {
  flex: 3;
}
.detail.flex_box .image {
  flex: 1;
  margin: 2em 0 0 3em;
}
.collabo-con.flex_box .pamphlet {
  flex: 2;
  margin: 2em 0 0 3em;
}
/*.collabo-con ul li:first-child{margin-right: .5em;}
.collabo-con ul li{margin-bottom: 0;}
.collabo-con ul + a{font-size: .9em; letter-spacing: -1px;}*/
.pac {
  border: #FFBCD0 5px solid;
  padding: .5em 1em;
  margin-top: 1em;
}
.pac h4 {
  background: linear-gradient(transparent 80%, #FFCDDA 80%);
  margin-top: 0 !important;
}
.pac a {
  color: #FF0054;
}
.pac .pamphlet {
  margin-top: 0 !important;
}
.add {
  font-size: 0.85em;
  display: block;
  padding: .5em 0;
  margin-left: 0;
}
.pamphlet, .image {
  position: relative;
}
/*.pamphlet::before,
.image::before{
	content: '\f00e';
	content:url(../img/magnifying-glass-plus-solid.svg);
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 2em;
	color: #F94500;
 text-shadow    : 
       2px  2px 1px rgba(255,255,255,0.50),
      -2px  2px 1px rgba(255,255,255,0.50),
       2px -2px 1px rgba(255,255,255,0.50),
      -2px -2px 1px rgba(255,255,255,0.50),
       2px  0px 1px rgba(255,255,255,0.50),
       0px  2px 1px rgba(255,255,255,0.50),
      -2px  0px 1px rgba(255,255,255,0.50),
       0px -2px 1px rgba(255,255,255,0.50);
	position: absolute;
	right: .5em;
	top: .5em;
}*/
.pamphlet::before, .image::before {
  content: url("../img/magnifying-glass-plus-solid.svg");
  width: 2em;
  position: absolute;
  right: .5em;
  top: .5em;
}
.link_other {
  margin-top: 1.5em;
}
.link_other .btn {
  margin-top: -.5em;
}
/*------------------------------------------------------------------------------------------------------------ 重要なお知らせ */
.attn {
  border: #FF0004 4px double;
  padding: .5em;
  font-size: .85em;
  margin-top: 1em;
}
.attn strong {
  color: #FF0004;
  display: block;
}
/*------------------------------------------------------------------------------------------------------------ 日程 */
.date {
  border: #FF0004 4px double;
  padding: .3em 1em;
  margin-top: 1em;
  color: #FC3E00;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  background: var(--white);
}
/*------------------------------------------------------------------------------------------------------------ comingsoon */
.comingsoon {
  background: rgba(229, 229, 229, 1.00);
  padding: 2em 1.5em 2em;
}
.comingsoon h3 {
  /*	width: 1000px;*/
  margin: auto;
  text-align: center;
  font-size: 8em;
  padding: .5em 0;
  /*	animation: 3s fuwafuwa infinite;*/
  transform: rotate(-10deg);
  line-height: 2;
}
.comingsoon h3 span {
  display: block;
  transform: rotate(+10deg);
  font-size: .25em;
}
.box .comingsoon {
  background: rgba(229, 229, 229, 1.00);
  padding-top: 10%;
}
.box .comingsoon p {
  margin: auto;
  text-align: center;
  font-size: 3em;
  font-weight: 900;
  padding: .5em 0;
  animation: 3s fuwafuwa infinite;
  transform: rotate(-5deg);
  line-height: 2;
}
.box .comingsoon p span {
  display: block;
  transform: rotate(+5deg);
  font-size: .4em;
}
/*--@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
	  
  }
  50% {
    transform: translateY(-40px);
	  
  }
}*/
/*------------------------------------------------------------------------------------------------------------ other-news */
.sp599 {
  display: none;
}
.other-news {
  border-top: dotted var(--light-blue) 5px;
}
.other-news .sub-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(18px, 28 * 100 / 1000 * 1vw, 36px);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  padding: 1.5em 0 .1em;
  max-width: 25em;
  margin: auto;
  text-shadow: 2px 2px 3px var(--green), -2px 2px 3px var(--green), 2px -2px 3px var(--green), -2px -2px 3px var(--green), 2px 0px 3px var(--green), 0px 2px 3px var(--green), -2px 0px 3px var(--green), 0px -2px 3px var(--green);
}
.other-news h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(18px, 30 * 100 / 1000 * 1vw, 40px);
  color: var(--green);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  padding: 0 0 .5em;
  margin: auto;
  text-shadow:
    3px 3px 2px var(--white), -3px 3px 2px var(--white), 3px -3px 2px var(--white), -3px -3px 2px var(--white), 3px 0px 2px var(--white), 0px 3px 2px var(--white), -3px 0px 2px var(--white), 0px -3px 2px var(--white);
}
.other-news .more-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(20px, 24 * 100 / 1000 * 1vw, 36px);
  color: var(--blue);
  font-weight: 900;
  text-align: center;
  padding: .5em 0 .5em;
  margin: auto;
  text-shadow:
    3px 3px 2px var(--white), -3px 3px 2px var(--white), 3px -3px 2px var(--white), -3px -3px 2px var(--white), 3px 0px 2px var(--white), 0px 3px 2px var(--white), -3px 0px 2px var(--white), 0px -3px 2px var(--white);
}
.other-news .bnr {
  display: block;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
/*------------------------------------------------------------------------------------------------------------ mv */
.mv {
  border-top: dotted var(--light-blue) 5px;
  border-bottom: dotted var(--light-blue) 5px;
  margin: 5em auto;
  padding-bottom: 2em;
  text-shadow:
    2px 2px 1px var(--white), -2px 2px 1px var(--white), 2px -2px 1px var(--white), -2px -2px 1px var(--white), 2px 0px 1px var(--white), 0px 2px 1px var(--white), -2px 0px 1px var(--white), 0px -2px 1px var(--white);
}
.mv .w800 {
  max-width: 800px;
  margin: 0 auto;
}
.mv h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(20px, 32 * 100 / 1000 * 1vw, 36px);
  color: var(--green);
  font-weight: 900;
  text-align: center;
  padding: 1.5em 0 .5em;
  max-width: 25em;
  margin: auto;
  text-shadow:
    3px 3px 2px var(--white), -3px 3px 2px var(--white), 3px -3px 2px var(--white), -3px -3px 2px var(--white), 3px 0px 2px var(--white), 0px 3px 2px var(--white), -3px 0px 2px var(--white), 0px -3px 2px var(--white);
}
.mv p {
  font-size: clamp(14px, 16 * 100 / 1000 * 1vw, 16px);
  margin-bottom: 1em;
}
.mv li {
  text-align: center;
  margin-bottom: .5em;
}
.mv ul {
  display: flex;
  justify-content: center;
  column-gap: 1em;
}
.mv li a {
  padding: 0 1em;
  /*	text-decoration: underline;*/
  border-bottom: 1px solid var(--dark-blue);
  color: var(--dark-blue);
}
.mv h4 img {
  max-width: 350px !important;
}
.mv h4 {
  border-top: dotted #FFBAF3 3px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.2em;
  color: var(--pink);
  font-weight: 900;
  text-align: center;
  padding: 1em 0 .5em;
  margin: 2em auto .5em;
  text-shadow:
    3px 3px 2px var(--white), -3px 3px 2px var(--white), 3px -3px 2px var(--white), -3px -3px 2px var(--white), 3px 0px 2px var(--white), 0px 3px 2px var(--white), -3px 0px 2px var(--white), 0px -3px 2px var(--white);
}
.mv h4 + ul li a {
  border-bottom: 1px solid #FF5EC1;
  color: #FF5EC1;
}
.mv p:last-child {
  margin: 3em 0 0;
  text-align: center;
  font-weight: 600;
}
/*------------------------------------------------------------------------------------------------------------ character */
.character h2 {
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  font-size: clamp(17px, 32 * 100 / 1000 * 1vw, 36px);
  color: var(--red-pink);
  text-shadow:
    2px 2px 1px var(--white), -2px 2px 1px var(--white), 2px -2px 1px var(--white), -2px -2px 1px var(--white), 2px 0px 1px var(--white), 0px 2px 1px var(--white), -2px 0px 1px var(--white), 0px -2px 1px var(--white);
  margin-bottom: 1em;
}
.character h2 .saiko {
  position: relative;
}
.character h2 .saiko span {
  font-size: clamp(14px, 18 * 100 / 1000 * 1vw, 18px);
  position: absolute;
  top: -16px;
  left: 20px;
}
.character h2 .large {
  display: block;
  font-size: clamp(20px, 40 * 100 / 1000 * 1vw, 48px);
  margin-bottom: 1em;
}
.character .dramaticstars {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.character ul {
  flex-wrap: wrap;
  justify-content: center;
}
.character ul li {
  width: calc(100% / 3 - 10px);
  margin: 5px;
  max-width: 320px;
}
.character ul li p {
  font-weight: 700;
  font-size: clamp(18px, 20 * 100 / 1000 * 1vw, 24px);
  color: var(--white);
  background-color: var(--orange);
  border-radius: 1em;
  padding: .3em;
  margin: .5em 0 0;
  text-align: center;
}
.ambassador {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(18px, 24 * 100 / 1000 * 1vw, 36px);
  color: var(--red-pink);
  font-weight: 900;
  text-align: center;
  padding: .5em 0 .5em;
  margin: auto;
  text-shadow: 3px 3px 2px var(--white), -3px 3px 2px var(--white), 3px -3px 2px var(--white), -3px -3px 2px var(--white), 3px 0px 2px var(--white), 0px 3px 2px var(--white), -3px 0px 2px var(--white), 0px -3px 2px var(--white);
}
.credit {
  margin: 3em 0 2em;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  text-shadow: 2px 2px 1px var(--white), -2px 2px 1px var(--white), 2px -2px 1px var(--white), -2px -2px 1px var(--white), 2px 0px 1px var(--white), 0px 2px 1px var(--white), -2px 0px 1px var(--white), 0px -2px 1px var(--white);
}
/*------------------------------------------------------------------- キャンペーン終了後*/
.end_coment {
  font-size: min(3.5vw, 47px);
}
.end_btnbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.end_btnbox li {
  flex: calc(100% / 4 - .4em);
  margin: .7em .2em;
  max-width: 25%;
  display: flex;
  flex-direction: column;
  position: relative; /*相対配置*/
}
.end_btnbox li:after { /*画像を絶対配置*/
  position: absolute;
  content: '';
  top: 15vw;
  left: 88%;
  display: block;
  width: 100%; /*幅*/
  height: 3em; /*どれだけデカくなってもはみ出ないであろう高さを指定*/
  background-image: url(../img/click.png);
  background-size: contain;
  background-repeat: no-repeat; /*画像を繰り返さない*/
}
.end_btnbox li p:hover {
  transform: scale(1.05, 1.02);
  transition: .5s all;
}
.end_btnbox h3 {
  font-size: min(2.3vw, 1.2em);
  background: #BDEAFD;
  color: #000;
  padding: 5px 1.2em 5px .5em;
  position: relative;
}
.end_btnbox h3 img {
  width: 1.5em !important;
  position: absolute;
  right: .5em;
}
.end_btnbox h3 img:hover {
  opacity: 0.7;
  transition: .5s all;
}
.survey {
  margin-bottom: 5em;
  background: rgba(255, 255, 255, 0.70);
  padding: .5em 0;
  font-weight: 600;
}
.survey dd {
  text-align: center;
  margin-bottom: 1em;
}
.survey dt, .survey dd {
  text-align: center;
  margin-bottom: 1em;
  padding: .5em;
}
.survey dt a {
  padding: .5em 1em;
  background: var(--orange);
  color: var(--white);
  margin: 1em auto;
  font-size: min(4vw, 1em);
}
.message {
  text-align: center;
  font-size: min(3vw, 2em);
  font-weight: 900;
  margin-bottom: .8em;
  color: var(--orange);
  text-shadow:
    2px 2px 1px var(--white), -2px 2px 1px var(--white), 2px -2px 1px var(--white), -2px -2px 1px var(--white), 2px 0px 1px var(--white), 0px 2px 1px var(--white), -2px 0px 1px var(--white), 0px -2px 1px var(--white);
}
/************************************************************
					★min770px－max999px
************************************************************/
@media screen /*and (min-width: 770px) */ and (max-width: 1000px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  h1 {
    line-height: 1.2;
    padding-top: .3em;
  }
  /*------------------------------------------------------------------------------------------------------------ pankuzu */
  #pankuzu ul {
    padding: 16px 20px;
  }
  /*------------------------------------------------------------------------------------------------------------ content */
  .content {
    padding: 0;
  }
  /*----------------------------------------------------------------------------------- pop-store*/
  .pop-store {
    padding: 2em;
  }
  .pop-wrapper {
    padding: 2em;
  }
  .pop-flex {
    grid-column-gap: 1em;
  }
  /*------------------------------------------------------------------------------------------------------------ comingsoon */
  .comingsoon h2 {
    width: 90%;
    font-size: min(20vw, 60px);
    /*	line-height: 1.3;*/
  }
  /*23/10/31 キャンペーン終了後*/
  .btnbox .box h3 {
    font-size: 2vw;
  }
  .end_coment {
    font-size: 6vw;
  }
  .collabo-con .pamphlet .flex_box li {
    width: 48%;
  }
  .end_btnbox li {
    flex: calc(100% / 3 - .4em);
    margin: .7em .2em;
    max-width: 33%;
  }
  /*------------------------------------------------------------------------------------------------------------ nav の場合*/
  nav {
    width: auto;
  }
  /*------------------------------------------------------------------------------------------------------------ character */
  .character {
    display: block;
    position: relative;
    padding-bottom: 2em;
  }
  .character h2 .margin-saiko {
    display: block;
    position: relative;
    margin-top: .7em;
  }
  .character h2 .saiko span {
    font-size: clamp(14px, 18 * 100 / 1000 * 1vw, 18px);
    position: absolute;
    top: -16px;
    left: 20px;
  }
}
/************************************************************
					★タブレット対応
************************************************************/
@media screen /*and (min-width:600px) */ and (max-width:769px) {
  .tb {
    display: block;
  }
  /*--------------------パンくず */
  #pankuzu {
    display: none;
  }
  /*--------------------------------------------------- twitter */
  .twitter {
    text-align: left;
    margin: 0;
  }
  .twitter p {
    background: var(--white);
    padding: 5px 1em 0;
  }
  /*------------------------------------------------------------------------------------------------------------ pop-store */
  .pop-wrapper {
    display: block;
  }
  .pop-flex {
    grid-template-columns: 1fr 1fr;
  }
  /*------------------------------------------------------------------------------------------------------------ content */
  /*.content h2{	font-size: 4.5vw;}*/
  .content h2 + p br {
    display: none;
  }
  .content h2 + p, .content .attention {
    text-align: left;
  }
  .box > dl.flex_box {
    display: block;
  }
  .box > dl > dt {
    box-shadow: 0px 7px 7px -5px rgba(0, 0, 0, 0.3);
  }
  /*------------------------------------------------------------------------------------------------------------ box */
  .box h3 {
    font-size: 1.95vw;
    padding: 5px .5em;
    background: var(--green);
    color: var(--white);
    justify-content: space-between;
    align-items: flex-end;
    /*	min-height: 6em!important;*/
  }
  #meitetsukyosho h3.flexbox {
    flex-direction: column-reverse;
  }
  /*------------------------------------------------------------------------------------------------------------ panel */
  .panel-cooperation {
    padding: 2em;
  }
  /*------------------------------------------------------------------------------------------------------------ mv */
  .mv {
    padding-bottom: 2em;
    margin-bottom: 3em;
  }
  var(--green) .mv p {
    font-size: 1em;
  }
  .mv li a {
    font-size: 0.9em;
  }
  /*23/10/31 キャンペーン終了後*/
  .btnbox .box {
    flex: calc(100% / 2 - 1em);
    max-width: 50%;
  }
  #meitetsukyosho .btnbox .box h3.flexbox {
    color: blue;
  }
  /*23/10/31 キャンペーン終了後*/
  .btnbox .box {
    position: relative;
  }
  .btnbox .box h3 {
    font-size: 1.9vw;
  }
  .btnbox .box a::before {
    display: none;
  }
  .message {
    font-size: 5.6vw;
  }
  .map .secchi {
    text-align: left;
  }
}
/************************************************************
						★スマホ対応
************************************************************/
@media screen and (max-width:599px) {
  .end_only {
    display: block;
  }
  .sp_only {
    display: block;
  }
  .sp_none {
    display: none;
  }
  /*------------------------------------------------------------------------------------------------------------ main */
  #main {
    padding-bottom: 0;
    margin-top: .5em;
  }
  #main h2 {
    line-height: 1.2;
  }
  /*----------------------------------------------------------------------------------- pop-store*/
  .pop-store {
    padding: 2em 1em;
    border: solid 4px var(--white);
    background-image: var(--bg-pop-sp);
    border-radius: 1em;
  }
  .pop-wrapper {
    padding: 1em;
    border-radius: .5em;
  }
  /*------------------------------------------------------------------------------------ content */
  .content {
    padding: 1.5em 0;
  }
  /*.content h2{	font-size: 6vw;}*/
  .content h2 + p {
    margin: .8em 0 0;
  }
  #container .icon {
    width: 2em;
  }
  .card.pamphlet.flex_box li {
    width: 48.5%;
  }
  /*------------------------------------------------------------------------------------------------------------ box */
  .comingsoon-text {
    margin-top: 1em;
  }
  .box {
    padding-top: 60px;
    margin: 1em 0;
    background: linear-gradient(0deg, var(--white) calc(100% - 60px), rgba(255, 255, 255, 0.00) 60px);
  }
  .box h3 {
    font-size: 1.1em;
    line-height: 1.3;
    flex-direction: column-reverse;
  }
  .box h3 strong {
    width: 100%;
    font-size: 4.3vw;
  }
  .detail {
    font-size: .9em;
    padding: 0 .5em .5em;
  }
  .detail h4 {
    background: var(--white)EDC;
    margin: 1em 0 .2em 2.1em;
    text-indent: -2.1em;
    padding: 0 .3em;
    line-height: 1.2;
    width: 90%;
  }
  .pac h4 {
    background: #FFCDDA;
    margin: 1em 0 .2em;
    text-indent: 0em;
  }
  #container .detail h4 .icon {
    margin-right: .2em;
  }
  /*	
.detail dt{margin-top: .3em; font-weight: 600;}*/
  .detail dd { /*line-height: 1.2; */ margin-left: .5em;
  }
  /*.box dd li{ 	margin-bottom: 1em;}*/
  .box .btn a {
    display: block;
    text-align: center;
  }
  .collabo-con.flex_box, .detail.flex_box {
    display: block;
  }
  .collabo-con .image {
    margin: .5em 0 0 0em;
  }
  .detail.flex_box .image {
    margin: 2em 0 0 0em;
  }
  .collabo-con.flex_box .pamphlet {
    margin: 2em 0 0 0em;
  }
  /*------------------------------------------------------------------------------------------------------------ mv */
  /*23/10/31 キャンペーン終了後*/
  .btnbox .box {
    position: relative;
  }
  .btnbox .box h3 {
    line-height: 1.2;
    align-items: center;
  }
  .btnbox .box h3 strong {
    font-size: 2.9vw;
    padding-left: 1.9em;
  }
  .btnbox .box h3 strong.one {
    padding-bottom: .5em;
  }
  .btnbox .box h3 .link {
    position: absolute;
    left: 3px;
    bottom: 3px;
  }
  .btnbox .box h3 img {
    position: absolute;
    top: 70px;
    left: 2px;
  }
  .btnbox .box h3 .fa-solid, .fa-brands {
    font-size: 5vw;
    color: var(--green);
  }
  .end_only::after {
    content: "　";
  }
  .end_btnbox li {
    flex: calc(100% / 2 - .4em);
    margin: .7em .2em;
    max-width: 49%;
  }
  /*---------------------------------------------------------------------------------- comingsoon */
  .comingsoon h2 {
    line-height: 1;
  }
  .comingsoon h2 span:first-child {
    margin-top: 2em;
  }
  /*--------------------------------------------------------------------------- nav の場合*/
  .my-parts ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    transition: 1.0s;
  }
  .my-parts ul::after {
    content: "";
    display: block;
    clear: both;
  }
  .my-parts ul > li {
    /*	float: left;*/
    position: relative;
    flex: 1;
    margin-left: 3px;
    box-sizing: border-box;
    font-weight: 800;
  }
  .my-parts ul > li:first-child {
    margin-left: 0;
  }
  .my-parts ul li a {
    padding: .4em;
    font-size: 4vw;
  }
  /*.my-parts ul li a:hover {
	background: #F4E409;
	border-radius: 15px 15px 0 0;
}*/
  .my-parts ul > li ul {
    /*	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;*/
    width: 400%;
  }
  .nav-inner2 {
    left: -100% !important;
  }
  .nav-inner3 {
    left: -200% !important;
  }
  .nav-inner4 {
    left: -300% !important;
  }
  /*.my-parts ul > li li {
	float: none;
	width: 100%;
	margin: 2px 0;
}
.my-parts ul > li li a{
	background: rgba(255,255,255,0.90);
	padding: .3em .8em;	
	font-size: 1em;
	color: #FF6700;
	font-weight: 600;
	border: none;	
	border-radius: 0 ;
	  text-shadow:none;
}
.my-parts ul > li li a:hover{
	border-radius: 0;
}
.my-parts ul li:hover ul {
	display: block;


}	*/
  /*------------------------------------------------------------------------------------------------------------ panel */
  .panel-wrapper {
    display: block;
  }
  .panel-cooperation dl {
    margin-bottom: 1em;
  }
  /*------------------------------------------------------------------------------------------------------------ other-news */
  .sp599 {
    display: block;
  }
  /*------------------------------------------------------------------------------------------------------------ mv */
  .mv {
    margin-bottom: 4em;
  }
  .mv ul {
    margin-top: 1em;
  }
  /*------------------------------------------------------------------------------------------------------------ character */
  .character {
    padding-bottom: 0;
  }
  .character h2 .margin-saiko {
    margin-top: .8em;
    font-size: 22px;
  }
  .character h2 .saiko span {
    position: absolute;
    top: -12px;
    left: 20px;
  }
  .character h2 .large {
    margin-top: .2em;
  }
  .x-news {
    margin: 5em auto;
    background: rgba(138, 223, 255, 0.30);
    padding: 2em;
  }
  .x-news li a {
    display: block;
  }
  .x-news li a:hover {
    opacity: .7;
    border: 5px solid #000;
  }
  .x-news li span::before {
    content: ''; /*何も入れない*/
    display: inline-block;
    width: 1.5em; /*画像の幅*/
    height: 1.5em; /*画像の高さ*/
    background-image: url(../img/x-twitter-brands-solid_bk.svg);
    background-size: contain;
    vertical-align: middle;
    margin-right: .5em;
  }
  .slide-animation {
    display: flex;
    gap: 10px;
    overflow: hidden;
  }
  .slide-animation li {
    width: 500px;
  }
  .slide-contents {
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    animation: loopAnimation 50s linear infinite;
  }
  .noslide {
    animation: none;
  }
  @keyframes loopAnimation {
    0% {
      transform: translate(0%);
    }
    100% {
      transform: translate(-100%);
    }
  }
  /*------------------------------------------------------------------------------------------------------------ credit */
  .credit {
    margin: 1em 0 1em;
  }
}
/************************************************************
						★スマホ対応
************************************************************/
@media screen and (max-width:599px) {
  .x-news {
    margin: 5em auto;
    padding: 2em .5em;
  }
  .slide-animation li {
    width: 200px;
  }
}
/*------------------------------------------------------------------------------------------------------------ event */
.event h2 {
  margin-top: 1em;
}
/*------------------------------------------------------------------------------------------------------------ passport */
.passport {
  max-width: 1000px;
  margin: auto;
  display: flex;
  background: rgba(255, 255, 255, 0.70);
  justify-content: center;
  align-items: center;
  padding: .5em 0;
}
.passport dl {
  flex: 4;
  max-width: 37em;
  text-align: center;
}
.passport p {
  flex: 1;
  max-width: 15em;
}
.passport dl dt {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.5em;
  font-weight: 900;
  color: #FF4394;
  padding: .5em;
  text-shadow:
    2px 2px 1px var(--white), -2px 2px 1px var(--white), 2px -2px 1px var(--white), -2px -2px 1px var(--white), 2px 0px 1px var(--white), 0px 2px 1px var(--white), -2px 0px 1px var(--white), 0px -2px 1px var(--white);
}
.passport dl dd {
  text-align: center;
  font-weight: bold;
}
.passport dl dd a {
  background: #2676C8;
  color: var(--white);
  padding: .5em 1em;
  display: inline-block;
  border-radius: 5px;
  margin-bottom: .8em;
}
.passport dl dd:nth-child(3) {
  color: rgba(233, 26, 74, 1.00);
}
.passport dl dd:nth-child(5) {
  font-size: .8em;
}
.passport dl dd.flex_box {
  justify-content: center;
  align-items: center;
}
.passport dl dd.flex_box span {
  background: #FFE6F0;
  color: #FF4394;
  ;
  /*	border: #FCA7CB dotted 3px;*/
  margin: .5em;
  border-radius: 50px;
  padding: .5em 2em;
  width: 15em;
  line-height: 1;
}
.passport dl dd.flex_box span small {
  font-size: .7em;
}
.passport dl dd.flex_box span:first-child {
  padding: 1.2em;
}
.my-parts ul li a {
  font-size: 0.8em;
  text-shadow: none;
}
/************************************************************
						★スマホ対応
************************************************************/
@media screen and (max-width:750px) {
  .passport {
    display: block;
  }
  .passport dl {
    max-width: 100%;
  }
  .passport p {
    max-width: 10em;
    margin: 1em auto;
  }
  .passport dl dt {
    font-size: 5vw;
  }
}
/************************************************************
						過去実績
************************************************************/
/*全体*/
.hidden_box {
  margin: 4em 0; /*前後の余白*/
  padding: 0;
  text-align: center;
}
/*ボタン装飾*/
.hidden_box label {
  padding: 10px 10%;
  border-radius: 2em;
  font-weight: bold;
  border: solid 2px var(--white);
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: clamp(14px, 20 * 100 / 1000 * 1vw, 24px);
}
/*ボタンホバー時*/
/*.hidden_box label:hover {
    background: #4189DF;
}*/
/*チェックは見えなくする*/
.hidden_box input {
  display: none;
}
/*中身を非表示にしておく*/
/*.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}*/
/*クリックで中身表示*/
/*.hidden_box input:checked ~ .hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}*/
/************************************************************
						★スマホ対応
************************************************************/
@media screen and (max-width:599px) {
  .hidden_box {
    margin: 0 0 3em;
  }
}