@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Sans+JP:wght@400;700&display=swap');

/** *********************** **/

/*
font-family: "Marcellus", serif;
	font-weight: 400;
font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
*/

/** *********************** **/

a[href^="tel:"] {
    pointer-events: none !important;
}
.sp_view,
.fixed_wrap,
.sp_menu_btn,
.sp_contact {
	display: none;
}
img {
	width: 100%;
	height: auto;
}

/** *********************** **/

.clearfix:after {
  content: "";
  display: block;
  clear: both;
} 
.clearfix:before {
  content: "";
  display: block;
  clear: both;
} 
.clearfix {
  display: block;
}

/** *********************** **/

#loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 999;
}

#loading-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(0,163,207,1.0);
  width: 100px;
  height: 30px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
}

#loading-content {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid rgba(0,163,207,0.5);
}

#loading-content:after {
  content: "";
  position: absolute;
  border: 3px solid rgba(0,163,207,1.0);
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}

#loading-content:before {
  content: "";
  position: absolute;
  border: 3px solid rgba(0,163,207,0.5);
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

#loading-content {
  border: 3px solid transparent;
  border-top-color: rgba(0,163,207,0.5);
  border-bottom-color: rgba(0,163,207,0.5);
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}

#loading-content:before {
  border: 3px solid transparent;
  border-top-color: rgba(0,163,207,1.0);
  border-bottom-color: rgba(0,163,207,1.0);
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
    -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 3s linear infinite;
}

#loading-content:after {
  border: 3px solid transparent;
  border-top-color: rgba(0,163,207,0.5);
  border-bottom-color: rgba(0,163,207,0.5);
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
    -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

