@charset "UTF-8";

body {
font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
font-size: 16px;
color: #000;
overflow-x: hidden;
}

section:nth-of-type(odd){background-color:#F7F7F7;}
section:nth-of-type(even){background-color:#FFF;}
section.basic{background-color:#FFFDE4;}

@media screen and (max-width: 280px) { /*Galaxy Fold*/
  body {
  font-size: 14px;
  }
}

article{
width: 100%;
}
section{
  position: relative;
}
.active{
  opacity: 1;
}
a{
  transition: .3s;
}
a:link,
a:visited{
  color: #0952a4;
}
a:hover{
  opacity: 0.7;
}

.textLeft {
	text-align: left;
    line-height: 1.4;
}

.textCenter {
	text-align: center;
    line-height: 1.4;
}

.textRight {
	text-align: right;
    line-height: 1.4;
}

.red {
	color: #ff0000;
}

.large {
	font-size: 120%;
}

dt {
  font-weight: normal;
}

strong {
    font-weight: bold;
}

.line {
    width: 100%;
    border-top: 2px dotted #666;
    padding-bottom: 5%;
    margin-top: 5%;
}

ul.block-ticket li:nth-of-type(odd){background-color:#FFF;}
ul.block-ticket li:nth-of-type(even){background-color:#F1FAFF;}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
SP
==================================================== */
@media screen and (max-width: 759.9px) {
.spnone{
	display:none;
}

#dirPathBlock,#anchorLinkBlock { background: #FFF;}
#dirPathBlock p,#anchorLinkBlock a{
	font-size: 10px;
	padding: 0 5px 5px 5px;
}

#container{
  font-size: 16px;
  position: relative;
  width: 100%;
}

.inner {
	width: 98%;
	margin: 0 auto;
	padding: 5% 1%;
}

/*title*/
.title {
	width: 100%;
	text-align: center;
    margin-bottom: 1em;
}

.title img {
    width: 50%;
}

  /*news*/
	#newsImportant {
		margin: 5px;
		display: flex;
		font-size: 11px;
	}
	#newsImportant dt {
		width: 72px;
		height: fit-content;
		background: #e62d2d;
		color: #FFF;
		text-align: center;
		border-radius: 3px;
		margin-top: 2px;
		padding: 3px 0;
	}
	#newsImportant dd {
		width: 100%;
		padding: 0 10px;
	}
	#newsImportant li {
		padding: 5px 3px 5px 12px;
		position: relative;
		font-size: 1.1em;
		font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
	}
	#newsImportant li:nth-of-type(n+2) {
		border-top: 1px dotted #ccc;
	}
	#newsImportant li:before {
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-left: 6px solid #555555;
		border-right: 0;
		position: absolute;
		top: 7px;
		left: 0;
	}


/*見出し*/
h1 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 1em;
}

h2 {
    display: flex;
    align-items: center;
     justify-content: center; /* 中央寄せ */
    text-align: center;
    font-weight: bold;
}

h2::before,
h2::after {
    content: '';
    width: 30px; /* 線の長さを指定 */
    height: 2px; /* 線の太さ */
    background: #2D69D0; /* 線の色 */
    margin: 0 5px; /* 文字との間隔 */
}
h3 {
  line-height: 1.4;
  font-weight: bold;
  padding: 0 .4em;
  margin-top: 2em;
  border-left: 5px solid #2D69D0;
}

h3.first {
  margin-top: 0;
}

/*tab*/
.tabs {
  display: flex;
  flex-wrap: wrap;
  margin-top: .5em;
}

.tab_label {
  color: #2D69D0;
  font-weight: bold;
  border: solid 2px #2D69D0;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  padding: .5em 0;
  margin: 0 .1em;
  text-align: center;
}

.tab_btn {
  background: #ff9900;
  color: #FFF;
  font-weight: bold;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  padding: .5em 0;
  margin: 0 .2em;
  text-align: center;
}

.tab_btn a {
  color: #FFF;
}

.tab_label:hover,
.tab_btn:hover {
  opacity: 0.75;
}

.tab_content {
  flex: 100%;
  display: none;
  overflow: hidden;
}

input[name="tab_switch"] {
  display: none;
}

.tabs input:checked + .tab_label {
  color: #fff;
  background-color: #2D69D0;
}
.tabs input:checked + .tab_label::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #2D69D0 transparent transparent transparent;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  transition: all 0.3s ease 0s;
}

