@charset "UTF-8";

/*-----------------------------------------------------------
  =Reset CSS
-----------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
}
*,*::after,*::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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, font, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,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{
	border: 0;
	font-family: inherit;
	/* font-size: 100%; */
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
	border-collapse: collapse !important;
}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section  {
	display: block;
}
:focus {
	outline: 0;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse !important;
	border-spacing: 0;
}
caption, th, td  {
	font-weight: normal;
	text-align: left;
}
blockquote, q  {
	quotes: "" "";
}
blockquote:before,blockquote:after,q:before,q:after {
	content: "";
}
a img  {
	border: 0 !important;
}
audio, canvas, video  {
	display: inline-block;
	max-width: 100%;
	display: inline;
	zoom: 1;
}
embed, iframe, object {
	max-width: 100%;
}
video {
	max-width: 100%;
	height: auto;
}
html  {
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
img {
	border: none;
	vertical-align:bottom;
	margin: 0;
	padding: 0;
	line-height: 1;
}
img {
	max-width: 100%;
	height: auto;
	display: inline-block;
}
h1,h2,h3,h4,h5 {
	font-size: 100%;
	font-weight: normal;
	line-height: 1;
}
button, fieldset, form, input, label, legend, select, textarea {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
	font-size: 100%;
}
input,textarea,select {
	font-family: inherit;
	font-size: 16px;
}
input[type="button"],input[type="text"],input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
	border-radius: 0;
	display: block;
	font: inherit;
	outline: none;
	width: 100%;
}
textarea {
	resize: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}
input[type=checkbox],input[type=radio] {
	display: none;
}
button, input[type=button],input[type=submit],label,select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
/* Link Style */
a {
	color: #222;
  text-decoration: none;
  transition: 0.4s ease all;
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
}
a:focus, a:active, a:hover {
	color: #222;
  text-decoration: none;
}
a:hover img {
  opacity: .7;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  zoom: 1;
}
@media (min-width: 769px){
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* Device View
-----------------------------------------------------*/
.viewPC {display: block;}
.viewTB {display: none;}
.viewPCTB {display: block;}
.viewSP {display: none;}
.viewTBSP {display: none;}
@media only screen and (max-width: 1024px) {
  .viewPC {display: none;}
  .viewTB {display: block;}
  .viewPCTB {display: block;}
  .viewSP {display: none;}
  .viewTBSP {display: block;}
}
@media only screen and (max-width: 768px) {
  .viewPC {display: none;}
  .viewTB {display: none;}
  .viewPCTB {display: none;}
  .viewSP {display: block;}
  .viewTBSP {display: block;}
}

/* grid-layout
-----------------------------------------------------*/
.grid-col-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
  row-gap: 4rem;
}
.grid-col-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4rem;
  row-gap: 6rem;
}
.grid-col-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 4rem;
  row-gap: 6rem;
}

