@charset "UTF-8";

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,figure, figcaption, footer, header,
hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
*, *::before, *::after {
  box-sizing: border-box;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	line-height: 1;
}
body {
	color: #1b1b1b;
	background: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.06em;
  line-height: 1.6;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
a {
  color: #0776b0;
	text-decoration: none;
	transition: .2s;
}
.bold {
	font-weight: bold;
}


/*
  = 共通
-------------------------------------------------- */
.downAnime {
  opacity: 0;
	overflow: hidden;
}
.slideAnimeDownUp {
  animation-name:slideTextY100;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes slideTextY100 {
  from {
      transform: translateY(100%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}
.slideAnimeUpDown {
  animation-name:slideTextY-100;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes slideTextY-100 {
  from {
      transform: translateY(-100%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}
@keyframes slideTextX100 {
  from {
		transform: translateX(-100%);
    opacity: 0;
  }
  to {
		transform: translateX(0);
    opacity: 1;
  }
}

.fadeInUp {
  opacity: 0;
  transform: translateY(30%);
	transition: all .3s;
  /* transition: opacity .8s, transform .3s; */
}
.fadeInRight {
  opacity: 0;
  transform: translateX(90%);
	transition: all .5s;
  /* transition: opacity .8s, transform .4s; */
}
.fadeInLeft {
  opacity: 0;
  transform: translateX(-90%);
	transition: all .5s;
  /* transition: opacity .8s, transform .4s; */
}
.fadeInUp.is-show,
.fadeInRight.is-show,
.fadeInLeft.is-show {
  opacity: 1;
  transform: translateX(0);
}

.section {
	position: relative;
}
.section .txt {
	line-height: 2;
}
.section .notes {
	color: #13b5b1;
	line-height: 2;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  	.pc {
		display: block !important;
	}
	.sp {
		display: none !important;
	}
	#wrapper {
		min-width: 1120px;
		overflow: hidden;
	}
	.section .txt {
		font-size: 2rem;
	}
	.section .notes {
		font-size: 1.8rem;
	}	  
	.inner {
		width: 1120px;
		padding: 0 1rem;
		margin: 0 auto;
	}
	.delay05.is-show {
	  transition-delay: .5s;
	}
	.delay10.is-show {
	  transition-delay: 1s;
	}
}

/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	html {
		min-width: 300px;
		font-size: calc(100vw / 75);
	}
	body {
		max-width: 100%;
		font-size: 2.8rem;
		line-height: 1.8;
	}
	#wrapper {
		overflow: hidden;
	}
	.section .txt {
		font-size: 2.6rem;
	}
	.section .notes {
		font-size: 2.4rem;
	}
}

/*
  = header
-------------------------------------------------- */
.header {
  position: relative;
	z-index: 111;
}
.header .fixed_btn {
	position: fixed;
}
.header .fixed_btn ul {
	display: flex;
}
.header .fixed_btn li a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.02em;
}
.header .fixed_btn li.reserve a {
	color: #0776b0;
	background-color: #fff45c;
}
.header .fixed_btn li.official a {
	color: #fff;
	background-color: #0776b0;
}
.header .fixed_btn li a::after {
	content: "";
	position: relative;
	display: inline-block;
	margin-left: 1rem;
}
.header .fixed_btn li.reserve a::after {
	background: url(../img/icon_arrow01.svg) no-repeat;
	background-size: 100%;
}
.header .fixed_btn li.official a::after {
	background: url(../img/icon_arrow02.svg) no-repeat;
	background-size: 100%;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .header {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
    min-width: 1100px;
  }
  .header_in {
		width: 1120px;
		padding: 0 1rem;
    margin: 0 auto;
  }
  .header_logo {
    width: 34rem;
		padding-top: 2rem;
  }
	.header .fixed_btn {
		top: 0;
		right: 0;
	}
	.header .fixed_btn li {
		width: 24rem;
	}
	.header .fixed_btn li a {
		font-size: 1.8rem;
		height: 6rem;
	}
	.header .fixed_btn li a::after {
		width: 1.8rem;
		height: 1.8rem;
	}
	.header .fixed_btn li.reserve a:hover {
		background-color: #fced2a;
	}
	.header .fixed_btn li.official a:hover {
		background-color: #01638c;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.header {
		position: relative;
		height: 10.5rem;
  }
	.header::after {
		content: "";
		position: absolute;
		right: 1rem;
    top: -9rem;
    width: 16.4rem;
    height: 16.4rem;
		background: url(../img/parts_circle01.png) no-repeat;
		background-size: 100%;
	}
  .header_in {
		padding: 0 4rem;
  }
  .header_logo {
    width: 40rem;
		padding-top: 2.5rem;
  }
	.header .fixed_btn {
		width: 100%;
		bottom: 0;
		left: 0;
	}
	.header .fixed_btn li {
		width: 50%;
	}
	.header .fixed_btn li a {
		font-size: 3rem;
		height: 12rem;
	}
	.header .fixed_btn li a::after {
		width: 2.8rem;
		height: 2.8rem;
	}
}

/*
  = mv
-------------------------------------------------- */
.mv {
	position: relative;
	display: flex;
}
.mv::before {
	content: "";
	position: absolute;
	left: 0;
	background: url(../img/parts_circle02.png) no-repeat;
	background-size: 100%;
}
.mv .ttl_area .ttl {
	z-index: 2;
}
.mv .ttl_area .ttl .heading {
	position: relative;
}
.mv .img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.mv .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.mv {
		min-height: 52rem;
	}
	.mv::before {
		bottom: -5rem;
		width: 9.7rem;
		height: 19.4rem;
	}
	.mv .ttl_area {
		position: relative;
		width: 44.5%;
		background: url(../img/mv_bg.png) right 2.5rem top no-repeat;
		background-size: auto 100%;
		margin-top: 2.5rem;
	}
	.mv .ttl_area .ttl {
		position: absolute;
		top: 50%;
		left: calc(50% - 20rem);
		transform: translateY(-50%);
	}
	.mv .ttl_area .ttl .heading {
		width: 59rem;
	}
	.mv .img {
		width: 55.5%;
		height: 50rem;
		border-radius: 0 0 0 5rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.mv {
		flex-direction: column;
	}
	.mv::before {
		bottom: -3rem;
		width: 9.7rem;
		height: 19.4rem;
	}
	.mv .ttl_area {
		order: 2;
		position: relative;
		height: 43rem;
		background: url(../img/mv_bg_sp.png) left top no-repeat;
		background-size: 97% auto;
		margin-top: 4rem;
	}
	.mv .ttl_area .ttl {
		width: 60.5rem;
		margin: 0 auto;
	}
	.mv .img {
		order: 1;
		border-radius: 0 0 0 4.9rem;
		margin-left: 4rem;
	}
}


/*
  = title01
-------------------------------------------------- */
.title01 {
	position: relative;
	line-height: 1;
	text-align: center;
	z-index: 2;
}
.title01 .bg {
	display: inline-block;
	position: relative;
}
.title01 h2 {
	display: inline-block;
	position: relative;
}
.title01 h2 img {
	display: block;
}
.club .title01 .bg::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -3.8rem;
	left: 0;
	right: 0;
	margin: auto;
	background: url(../img/parts_club_02.png) no-repeat;
	background-size: 100%;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.title01 {
		margin-bottom: 1.3rem;
	}
	.schedule .title01 .bg {
		padding: 0 3.6rem 0 4.8rem;
	}
	.schedule .title01 .bg::before,
	.schedule .title01 .bg::after {
		width: 2.3rem;
		height: 3.4rem;
	}
	.schedule .title01 h2 img {
		width: 57.7rem;
	}
	.club .title01 h2 img {
		width: 50.8rem;
	}
	.club .title01 .bg::before {
		width: 8rem;
		height: 2.8rem;
	}
	.expo .title01 h2 img {
		width: 47.1rem;
	}
	.expo .title01 .bg {
		padding: 0 7.3rem 0 8rem;
	}
	.consul .title01 h2 img {
		width: 41.4rem;
	}
	.consul .title01 {
		margin-bottom: 4rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.title01 {
		margin-bottom: 2rem;
	}
	.schedule .title01 .bg::before,
	.schedule .title01 .bg::after {
		width: 2.9rem;
		height: 4.4rem;
	}
	.schedule .title01 h2 img {
		width: 61.6rem;
	}
	.club .title01 h2 img {
		width: 55.1rem;
	}
	.club .title01 .bg::before {
		top: -5.5rem;
		width: 9.7rem;
		height: 3.2rem;
	}
	.expo .title01 h2 img {
		width: 51.6rem;
	}
	.expo .title01 .bg {
		padding: 0 7.3rem 0 8rem;
	}
	.consul .title01 h2 img {
		width: 43.5rem;
	}
	.consul .title01 {
		margin-bottom: 4rem;
	}
}


/*
  = table01
-------------------------------------------------- */
.table01 {
	display: flex;
}
.table01 .ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #0776b0;
	background-color: #edf8fd;
	border-radius: 1rem;
}
.return .table01 .ttl {
	color: #8fc31f;
	background-color: #f2f9e2;
}
.table01 .detail {
	position: relative;
}
.table01 .detail::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.4rem;
	background: url(../img/table01_dots.png) repeat-x;
	background-size: 0.8rem 0.4rem;
}
.table01 .list01 li {
	position: relative;
}
.expo .table01 .list01 li {
	color: #0776b0;
}
.return .table01 .list01 li {
	color: #8fc31f;
}
.table01 .list01 li::before {
	content: "";
	position: absolute;
	left: 0;
	border-radius: 50%;
}
.expo .table01 .list01 li::before {
	background-color: #ceedfb;
}
.return .table01 .list01 li::before {
	background-color: #d6eca7;
}
.table01 .list01 li span {
	display: block;
	color: #1b1b1b;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.table01 {
		margin-bottom: 1rem;
	}
	.table01 .ttl {
		width: 10rem;
		font-size: 1.8rem;
		margin-right: 1rem;
	}
	.table01 .detail {
		width: calc(100% - 11rem);
		font-size: 1.8rem;
		padding: 0.5rem 1rem 1.5rem;
	}
	.club .table01 .detail {
		width: 35rem;
	}
	.table01 .list01 li {
		font-size: 1.8rem;
		padding-left: 1.8rem;
	}
	.table01 .list01 li + li {
		margin-top: 1.2rem;
	}
	.table01 .list01 li span {
		font-size: 1.5rem;
	}
	.table01 .list01 li::before {
		top: 1rem;
		width: 11px;
		height: 11px;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.table01 {
		margin-bottom: 2rem;
	}
	.table01 .ttl {
		width: 11.8rem;
		font-size: 2.6rem;
		margin-right: 1rem;
		border-radius: 1.2rem;
	}
	.table01 .detail {
		width: calc(100% - 12.8rem);
		padding: 0rem 1.5rem 1.8rem;
	}
	.table01 .detail::after {
		height: 0.6rem;
		background-size: 1.4rem 0.6rem;
	}
	.table01 .list01 li {
		line-height: 1.6;
		padding-left: 2.5rem;
	}
	.table01 .list01 li {
		margin-bottom: 1.5rem;
	}
	.table01 .list01 li span {
		font-size: 2.2rem;
	}
	.table01 .list01 li::before {
		top: 1.8rem;
		width: 1.4rem;
		height: 1.4rem;
	}
}

/*
  = imgCol
-------------------------------------------------- */
.imgCol figure {
	border-radius: 1rem;
	overflow: hidden;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.imgCol {
		display: flex;
		justify-content: space-between;
	}
	.imgCol figure {
		width: calc(100% / 2 - 1.2rem);
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.imgCol figure + figure {
		margin-top: 3rem;
	}
}

/*
  = schedule
-------------------------------------------------- */
.schedule .cont {
	background: repeating-linear-gradient(-45deg, #b8e3f5, #b8e3f5 1rem, #d4eef9 1rem, #d4eef9 2rem);
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
 .schedule {
	 margin-top: 1.5rem;
 }
 .schedule .cont {
	 padding: 3.6rem 0;
 }
 .schedule .cont .inner .img {
	 width: 99rem;
	 margin-left: auto;
 }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
.schedule {
 	 margin-top: 2rem;
  }
  .schedule .cont {
 	 padding: 5rem 0 5rem;
  }
  .schedule .cont .inner {
 	 padding: 0 2rem;
  }
}


/*
  = club
-------------------------------------------------- */
.club::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/parts_club_01.png) no-repeat;
	background-size: 100%;
	z-index: 2;
}
.club .cont .img {
	overflow: hidden;
}
.club .cont .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.club .cont .text_area {
	position: relative;
}
.club .cont .text_area::before,
.club .cont .text_area::after {
	content: "";
  position: absolute;
  background: url(../img/parts_circle01.png) no-repeat;
  background-size: 100%;
	z-index: -1;
}
.club .cont .text_area .txt {
	line-height: 2;
}
.club .btn a {
	position: relative;
	display: block;
	color: #1b1b1b;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	border-radius: 31.5rem;
}
.club .btn a::before {
	content: "";
	position: absolute;
	top: -0.7rem;
	left: -0.7rem;
	width: 100%;
	height: 100%;
	background: url(../img/parts_club_03.png) no-repeat;
	background-size: 100%;
	pointer-events: none;
}
.club .btn.clr01 a {
	background-color: #d7effb;
}
.club .btn.clr02 a {
	background-color: #fff799;
}
.club .btn a span {
	position: relative;
	display: inline-block;
}
.club .btn.clr01 a span::after {
	content: "";
	position: relative;
	display: inline-block;
	background: url(../img/icon_arrow01.svg) no-repeat;
	background-size: 100%;
}
.club .btn.clr02 a span::after {
	content: "";
	position: relative;
	display: inline-block;
	/*background: url(../img/icon_pdf.png) no-repeat;*/
	background-size: 100%;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.club::before {
		width: 100%;
		height: 3.4vw;
	}
	.club .title01 {
		position: absolute;
		top: 10rem;
		left: 0;
		right: 0;
		z-index: 2;
	}
	.club .cont {
		display: flex;
	}
	.club .cont .text_area {
		width: 50%;
		padding-top: 19rem;
		padding-left: calc((100vw - 1120px) / 2);
	}
	.club .cont .text_area::before,
	.club .cont .text_area::after {
		width: 19.4rem;
    height: 19.4rem;
	}
	.club .cont .text_area::before {
		top: 7.7rem;
    left: -11rem;
	}
	.club .cont .text_area::after {
		top: 29rem;
		right: -12.8rem;
	}
	.club .cont .text_area .txt {
		font-size: 2rem;
		margin-bottom: 3rem;
	}
	.club .cont .text_area .table01 {
		margin-bottom: 5.5rem;
	}
	.club .cont .text_area .table01 .ttl,
	.club .cont .text_area .table01 .detail {
		font-size: 2rem;
	}
	.club .cont .img {
		width: 50%;
		height: 63rem;
		padding-left: 1rem;
	}
	.club .cont .img img {
		border-radius: 0 0 0 5rem;
	}
	.club .btn {
		margin-left: 1rem;
	}
	.club .btn a {
		width: 42rem;
		height: 6.4rem;
		font-size: 2.2rem;
		padding: 1.3rem 0 2.2rem;
		margin-bottom: 2.7rem;
	}
	.club .btn.clr01 a span::after {
		width: 1.8rem;
		height: 1.8rem;
		margin-left: 1.4rem;
	}
	.club .btn.clr02 a span::after {
		width: 3.6rem;
		height: 2rem;
		margin-left: 0.7rem;
	}
	.club .btn a small {
		font-size: 1.8rem;
	}
	.club .btn.clr01 a:hover {
		background-color: #c0e8fd;
	}
	.club .btn.clr02 a:hover {
		background-color: #faee52;
	}

	.club .cont .text_area .downAnimeInner {
		margin-left: 1rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.club::before {
		width: 100%;
		height: 2.5rem;
		background-size: 133%;
	}
	.club .title01 {
		position: absolute;
		top: 11rem;
		left: 0;
		right: 0;
		z-index: 2;
	}
	.club .cont {
		display: flex;
		flex-direction: column;
		padding-top: 14rem;
	}
	.club .cont .text_area {
		order: 2;
		padding: 0 4rem;
	}
	.club .cont .text_area::before {
		top: -86rem;
    left: -6rem;
		width: 12rem;
    height: 12rem;
	}
	.club .cont .text_area::after {
		top: 10rem;
		right: -10rem;
		width: 19.4rem;
    height: 19.4rem;
	}
	.club .cont .text_area .txt {
		margin-bottom: 5rem;
	}
	.club .cont .text_area .table01 {
		margin-bottom: 7.3rem;
	}
	.club .cont .img {
		order: 1;
		margin-left: 4rem;
		margin-bottom: 5rem;
	}
	.club .cont .img img {
		border-radius: 0 0 0 5.4rem;
	}
	.club .btn {
		margin-left: 0.8rem;
	}
	.club .btn a::before {
		top: -1.1rem;
    left: -0.8rem;
	}
	.club .btn a {
		width: 100%;
		height: 10rem;
		font-size: 3.6rem;
		padding: 1.8rem 0 3rem;
		margin-bottom: 5rem;
	}
	.club .btn.clr01 a span::after {
		top: 0.3rem;
		width: 3.6rem;
		height: 3.6rem;
		margin-left: 1rem;
	}
	.club .btn.clr02 a span::after {
		width: 5rem;
    height: 2.8rem;
    margin-left: 1rem;
	}
	.club .btn a small {
		font-size: 2.8rem;
	}
}


/*
  = expo
-------------------------------------------------- */
.expo .cont {
	position: relative;
	background-color: #ceedfb;
}
.expo .cont::before {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	background: url(../img/parts_expo_03.png) repeat-x;
}
.expo .cont .img {
	box-shadow: 0.5rem 0.5rem 0 rgba(0,118,176,0.1);
	overflow: hidden;
}
.expo .cont .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.expo .cont .inner .box {
	position: relative;
	background-color: #fff;
}
.expo .cont .inner .box::before,
.expo .cont .inner .box::after {
	content: "";
	position: absolute;
	background: url(../img/parts_expo_04.png) no-repeat;
	background-size: 100%;
	z-index: 2;
}
.expo .cont .inner .box::after {
	transform: scale(-1,-1);
}
.expo .cont .inner .box .text_area .txt {
	line-height: 1.8;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.expo {
		margin-top: 7rem;
	}
	.expo .cont {
		padding-bottom: 5.8rem;
		margin-top: 6.4rem;
	}
	.expo .cont::before {
		height: 4.6rem;
		background-size: 1300px auto;
	}
	.expo .cont .img {
		position: absolute;
		top: 2.6rem;
		left: 0;
		width: 37.7%;
		height: 48rem;
		border-radius: 0 0 5rem 0;
	}
	.expo .cont .inner .box {
		padding: 2.5rem 4rem 4.5rem;
		border: 0.2rem solid #535353;
	}
	.expo .cont .inner .box::before,
	.expo .cont .inner .box::after {
		width: 6.6rem;
		height: 6.6rem;
	}
	.expo .cont .inner .box::before {
		top: -1.2rem;
		left: -1.2rem;
	}
	.expo .cont .inner .box::after {
		bottom: -1.2rem;
		right: -1.2rem;
	}
	.expo .cont .inner .box .text_area {
		width: 62.4rem;
		margin-left: auto;
	}
	.expo .cont .inner .box .text_area .txt {
		margin-bottom: 1.8rem;
	}
	.expo .imgCol {
		margin-top: 3rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.expo {
		margin-top: 4.5rem;
	}
	.expo .cont {
		padding: 2rem 0 7rem;
		margin-top: 8.5rem;
	}
	.expo .cont::before {
		height: 4.6rem;
		background-size: 200%;
	}
	.expo .cont .img {
		position: absolute;
		top: 5.5rem;
		left: 0;
		width: 69rem;
		border-radius: 0 0 7rem 0;
	}
	.expo .cont .inner {
		padding: 0 2rem;
	}
	.expo .cont .inner .box {
		padding: 3.5rem 3rem 3.8rem 4rem;
		border: 0.3rem solid #535353;
	}
	.expo .cont .inner .box::before,
	.expo .cont .inner .box::after {
		width: 8rem;
		height: 8rem;
	}
	.expo .cont .inner .box::before {
		top: -1.5rem;
		left: -2.8rem;
	}
	.expo .cont .inner .box::after {
		bottom: -1.5rem;
		right: -1.5rem;
	}
	.expo .cont .inner .box .text_area {
		margin-top: 71.5rem
	}
	.expo .cont .inner .box .text_area .txt {
		margin-bottom: 2rem;
	}
	.expo .imgCol {
		margin-top: 4rem;
	}
}


/*
  = consul
-------------------------------------------------- */
.consul::before,
.consul::after {
	content: "";
	position: absolute;
	z-index: -1;
}
.consul > .bg {
	position: relative;
}
.consul > .bg::before,
.consul > .bg::after {
	content: "";
  position: absolute;
  background: url(../img/parts_circle01.png) no-repeat;
  background-size: 100%;
	z-index: -1;
}
.consul::before {
	top: 0;
	left: 0;
	background: url(../img/parts_consul_03.png) no-repeat;
	background-size: 100%;
}
.consul::after {
	right: 0;
	bottom: 0;
	background: url(../img/parts_consul_04.png) no-repeat;
	background-size: 100%;
}
.consul .img {
	overflow: hidden;
}
.consul .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.consul .cont .box {
	position: relative;
	background-color: #edf8fd;
	outline: 0.3rem solid #fff;
	outline-offset: -0.5rem;
}
.consul .cont .box::before,
.consul .cont .box::after {
	content: "";
	position: absolute;
	background: url(../img/parts_consul_05.png) no-repeat;
	background-size: 100%;
	z-index: 2;
}
.consul .cont .box::after {
	transform: scale(-1,-1);
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.consul::before {
		width: 72.8rem;
		height: 8.1rem;
	}
	.consul::after {
		width: 69rem;
		height: 7.8rem;
	}
	.consul > .bg {
		padding: 10rem 0 13rem;
	}
	.consul > .bg::before,
	.consul > .bg::after {
		width: 19.4rem;
		height: 19.4rem;
	}
	.consul > .bg::before {
		top: 13.2rem;
		left: 43.5%;
	}
	.consul > .bg::after {
		bottom: -3.3rem;
		left: -10rem;
	}
	.consul .img {
		position: absolute;
		top: 0;
		right: 0;
		width: 50%;
		height: 46.4rem;
		border-radius: 0 0 0 5rem;
		z-index: 2;
	}
	.consul .cont01 {
		width: 49rem;
		margin-bottom: 5rem;
	}
	.consul .cont01 .txt {
		margin-bottom: 1rem;
	}
	.consul .cont01 .notes {
		margin-bottom: 3rem;
	}
	.consul .cont .box {
		padding: 2.5rem 4rem 3rem;
		border: 0.2rem solid #535353;
	}
	.consul .cont .box::before,
	.consul .cont .box::after {
		width: 6.6rem;
		height: 6.6rem;
	}
	.consul .cont .box::before {
		top: -1.2rem;
		left: -1.2rem;
	}
	.consul .cont .box::after {
		bottom: -1.2rem;
		right: -1.2rem;
	}
	.consul .cont .box h3 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
	.consul .cont .box li {
		margin-left: 1.5rem;
		text-indent: -1.6rem;
		line-height: 1.8;
	}
	.consul .cont .box li + li {
		margin-top: 1.7rem;
	}
	.consul .cont .box li a:hover {
		text-decoration: underline;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.consul::before {
		width: 100%;
		height: 8.4rem;
	}
	.consul::after {
		display: none;
	}
	.consul > .bg {
		padding: 11.5rem 0 16rem;
	}
	.consul > .bg::before,
	.consul > .bg::after {
		width: 19.4rem;
		height: 19.4rem;
	}
	.consul > .bg::before {
		top: 80.2rem;
    right: -10rem;
	}
	.consul > .bg::after {
		bottom: 2.7rem;
    left: -9.5rem;
	}
	.consul .img {
		border-radius: 0 0 0 5.4rem;
		margin-left: 4rem;
		margin-bottom: 5rem;
	}
	.consul .cont01 {
		margin-bottom: 4.8rem;
	}
	.consul .cont01 .text_area {
		padding: 0 4rem;
	}
	.consul .cont01 .txt {
		margin-bottom: 1.5rem;
	}
	.consul .cont01 .notes {
		margin-bottom: 4rem;
	}
	.consul .cont02 {
		padding: 0 2rem;
	}
	.consul .cont .box {
		padding: 3.5rem 4rem;
		border: 0.3rem solid #535353;
	}
	.consul .cont .box::before,
	.consul .cont .box::after {
		width: 8rem;
		height: 8rem;
	}
	.consul .cont .box::before {
		top: -1.5rem;
		left: -1.5rem;
	}
	.consul .cont .box::after {
		bottom: -1.5rem;
		right: -1.5rem;
	}
	.consul .cont .box h3 {
		font-size: 3rem;
		margin-bottom: 2rem;
	}
	.consul .cont .box li {
		margin-left: 2rem;
		text-indent: -2.8rem;
	}
	.consul .cont .box li + li {
		margin-top: 1.7rem;
	}
}


/*
  = return
-------------------------------------------------- */
.return {
	background-color: #cce198;
	background-image: linear-gradient(-90deg, #d6e7ad 50%, transparent 50%);
	background-size: 4rem 4rem;
}
.return .title02 {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 3;
}
.return .title02 h2 {
	color: #8fc31f;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	background: url(../img/return_h2_bg.png) no-repeat;
	background-size: 100% 100%;
	margin: 0 auto;
}
.return .img {
	overflow: hidden;
}
.return .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.return::after {
	content: "";
  position: absolute;
	right: 0;
  background: url(../img/parts_return_02.png) no-repeat;
  background-size: 100%;
  z-index: 3;
}
.return .inner .box {
	position: relative;
  background-color: #fff;
}
.return .inner .box::after {
	content: "";
  position: absolute;
  background: url(../img/parts_return_01.png) no-repeat;
  background-size: 100%;
  z-index: 2;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.return {
		padding: 9.5rem 0 5.5rem;
	}
	.return::after {
		top: 3.2rem;
		width: 23rem;
		height: 15.1rem;
	}
	.return .title02 {
		top: -5.3rem;
	}
	.return .title02 h2 {
		width: 60.8rem;
		height: 12.2rem;
		font-size: 3.4rem;
		padding: 2rem 0 6.2rem;
	}
	.return .img {
		position: absolute;
		top: 0;
		left: 0;
		width: 43.8%;
		height: 46.4rem;
		border-radius: 0 0 5rem 0;
		z-index: 2;
	}
	.return .inner .box {
		width: 73.5rem;
		padding: 3rem 4rem 5rem 14.7rem;
		margin-left: auto;
		border: 0.2rem solid #535353;
	}
	.return .inner .box::after {
		bottom: -1.2rem;
    right: -1.2rem;
		width: 6.6rem;
    height: 6.6rem;
	}
	.return .inner .box .table01:last-of-type {
		margin-bottom: 3rem;
	}
	.return .inner .box h3 {
		font-size: 2rem;
    margin-bottom: 1rem;
	}
	.return .inner .box .list02 {
		margin-left: 1.5rem;
    text-indent: -1.6rem;
    line-height: 1.8;
	}
	.return .inner .box .list02 li + li {
    margin-top: 0.8rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.return {
		padding: 0 0 6.5rem;
	}
	.return::after {
		top: 51rem;
    right: -4rem;
    width: 21.2rem;
    height: 12.8rem;
	}
	.return .title02 {
		top: -6.5rem;
	}
	.return .title02 h2 {
		width: 67rem;
		height: 13.3rem;
		font-size: 4rem;
		padding: 2.3rem 0 6.5rem;
	}
	.return .img {
		position: absolute;
		top: 0;
		left: 0;
		width: 68rem;
		border-radius: 0 0 6rem 0;
		z-index: 2;
	}
	.return .inner {
		padding: 48.5rem 2rem 0;
	}
	.return .inner .box {
		padding: 12rem 4rem 6.5rem;
		border: 0.3rem solid #535353;
	}
	.return .inner .box::after {
		bottom: -1.5rem;
		right: -1.5rem;
		width: 8rem;
		height: 8rem;
	}
	.return .inner .box .table01:last-of-type {
		margin-bottom: 4rem;
	}
	.return .inner .box h3 {
		font-size: 3rem;
		margin-bottom: 1.5rem;
	}
	.return .inner .box .list02 {
		margin-left: 2rem;
		text-indent: -2.8rem;
		line-height: 1.3;
	}
	.return .inner .box .list02 li + li {
		margin-top: 1.5rem;
	}
}


/*
  = reserve
-------------------------------------------------- */
.reserve_area{
	position: relative;
	background-color: #d4e9f4;
}
.reserve_area .cont {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	outline: 0.2rem solid #a3d5ef;
	outline-offset: -1rem;
}
.reserve_area .cont::before,
.reserve_area .cont::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	pointer-events: none;
}
.reserve_area .cont::before {
	top: 0;
}
.reserve_area .cont::after {
	bottom: 0;
	transform: scale(-1,-1);
}
.reserve_area .cont .in .msg {
	position: relative;
	display: inline-block;
	font-weight: bold;
	text-align: center;
	line-height: 1.45;
}
.reserve_area .cont .in .msg::before,
.reserve_area .cont .in .msg::after {
	content: "";
	position: absolute;
	bottom: 0;
}
.reserve_area .cont .in .msg::before {
	left: 0;
	background: url(../img/parts_reserve_02.png) no-repeat;
	background-size: 100%;
}
.reserve_area .cont .in .msg::after {
	right: 0;
	background: url(../img/parts_reserve_03.png) no-repeat;
	background-size: 100%;
}
.reserve_area .btn {
	text-align: center;
}
.reserve_area .btn a {
	position: relative;
	display: inline-block;
	letter-spacing: 0.02em;
	line-height: 1.2;
	background-color: #fff45c;
}
.reserve_area .btn a::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(../img/parts_reserve_04.png) no-repeat;
	background-size: 100%;
}
.reserve_area .btn a::after {
	content: "";
  position: relative;
  display: inline-block;
  margin-left: 1.5rem;
	background: url(../img/icon_arrow01.svg) no-repeat;
  background-size: 100%;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.reserve_area{
		padding: 3rem;
	}
	.reserve_area .cont {
		width: 100%;
		height: 34rem;
	}
	.reserve_area .cont::before,
	.reserve_area .cont::after {
		height: 50%;
		background: url(../img/parts_reserve_bg.png) no-repeat;
		background-size: 100%;
	}
	.reserve_area .cont .in .msg {
		font-size: 3.6rem;
		padding: 0 5.5rem;
		margin-bottom: 3.5rem;
	}
	.reserve_area .cont .in .msg::before,
	.reserve_area .cont .in .msg::after {
		width: 3.6rem;
		height: 5.5rem;
	}
	.reserve_area .btn a {
		width: 34.6rem;
		height: 9.4rem;
		font-size: 2.8rem;
		padding: 2.3rem 0 3.2rem;
	}
	.reserve_area .btn a::before {
		top: -0.7rem;
		left: -0.7rem;
	}
	.reserve_area .btn a::after {
		width: 2.5rem;
    height: 2.5rem;
	}
	.reserve_area .btn a:hover {
		background-color: #fced2a;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.reserve_area{
		padding: 5rem 2rem;
	}
	.reserve_area .cont {
		width: 100%;
		height: 42.2rem;
		outline-offset: -2rem;
	}
	.reserve_area .cont::before,
	.reserve_area .cont::after {
		height: 50%;
		background: url(../img/parts_reserve_bg_sp.png) no-repeat;
		background-size: 100%;
	}
	.reserve_area .cont .in .msg {
		font-size: 3.6rem;
		padding: 0 5rem 0 6.5rem;
		margin-bottom: 6rem;
	}
	.reserve_area .cont .in .msg::before,
	.reserve_area .cont .in .msg::after {
		width: 3.9rem;
		height: 5.9rem;
	}
	.reserve_area .btn a {
		width: 45rem;
		height: 12.5rem;
		font-size: 3.6rem;
		padding: 3rem 0 4.5rem;
	}
	.reserve_area .btn a::before {
		top: -1rem;
		left: -1rem;
	}
	.reserve_area .btn a::after {
		top: 0.3rem;
		width: 3.6rem;
		height: 3.6rem;
	}
}


/*
  = footer
-------------------------------------------------- */
.footer {
	position: relative;
}
.footer .footer_in {
	background-color: #005b81;
}
.footer .footer_in a {
	color: #fff;
}
.footer .footer_bottom .info {
	color: #fff;
	font-weight: normal;
	letter-spacing: 0.04em;
}
.footer .footer_bottom .sns_list {
	display: flex;
	align-items: center;
}
.footer .footer_bottom .sns_list li a {
	display: block;
}
.footer .copyright {
	color: #7d7d7d;
	letter-spacing: 0.04em;
	text-align: center;
}
.footer .pagetop {
	position: fixed;
	border-radius: 50%;
	background-color: #308eb6;
	transition: all 0.2s;
	cursor: pointer;
	z-index: 999;
}
.footer .pagetop::after {
	content: "";
	display: block;
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	border-style: solid;
	border-width: 0 1.1rem 1.9rem 1.1rem;
	border-color: transparent transparent #fff transparent;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.footer .footer_in {
		padding: 3.3rem 0;
	}
	.footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
	}
	.footer .footer_bottom {
		display: flex;
		align-items: center;
	}
	.footer .footer_bottom .footer_logo {
		width: 38rem;
		margin-right: 2.5rem;
	}
	.footer .footer_bottom .info {
		margin-right: 4rem;
		line-height: 1.8;
		font-size: 1.4rem;
	}
	.footer .footer_bottom .sns_list li {
		width: 3.3rem;
		height: 3.3rem;
		margin: 0 1rem;
	}
	.footer .footer_bottom .sns_list li.youtube {
		width: 3.7rem;
		height: 2.6rem;
	}
	.footer .footer_bottom .sns_list li a:hover {
		opacity: 0.85;
	}
	.footer .copyright {
		padding: 1.8rem 0;
		font-size: 1.4rem;
	}
	.footer .pagetop {
		right: 6rem;
		bottom: 3.5rem;
		width: 7rem;
		height: 7rem;
	}
	.footer .pagetop:hover {
		background-color: #3a84a2;
	}

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.footer {
		padding-bottom: 12rem;
	}
	.footer .footer_in {
		padding: 4.5rem 0;
	}
	.footer .footer_in .container {
		padding: 0;
	}
	.footer .footer_bottom .footer_logo {
		width: 50rem;
		margin: 0 auto 4rem;
	}
	.footer .footer_bottom .info {
		font-size: 2.4rem;
		margin-bottom: 3.5rem;
		line-height: 1.92;
		text-align: center;
	}
	.footer .footer_bottom .sns_list {
		justify-content: center;
	}
	.footer .footer_bottom .sns_list li {
		width: 5.8rem;
		margin: 0 2rem;
	}
	.footer .footer_bottom .sns_list li.youtube {
		width: 6.5rem;
	}
	.footer .footer_bottom .sns_list li img {
		width: 100%;
	}
	.footer .copyright {
		padding: 2.5rem;
		line-height: 2;
		font-size: 2rem;
	}
	.footer .pagetop {
		right: 2rem;
		bottom: 20.5rem;
		width: 9rem;
		height: 9rem;
	}
	.footer .pagetop::after {
		border-width: 0 1.35rem 2.3rem 1.35rem;
	}

}


/* = print
----------------------------------------------- */
@media print {
	html {
		width: 100%;
		zoom: 95%;
	}
	body {
		max-width: 1300px;
		margin: 0 auto;
	}
	#wrapper {
		overflow: visible;
	}
	.footer .pagetop {
		position: absolute;
		bottom: 4rem;
		right: 4rem;
	}
	.fadeIn_up {
		transform: translate(0, 0) !important;
    opacity: 1 !important;
	}
}