#jan:checked ~ #jan_content,
#feb:checked ~ #feb_content,
#mar:checked ~ #mar_content,
#apr:checked ~ #apr_content,
#may:checked ~ #may_content,
#jun:checked ~ #jun_content,
#jul:checked ~ #jul_content,
#aug:checked ~ #aug_content,
#sep:checked ~ #sep_content,
#oct:checked ~ #oct_content,
#nov:checked ~ #nov_content,
#dec:checked ~ #mar_content {
  display: block;
}

.tab_content{
  position: relative;
  animation: fadeIn 1s ease;
  margin-top: 1em;
}

/*チケット*/
ul.block-ticket {
	padding: 0;
    margin-top: .5em;
}

ul.block-ticket li {
	line-height: 1.4;
	padding: 1em;
    margin-bottom: 1em;
    text-align: left;
    border: 2px solid #ccc;
}

ul.block-ticket li p {
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding-bottom: .5em;
    margin-bottom: .5em;
}

ul.block-ticket li dl {
}

ul.block-ticket li dl dt,
ul.block-ticket li dl dd {
    width: 100%;
}

ul.block-ticket li dl dd .dep {
    font-size: 14px;
    margin-top: .3em;
    text-align: center;
}

ul.list-ticket {
	padding: 0;
    margin-top: .5em;
}

ul.list-ticket li {
	line-height: 1.4;
    margin-bottom: .1em;
}

/*おすすめプラン*/
ul.block-plan {
    margin-top: .5em;
}

ul.block-plan li {
	line-height: 1.4;
	padding: 1em;
    margin-bottom: 1em;
    text-align: left;
    background: #003399;
    color: #FFF;
}

ul.block-plan li dl {
}

ul.block-plan li dl dt,
ul.block-plan li dl dd {
    width: 100%;
}

ul.block-plan li dl dd .dep {
    font-size: 14px;
    margin-top: .3em;
    text-align: center;
}

/*試合会場*/
.access {
    margin: 2em 0;
}

dl.unit  {
    width: 100%;
    margin-top: .1em;
}

dl.unit dt {
	width: 100%;
    padding: .4em .8em;
	line-height: 1.5;
    background: #D2E7FF;
}

dl.unit dd {
    width: 100%;
    padding: .4em .8em;
    background: #FFF;
    line-height: 1.5;
}

/*カルーセル*/
.slide-wrap {
  width: 100%;
  margin: .5em 0 1em;
  display: flex;
  overflow-x: auto; /* スクロールを自動に変更 */
}

.slide-box,
.slide-box3row {
  flex: 0 0 45%;
  margin-right: 3%;
  padding-bottom: .5rem;
}

/*tabiwaチケット*/
.ticketBox {
    border: 1px solid #CCC;
    background: #FFF;
    line-height: 1.4;
}

.ticketBox .ticketPhoto {
}

.ticketBox .ticketPhoto img {
    width: 100%
}

.ticketBox .ticketName {
    font-weight: bold;
    margin: .5em;
    padding-bottom: .5em;
    border-bottom: 1px dashed #ccc;
}

.ticketBox .ticketPoint {
    padding: 0 .5em .5em .5em;
}

/**アコーディオン**/
	.accordion {
		max-width: 100%;
		margin-top: .4em;
		background-color: #FFF;
	}
	.accordion summary {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		padding: .8em 1em;
		color: #FFF;
		cursor: pointer;
		background-color: #036eb8;
		border-radius: 5px;
	}
	.accordion summary::-webkit-details-marker {
		display: none;
	}
	.accordion summary::after {
		transform: translateY(-25%) rotate(45deg);
		width: 10px;
		height: 10px;
		margin-left: 1em;
		border-bottom: 3px solid #FFF;
		border-right: 3px solid #FFF;
		content: '';
		transition: transform .3s;
	}
	.accordion[open] summary::after {
		transform: rotate(225deg);
	}
	.accordion .info {
		transform: translateY(-10px);
		opacity: 0;
		margin: 0;
		transition: transform .5s, opacity .5s;
	}
	.accordion[open] .info {
		transform: none;
		opacity: 1;
	}
    .accordion .info .spot01 {
        background: #6ac7e9;
        color: #FFF;
        display: block;
        text-align: center;
        padding: .2em .3em .3em;
        margin-top: .2em;
	}
    
    .accordion .info .spot02 {
        background: #ff71b7;
        color: #FFF;
        display: block;
        text-align: center;
        padding: .2em .3em .3em;
        margin-top: .2em;
	}