@media only screen and (max-width: 960px) {
  .grid-col-2{
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-col-3{
    grid-template-columns: repeat(1, 1fr);
    row-gap: 3.2rem;
  }
  .grid-col-4{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.4rem;
    row-gap: 3.2rem;
  }
}
.flex-row{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.row-reverse{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-center{
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

* Margin  */
.mt00 { margin-top:  0px !important; }
.mt05 { margin-top:  5px !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }
.mt70 { margin-top: 70px !important; }
.mt80 { margin-top: 80px !important; }
.mt90 { margin-top: 90px !important; }
.mt100{ margin-top:100px !important; }
.mt110{ margin-top:110px !important; }
.mt120{ margin-top:120px !important; }

.mr00 { margin-right:  0px !important; }
.mr10 { margin-right: 10px !important; }
.mr20 { margin-right: 20px !important; }
.mr30 { margin-right: 30px !important; }
.mr40 { margin-right: 40px !important; }
.mr50 { margin-right: 50px !important; }
.mr60 { margin-right: 60px !important; }
.mr70 { margin-right: 70px !important; }
.mr80 { margin-right: 80px !important; }
.mr90 { margin-right: 90px !important; }
.mr100{ margin-right:100px !important; }
.mb00 { margin-bottom:  0px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb80 { margin-bottom: 80px !important; }
.mb90 { margin-bottom: 90px !important; }
.mb100{ margin-bottom:100px !important; }
.ml00 { margin-left:  0px !important; }
.ml10 { margin-left: 10px !important; }
.ml20 { margin-left: 20px !important; }
.ml30 { margin-left: 30px !important; }
.ml40 { margin-left: 40px !important; }
.ml50 { margin-left: 50px !important; }
.ml60 { margin-left: 60px !important; }
.ml70 { margin-left: 70px !important; }
.ml80 { margin-left: 80px !important; }
.ml90 { margin-left: 90px !important; }
.ml100{ margin-left:100px !important; }

/* Padding */
.pt00 { padding-top:  0px !important; }
.pt10 { padding-top: 10px !important; }
.pt20 { padding-top: 20px !important; }
.pt30 { padding-top: 30px !important; }
.pt40 { padding-top: 40px !important; }
.pt50 { padding-top: 50px !important; }
.pt60 { padding-top: 60px !important; }
.pt70 { padding-top: 70px !important; }
.pt80 { padding-top: 80px !important; }
.pt90 { padding-top: 90px !important; }
.pt100{ padding-top:100px !important; }
.pr00 { padding-right:  0px !important; }
.pr10 { padding-right: 10px !important; }
.pr20 { padding-right: 20px !important; }
.pr30 { padding-right: 30px !important; }
.pr40 { padding-right: 40px !important; }
.pr50 { padding-right: 50px !important; }
.pr60 { padding-right: 60px !important; }
.pr70 { padding-right: 70px !important; }
.pr80 { padding-right: 80px !important; }
.pr90 { padding-right: 90px !important; }
.pr100{ padding-right:100px !important; }
.pb00 { padding-bottom:  0px !important; }
.pb10 { padding-bottom: 10px !important; }
.pb20 { padding-bottom: 20px !important; }
.pb30 { padding-bottom: 30px !important; }
.pb40 { padding-bottom: 40px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb60 { padding-bottom: 60px !important; }
.pb70 { padding-bottom: 70px !important; }
.pb80 { padding-bottom: 80px !important; }
.pb90 { padding-bottom: 90px !important; }
.pb100{ padding-bottom:100px !important; }
.pl00 { padding-left:  0px !important; }
.pl10 { padding-left: 10px !important; }
.pl20 { padding-left: 20px !important; }
.pl30 { padding-left: 30px !important; }
.pl40 { padding-left: 40px !important; }
.pl50 { padding-left: 50px !important; }
.pl60 { padding-left: 60px !important; }
.pl70 { padding-left: 70px !important; }
.pl80 { padding-left: 80px !important; }
.pl90 { padding-left: 90px !important; }
.pl100{ padding-left:100px !important; }

/* List Style
-----------------------------------------------------*/
.tx-caption {
	font-size: 1.4rem;
	line-height: 1.5;
}
.tx-bold {
	font-weight: 700;
}
.paragraph-1 li {
	font-size: 1.4rem;
	letter-spacing: 0;
	line-height: 1.4;
	padding: 0 0 0 1em;
	text-indent: -1em;
}
.paragraph-1 li:nth-of-type(n+2) {
	margin-top: .4rem;
}
.paragraph-2 li {
	font-size: 1.4rem;
	letter-spacing: 0;
	line-height: 1.4;
	padding: 3px 0 3px 2em;
	text-indent: -2em;
}
.paragraph-2 li:nth-of-type(n+2) {
	margin-top: .4rem;
}
.caption-list {
	margin-top: 1.2rem;
}
.caption-list li {
	font-size: 1.4rem;
	padding-left: 1.8rem;
	line-height: 1.44;
	position: relative;
}
.caption-list li:before {
	content: "※";
	left: 0;
	position: absolute;
	top: 0;
}
.caption-list li:nth-of-type(n+2) {
	margin-top: .4rem;
}
.disc-list li {
	padding-left: 1.6rem;
	line-height: 1.6;
	position: relative;
}
.disc-list li:before {
	content: '';
	width: 6px;
	height: 6px;
	background-color: var(--color-primary);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 8px;
}
@media only screen and (max-width: 767px) {
	.tx-caption {
		font-size: 1.2rem;
	}
	.paragraph-1 li {
		font-size: 1.2rem;
	}
	.paragraph-1 li:nth-of-type(n+2) {
		margin-top: .4rem;
	}
	.paragraph-2 li {
		font-size: 1.2rem;
	}
	.caption-list li {
		font-size: 1.2rem;
	}
	.disc-list li {
		padding-left: 1rem;
	}
	.disc-list li:before {
		width: 4px;
		height: 4px;
	}
}

.disc-list li:nth-of-type(n+2) {
	margin-top: .6rem;
}
.num-list {
	counter-reset: number;
}
.num-list li {
	padding-left: 1.8rem;
	line-height: 1.44;
	position: relative;
}
.num-list li::before {
	color: var(--color-primary);
	position: absolute;
	top: 0;
	left: 0;
	counter-increment: number;
	display: inline-block;
	content: counter(number) '.';
	font-weight: 700;
}
.num-list li:nth-of-type(n+2) {
	margin-top: .8rem;
}
.circle-num-list {
	counter-reset: number;
}
.circle-num-list li {
	padding-left: 3.2rem;
	position: relative;
}

.circle-num-list li::before {
	counter-increment: number;
	content: counter(number);
	background-color: #d09c43;
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	font-weight: 500;
	width: 24px;
	height: 24px;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.3rem;
}
.circle-num-list li:nth-of-type(n+2) {
	margin-top: .8rem;
}
@media screen and (min-width: 768px) {
	.circle-num-list li {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
@media screen and (max-width: 767px) {
	.circle-num-list li {
		display: block;
	}
}


/* Animation
---------------------------------*/
/* Animation */
.animated {
  visibility: hidden;
}
.bounceIn,.bounceInLeft, .bounceInRight, .bounceInDown,.bounceInUp,
.fadeIn, .fadeInLeft, .fadeInRight,.fadeInDown,.fadeInUp,.fadeInUpDelay,
.zoomInUp,.zoomInDown, .zoomIn,
.flip,.flipInX,.flipInY,
.lightSpeedIn,
.tada,.wobble,.shake,.rubberBand{
  visibility: visible;
}
.delay-01s { -webkit-animation-delay:0.1s; animation-delay:0.1s; }
.delay-02s { -webkit-animation-delay:0.2s; animation-delay:0.2s; }
.delay-03s { -webkit-animation-delay:0.3s; animation-delay:0.3s; }
.delay-04s { -webkit-animation-delay:0.4s; animation-delay:0.4s; }
.delay-05s { -webkit-animation-delay:0.5s; animation-delay:0.5s; }
.delay-06s { -webkit-animation-delay:0.6s; animation-delay:0.6s; }
.delay-07s { -webkit-animation-delay:0.7s; animation-delay:0.7s; }
.delay-08s { -webkit-animation-delay:0.8s; animation-delay:0.8s; }
.delay-09s { -webkit-animation-delay:0.9s; animation-delay:0.9s; }
.delay-1s  {  -webkit-animation-delay:1s; animation-delay:1s; }
.delay-2s  {  -webkit-animation-delay:2s; animation-delay:2s; }
.delay-3s  {  -webkit-animation-delay:3s; animation-delay:3s; }
.delay-4s  {  -webkit-animation-delay:4s; animation-delay:4s; }
.delay-5s  {  -webkit-animation-delay:5s; animation-delay:5s; }
.delay-6s  {  -webkit-animation-delay:6s; animation-delay:6s; }
.list-fadein li{
  opacity:0;
  transition: 2s;
}
.list-fadein li.anime-fadein{
  opacity: 1;
  /* filter:none; */
}