@-webkit-keyframes loaders {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/** *********************** **/

body {
	min-width: 1100px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: #000;
	position: relative;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/** *********************** **/

header {
	width: 100%;
    min-width: 1100px;
	height: 95px;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
}
header.fixed {
	width: 100%;
	height: 95px;
	background: rgba(255,255,255,0.8);
	animation: menufixed 0.5s linear;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 30;
}
@keyframes menufixed {
  0% {
    top: -45px;
	opacity: 0;
  }
  100% {
    top: 0px;
	opacity: 1;
  }
}
header h1 {
	width: 251px;
	height: 55px;
	background: url("../pc_img/common/logo.png") no-repeat top center;
	background-size: 251px 55px;
	text-indent: -9876px;
    position: absolute;
    top: 20px;
    left: 25px;
}
header h1 a {
    width: 100%;
    height: 100%;
    display: block;
}

header ul {
    position: absolute;
    top: 20px;
    /* left: 185px;*/
	right: 200px;
}
header li {
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 55px;
    font-weight: 700;
    padding: 0 15px;
}
header li a:link,
header li a:visited,
header li a:active {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    transition: all 0.3s linear;
}
header li a:hover {
    width: 100%;
    height: 100%;
    display: block;
    color: #00a3cf;
    position: relative;
    transition: all 0.3s linear;
}
header li a::after {
    content: "";
    width: calc(100% + 6px);
    height: 2px;
    background: #00a3cf;
    position: absolute;
    bottom: 5px;
    left: -3px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
}
header li a:hover::after {
    transform: scale(1, 1);
}
header li a.active {
    color: #00a3cf;
    position: relative;
}
header li a.active::after {
    content: "";
    width: calc(100% + 6px);
    height: 2px;
    background: #00a3cf;
    position: absolute;
    bottom: 5px;
    left: -3px;
    transform: scale(1, 1) !important;
}

header div {
	width: 160px;
    height: 26px;
    position: absolute;
    top: 34px;
    right: 20px;
	z-index: 501;
}
header div a:link,
header div a:visited,
header div a:active {
    display: block;
    width: 160px;
    height: 26px;
	border-radius: 13px;
    border: 2px solid #00a3cf;
    background: #00a3cf;
    font-weight: 700;
    font-size: 15px;
    line-height: 21px;
	text-align: center;
    color: #fff;
    transition: all 0.3s;
}
header div a:hover {
    border: 2px solid #00a3cf;
    background: #fff;
	color: #00a3cf;	
    transition: all 0.3s;
}


/** *********************** **/

.cnt_bottom {
    /*width: 82.30%;*/
    width: 1100px;
    border-top: 1px solid #e1e4e9;
    border-bottom: 1px solid #e1e4e9;
    padding: 90px 15px 90px 15px;
    margin: 0 auto;
    text-align: center;
}
.cnt_bottom h3 {
	font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-align: left;
    position: relative;
    margin-bottom: 70px;
}
.cnt_bottom h3::before {
    content: "Contact";
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 1;
    color: #0059c4;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    margin-top: -7px;
}
.cnt_bottom p {
	font-size: 15px;
    line-height: 1;
    margin-bottom: 45px;
}
.cnt_bottom dl,
.cnt_bottom ul {
    display: inline-block;
    vertical-align: top;
}
.cnt_bottom dl {
    width: 360px;
}
.cnt_bottom dt {
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    margin-bottom: 12px;
}
.cnt_bottom dd {
    display: inline-block;
    vertical-align: top;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 33px;
    line-height: 37px;
    padding-left: 30px;
    position: relative;
}
.cnt_bottom dd::before {
    content: "";
    width: 20px;
    height: 37px;
    background: url("../common_img/tel_icn.svg") no-repeat center left;
    background-size: 20px auto;
    position: absolute;
    top: 0;
    left: 0;
}
.cnt_bottom ul {
    width: 360px;
}
.cnt_bottom li {
    width: 360px;
    height: 64px;
    border-radius: 32px;
}
.cnt_bottom li a {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    display: block;
    background: #0059c4;
    border: 2px solid #0059c4;
    font-weight: 700;
    font-size: 19px;
    line-height: 60px;
    color: #fff;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
}
.cnt_bottom li a:hover {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding-right: 10px;
    transition: all 0.3s;
}
.cnt_bottom li a::after {
    content: "";
    width: 26px;
    height: 26px;
    border-radius: 13px;
    border: 1px solid rgba(255,255,255,0.6);
    background: url("../common_img/arrow_white.svg") no-repeat center center;
    background-size: 9px 8px;
    position: absolute;
    top: 18px;
    right: 10px;
    opacity: 0;
    transition: all 0.3s;
}
.cnt_bottom li a:hover::after {
    content: "";
    width: 26px;
    height: 26px;
    border-radius: 13px;
    border: 1px solid rgba(255,255,255,0.6);
    background: url("../common_img/arrow_white.svg") no-repeat center center;
    background-size: 9px 8px;
    position: absolute;
    top: 18px;
    right: 20px;
    opacity: 1;
    transition: all 0.3s;
}

/** *********************** **/

footer {
	width: 100%;
}
footer div:nth-of-type(1) {
	width: 100%;
	background: url("../pc_img/common/footer_first_bg.jpg") no-repeat center center;
	background-size: cover;
	padding: 45px 0 70px 0;
	text-align: center;
	border-bottom: 1px solid #000;
	margin-bottom: 60px;
}
footer div:nth-of-type(1) h3 {
	width: 281px;
	background: url("../pc_img/common/footer_logo.png") no-repeat top center;
	background-size: 281px auto;
    padding-top: 150px;
    font-size: 13px;
    line-height: 1;
    margin: 0 auto 45px auto;
}
footer div:nth-of-type(1) li {
	width: 435px;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	padding: 0 45px 0 80px;
}
footer div:nth-of-type(1) li dl:nth-of-type(1) {
	margin-bottom: 45px;
}

footer div:nth-of-type(1) li dt {
	font-size: 18px;
	line-height: 26px;
	font-weight: 700;
	color: #fff;
	position: relative;
	margin-bottom: 14px;
}
footer div:nth-of-type(1) li:nth-of-type(2) dl:nth-of-type(1) dt:nth-of-type(1) {
	margin-bottom: 40px;
}

footer div:nth-of-type(1) li dt::after {
	content: "";
	width: 24px;
	height: 34px;
	background: url("../pc_img/common/footer_icn.png") no-repeat;
	background-size: 24px 34px;
	position: absolute;
	top: -2px;
	left: -35px;
}
footer div:nth-of-type(1) li dd {
	font-size: 15px;
	line-height: 25px;
	color: #fff;
}
footer div:nth-of-type(1) li dd span {
	position: relative;
}
footer div:nth-of-type(1) li dd span a:link,
footer div:nth-of-type(1) li dd span a:visited,
footer div:nth-of-type(1) li dd span a:active {
	display: inline-block;
	vertical-align: middle;
	width: 54px;
	height: 18px;
	border-radius: 9px;
	background: #fff;
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 13px;
	line-height: 18px;
	color: #00b3cb;
	text-align: center;
	margin-left: 10px;
	transition: all 0.3s linear;
	position: absolute;
	top: 2px;
}
footer div:nth-of-type(1) li dd span a:hover {
	display: inline-block;
	vertical-align: middle;
	width: 54px;
	height: 18px;
	border-radius: 9px;
	background: #00b3cb;
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 13px;
	line-height: 18px;
	color: #fff;
	text-align: center;
	margin-left: 10px;
	transition: all 0.3s linear;
	position: absolute;
	top: 2px;
}

/** *********************** **/

footer div:nth-of-type(2) {
	width: 1100px;
	margin: 0 auto 40px auto;
	font-size: 0;
	text-align: center;
}
footer div:nth-of-type(2) dl {
	display: inline-block;
	vertical-align: top;
	padding-right: 50px;
	text-align: left;
}
footer div:nth-of-type(2) dt {
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	margin-bottom: 20px;
}
footer div:nth-of-type(2) dt a:hover {
	color: #00a3cf;
	text-decoration: underline;
}
footer div:nth-of-type(2) dd {
	font-size: 14px;
	line-height: 24px;
}
footer div:nth-of-type(2) dd a:hover {
	color: #00a3cf;
	text-decoration: underline;
}

/** *********************** **/

.footer {
	width: 1100px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 50px;
}
.footer p {
	width: 186px;
	background: url("../pc_img/common/copyright_logo.png") no-repeat top center;
	background-size: 186px auto;
    padding-top: 100px;
    font-size: 10px;
    line-height: 1;
    margin: 0 auto 25px auto;
}
.footer small {
	font-family: "Marcellus", serif;
	font-weight: 400;
	font-size: 10px;
	line-height: 1;
	color: #000;
}

/** *********************** **/

#pagetop {
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 80;
}
#pagetop a {
	display: block;
	background: #000;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	position: relative;
	transition: all .3s ease;
}
#pagetop a::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	width: 12px;
	height: 12px;
	border: 2px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(25%) rotate(-45deg);
	position: absolute;
	top: 19px;
	left: 19px;
}
  
#pagetop a:hover {
	background-color: rgba(0,0,0,0.80);
	transition: all 0.3s linear;
}

/** *********************** **/

.topics_pass {
    /*width: 82.30%;*/
    width: 1100px;
    padding: 0 15px;
    margin: 0 auto 65px auto;
    text-align: right;
}
.topics_pass li {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	color: #0059c4;
	margin-right: 15px;
}
.topics_pass li:last-child {
    margin-right: 0;
}
.topics_pass li::after {
	content: ">";
	padding-left: 15px;
}
.topics_pass li:last-child::after {
	content: none;
}
.topics_pass li a:link,
.topics_pass li a:visited,
.topics_pass li a:active {
	color: #2d2d2d;
	text-decoration: underline;
}
.topics_pass li a:hover {
	color: #2d2d2d;
	text-decoration: underline;
}

/** *********************** **/

.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

/** *********************** **/

.TextTyping span {
	display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
 	content: "";
	animation: typinganime .8s ease infinite;
}

@keyframes typinganime{
	from{opacity:0}
	to{opacity:1}
}

/** *********************** **/