/*注意事項*/
ul.guideList {
	margin: .5em 0;
}

ul.guideList li {
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1em;
    margin-left: 1em;
    text-align: left;
}

ul.guideList li:last-child {
	padding-bottom: 0;
}

ul.guideList li:before {
	content: '●';
}

ul.guideList li.no1,
ul.guideList li.no2,
ul.guideList li.no3,
ul.guideList li.no4,
ul.guideList li.no5,
ul.guideList li.no6,
ul.guideList li.no7 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1.5em;
    margin-left: 1.5em;
}

ul.guideList li.no1:before {
	content: '1．';
}

ul.guideList li.no2:before {
	content: '2．';
}

ul.guideList li.no3:before {
	content: '3．';
}

ul.guideList li.no4:before {
	content: '4．';
}

ul.guideList li.no5:before {
	content: '5．';
}

ul.guideList li.no6:before {
	content: '6．';
}

ul.guideList li.no7:before {
	content: '7．';
}

ul.guideList li.kome {
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1em;
    margin-left: 1em;
}

ul.guideList li.kome:before {
	content: '※';
}

ul.guideList li.kome1 {
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3.6em;
    margin-left: 3.6em;
}

ul.guideList li.kome1:before {
	content: '（※1）';
}

ul.guideList li.kome2 {
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3.6em;
    margin-left: 3.6em;
}

ul.guideList li.kome2:before {
	content: '（※2）';
}

ul.guideList li.kome3 {
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3.6em;
    margin-left: 3.6em;
}

ul.guideList li.kome3:before {
	content: '（※3）';
}

ul.guideList li span {
	color: #F00;
}

/*list横並び*/
.itemList2,
.itemList3,
.itemList4,
.itemList2btn,
.stepitemList3 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.itemList2 > div,
.itemList3 > div,
.itemList4 > div {
  width: 50%;
  height: auto;
  align-self: stretch;  
  padding: 10px;
  text-align: left;
}

.itemList2btn > div {
  width: 100%;
  height: auto;
  padding: 0 5px;
}

.stepitemList3 > div {
  width: 100%;
  height: auto;
  padding: 0 5px;
  margin-top: 2em;
}

.itemList2,
.itemList3,
.itemList4 > div img {
  width: 100%;
  height: auto;
}

.itemList4 > div p {
  line-height: 1.4;
  margin-top: .3em;
}

*, *:before, *:after {
	box-sizing: border-box;
}

/*ボタン*/
.Btn {
  color: #fff;
  width: 100%;
  margin-top: .5em;
  text-align: center;
  background: #003399;
  border-radius: 30px;
  padding: .5em 1em;
  position: relative; /* 追記 */
}

.Btn a {
	color: #fff;
}

.Btn span {
  font-size: 80%;
  font-weight: normal;
}

.Btn::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
}

.Btn_white {
  color: #003399;
  width: 90%;
  margin: .5em auto 0;
  text-align: center;
  background: #FFF;
  border: 1px solid #003399;
  border-radius: 30px;
  padding: .5em 1em;
  position: relative; /* 追記 */
}

.Btn_white a {
	color: #003399;
}

.Btn_white::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  font-weight: bold;
}

ul.block-plan li dl dd .Btn_white {
    width: 100%;
}

.Btn_gray {
  color: #fff;
  width: 100%;
  margin: 1em auto;
  text-align: center;
  background: #666    ;
  border-radius: 5px;
  padding: 6% 2%;
  position: relative; /* 追記 */
}

.Btn_gray::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

/*footer*/
#footer {
	background-color: #F0F5FA;
}

#footer .inner {
	width: 96%;
	margin: 0 auto;
	padding: 2% 2%;
}

#footer .inner ul {
	font-size: 11px;
	line-height: 1.4;
    text-align: left;
}

#footer .inner ul li {
    display: inline-block;
    width: 46%;
	padding: 2% 0;
}

#footer .inner ul li:last-child {
    border-right: none;
}

#footer .copy {
	background-color: #0952a4;
    color: #FFFFFF;
    font-size: 9px;
    text-align: center;
    padding: 2% 0;
}

/*pagetop*/
#pagetop {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
}
#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 3em;
  height: 3em;
  background-color: rgba(255,255,255,.5);
  border:solid 1px #152a8c;
  border-radius: 50vh;
}
#pagetop a::after {
  content: '';
  width: 7px;
  height: 7px;
  border-style: solid;
  border-width: 0 6px 9px 6px;
  border-color: transparent transparent #152a8c transparent;
}


}




/*
PC
==================================================== */
@media screen and (min-width: 760px),print {
.pcnone{
	display:none;
}

#dirPathBlock,
#anchorLinkBlock{
	width: 100%;
	max-width:970px;
	min-width:760px;
	margin: 0 auto;
    padding-bottom: 10px;
	font-size: 12px;
}

#container{
  font-size: 16px;
  position: relative;
  z-index:1;
}

.inner {
	width: 1080px;
	margin: 0 auto;
	padding: 30px 0;
}

/*title*/
.title {
	width: 100%;
	text-align: center;
    margin-bottom: 1em;
}

.title img {
    width: 100%;
    max-width: 200px;
}

/*news*/
  #newsImportant{
	width: 100%;
	max-width: 970px;
	margin: 5px auto;
	display: flex;
	font-size: 12px;
	padding:8px;
}
#newsImportant dt{
	width: 72px;
    height: fit-content;
	background: #e62d2d;
	color: #FFF;
	text-align: center;
	border-radius: 3px;
	margin-top: 1px;
	padding: 3px 0;
}
#newsImportant dd{
	width: 100%;
	padding: 0 10px;
}
#newsImportant li{
	padding: 3px 3px 3px 12px;
	position: relative;
	font-size:13px;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
}
#newsImportant li:nth-of-type(n+2){border-top: 1px dotted #ccc;}
#newsImportant li:before{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 6px solid #555555;
	border-right: 0;
    position: absolute;
	top: 7px;
	left: 0;
}

/*見出し*/
h1 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 1em;
}

h2 {
    display: flex;
    align-items: center;
     justify-content: center; /* 中央寄せ */
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: .3em;
}

h2::before,
h2::after {
    content: '';
    width: 50px; /* 線の長さを指定 */
    height: 2px; /* 線の太さ */
    background: #2D69D0; /* 線の色 */
    margin: 0 10px; /* 文字との間隔 */
}

h3 {
  font-size: 24px;
  font-weight: bold;
  padding: 0 .3em;
  margin-top: 3em;
  border-left: 5px solid #2D69D0;
}

h3.first {
  margin-top: 0;
}

/*tab*/
.tabs {
  display: flex;
  flex-wrap: wrap;
  margin-top: .5em;
}

.tab_label {
  color: #2D69D0;
  font-weight: bold;
  border: solid 2px #2D69D0;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  padding: .5em 0;
  margin: 0 .2em;
  text-align: center;
}

.tab_btn {
  background: #ff9900;
  color: #FFF;
  font-weight: bold;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  padding: .5em 0;
  margin: 0 .2em;
  text-align: center;
}

.tab_btn a {
  color: #FFF;
}

.tab_label:hover,
.tab_btn:hover {
  opacity: 0.75;
}

.tab_content {
  flex: 100%;
  display: none;
  overflow: hidden;
}

input[name="tab_switch"] {
  display: none;
}

.tabs input:checked + .tab_label {
  color: #fff;
  background-color: #2D69D0;
}
.tabs input:checked + .tab_label::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #2D69D0 transparent transparent transparent;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  transition: all 0.3s ease 0s;
}

#jan:checked ~ #jan_content,
#feb:checked ~ #feb_content,
#mar:checked ~ #mar_content,
#apr:checked ~ #apr_content,
#may:checked ~ #may_content,
#jun:checked ~ #jun_content,
#jul:checked ~ #jul_content,
#aug:checked ~ #aug_content,
#sep:checked ~ #sep_content,
#oct:checked ~ #oct_content,
#nov:checked ~ #nov_content,
#dec:checked ~ #mar_content {
  display: block;
}

.tab_content{
  position: relative;
  animation: fadeIn 1s ease;
  margin-top: 1em;
}

/*チケット*/
ul.block-ticket {
    margin-top: .5em;
}

ul.block-ticket li {
	line-height: 1.4;
	padding: 1em;
    margin-bottom: 1em;
    text-align: left;
    border: 2px solid #ccc;
}

ul.block-ticket li p {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding-bottom: .5em;
    margin-bottom: .5em;
}

ul.block-ticket li dl {
    display: flex;
    flex-wrap: wrap;
}

ul.block-ticket li dl dt {
    width: 70%;
}

ul.block-ticket li dl dd {
    width: 30%;
}

ul.list-ticket {
	padding: 0;
    margin-top: .5em;
}

ul.list-ticket li {
	line-height: 1.4;
    margin-bottom: .1em;
}

/*おすすめプラン*/
ul.block-plan {
    margin-top: .5em;
}

ul.block-plan li {
	line-height: 1.4;
	padding: 1em;
    margin-bottom: 1em;
    text-align: left;
    background: #003399;
    color: #FFF;
}

ul.block-plan li dl {
    display: flex;
    flex-wrap: wrap;
}

ul.block-plan li dl dt {
    width: 70%;
}

ul.block-plan li dl dd {
    width: 30%;
}

ul.block-plan li dl dd .dep {
    font-size: 14px;
    margin-top: .3em;
    text-align: center;
}

/*試合会場*/
.access {
    margin: 2em 0;
}

dl.unit {
    width: 100%;
    max-width: 1080px;
    margin: .1em auto 0;
    display: table;
}

dl.unit dt {
	width: 20%;
    padding: .5em 1em;
    display: table-cell;
	line-height: 1.5;
    background: #D2E7FF;
}

dl.unit dd {
    width: 80%;
    padding: .5em 1em;
    background: #FFF;
    display: table-cell;
    line-height: 1.5;
    
}

/*カルーセル*/
.slide-wrap {
  width: 100%;
  padding: 0;
  margin: .5em 0 1em;
  display: flex;
  flex-wrap: wrap;
}

.slide-box {
  width: 25%;
  padding-right: 1rem;
}

.slide-box:nth-child(4n) {
  padding-right: 0;
}

.slide-box:nth-child(-n+4) {
  margin-top: 0;
}

.slide-box3row {
  width: 33.33%;
  padding-right: 1rem;
}

.slide-box3row:nth-child(4n) {
  padding-right: 0;
}

.slide-box3row:nth-child(-n+4) {
  margin-top: 0;
}

/*tabiwaチケット*/
.ticketBox {
    border: 2px solid #CCC;
    background: #FFF;
    line-height: 1.4;
}

.ticketBox .ticketPhoto {
}

.ticketBox .ticketPhoto img {
    width: 100%
}

.ticketBox .ticketName {
    font-weight: bold;
    margin: .5em;
    padding-bottom: .5em;
    border-bottom: 1px dashed #ccc;
    /*height: 56px;*/
}

.ticketBox .ticketPoint {
    padding: 0 .5em .5em .5em;
}

/*アコーディオン*/
	.accordion {
		max-width: 100%;
		margin-top: .5em;
		background-color: #FFF;
	}
	.accordion summary {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		padding: .8em 1em;
		color: #FFF;
		cursor: pointer;
		background-color: #036eb8;
		border-radius: 5px;
	}
	.accordion summary::-webkit-details-marker {
		display: none;
	}
	.accordion summary::after {
		transform: translateY(-25%) rotate(45deg);
		width: 13px;
		height: 13px;
		margin-left: 1em;
		border-bottom: 3px solid #FFF;
		border-right: 3px solid #FFF;
		content: '';
		transition: transform .3s;
	}
	.accordion[open] summary::after {
		transform: rotate(225deg);
	}
	.accordion .info {
		transform: translateY(-10px);
		opacity: 0;
		margin: 0;
		padding: .2em 0;
		transition: transform .5s, opacity .5s;
	}
	.accordion[open] .info {
		transform: none;
		opacity: 1;
	}
    
	.accordion .info p.spot01 {
        background: #6ac7e9;
        color: #FFF;
        padding: .3em .3em .3em 1.6em;
        margin-top: .2em;
	}
    
    .accordion .info p.spot02 {
        background: #ff71b7;
        color: #FFF;
        padding: .3em .3em .3em 1.6em;
        margin-top: .2em;
	}

/*注意事項*/
ul.guideList {
	padding: 0;
    margin: .5em 0;
}

ul.guideList li {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1em;
    margin-left: 1em;
    text-align: left;
}

ul.guideList li:last-child {
	padding-bottom: 0;
}

ul.guideList li:before {
	content: '●';
}

ul.guideList li.no1,
ul.guideList li.no2,
ul.guideList li.no3,
ul.guideList li.no4,
ul.guideList li.no5,
ul.guideList li.no6,
ul.guideList li.no7 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1.5em;
    margin-left: 1.5em;
}

ul.guideList li.no1:before {
	content: '1．';
}

ul.guideList li.no2:before {
	content: '2．';
}

ul.guideList li.no3:before {
	content: '3．';
}

ul.guideList li.no4:before {
	content: '4．';
}

ul.guideList li.no5:before {
	content: '5．';
}

ul.guideList li.no6:before {
	content: '6．';
}

ul.guideList li.no7:before {
	content: '7．';
}

ul.guideList li.kome {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -1em;
    margin-left: 1em;
}

ul.guideList li.kome:before {
	content: '※';
}

ul.guideList li.kome1 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3.6em;
    margin-left: 3.6em;
}

ul.guideList li.kome1:before {
	content: '（※1）';
}

ul.guideList li.kome2 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3.6em;
    margin-left: 3.6em;
}

ul.guideList li.kome2:before {
	content: '（※2）';
}

ul.guideList li.kome3 {
	list-style: none;
	line-height: 1.4;
	padding-bottom: 8px;
	text-indent: -3.6em;
    margin-left: 3.6em;
}

ul.guideList li.kome3:before {
	content: '（※3）';
}

ul.guideList li span {
	color: #F00;
}

/*list横並び*/
.itemList2,
.itemList3,
.itemList4,
.itemList2btn,
.stepitemList3 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.itemList2 > div {
  width: 50%;
  height: auto;
  align-self: stretch;  
  padding: 10px;
  text-align: center;
}

.itemList2btn > div {
  width: 50%;
  height: auto;
  align-self: stretch;  
  padding: 0 5px;
  text-align: center;
}

.itemList3 > div,
.stepitemList3 > div {
  width: 33.33333%;
  height: auto;
  align-self: stretch;  
  padding: 10px;
}

.itemList4 > div {
  width: 25%;
  height: auto;
  align-self: stretch;  
  padding: 10px;
}

.itemList2,
.itemList3,
.itemList4 > div img {
  width: 100%;
  height: auto;
}

.itemList4 > div p {
  line-height: 1.4;
  margin-top: .3em;
}

/*ボタン*/
.Btn {
  color: #fff;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background: #003399;
  border-radius: 30px;
  padding: .5em 1em;
  position: relative; /* 追記 */
}

.Btn a {
	color: #fff;
}

.Btn::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  font-weight: bold;
}

.Btn_white {
  color: #003399;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  background: #FFF;
  border: 1px solid #003399;
  border-radius: 30px;
  padding: .5em 1em;
  position: relative; /* 追記 */
}

.Btn_white a {
	color: #003399;
}

.Btn_white::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  font-weight: bold;
}

ul.block-plan li dl dd .Btn_white {
    width: 100%;
}

.Btn_gray {
  color: #fff;
  width: 80%;
  margin: 1em auto;
  text-align: center;
  background: #666;
  border-radius: 5px;
  padding: 20px 30px;
  position: relative; /* 追記 */
}

.Btn_gray::after {
  content: "＞";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

/*footer*/
#footer {
	background-color: #F0F5FA;
}

#footer .inner {
	width: 990px;
	margin: 0 auto;
	padding: 20px 0;
}

#footer .inner ul {
	font-size: 13px;
	line-height: 1.4;
    text-align: center;
}

#footer .inner ul li {
    display: inline-block;
	padding: 0 6px;
	border-right: 1px solid #CCC;
}

#footer .inner ul li:last-child {
    border-right: none;
}

#footer .copy {
	background-color: #0952a4;
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}

/*pagetop*/
#pagetop {
  display: none;
  position: fixed;
  right: 50px;
  bottom: 50px;
  cursor: pointer;
  z-index: 100;
}
#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  background-color: rgba(255,255,255,.5);
  border:solid 1px #152a8c;
  border-radius: 50vh;
}
#pagetop a::after {
  content: '';
  width: 7px;
  height: 7px;
  border-style: solid;
  border-width: 0 6px 9px 6px;
  border-color: transparent transparent #152a8c transparent;
}
#pagetop a:hover {
  background-color: #152a8c;
}
#pagetop a:hover::after {
border-width: 0 6px 9px 6px;
border-color: transparent transparent #fff transparent;
}


}