@charset "utf-8";
/* ============================================================ */
/* 基本設定 */
/* ============================================================ */
html {
}

body {
	color: var(--white);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 2.0;
	text-align: center;
	-webkit-text-size-adjust: none;
}

._gnav-show_ {
	overflow-y: hidden;
	height: 100%;
}

.wrapper {
	font-size: 1.8rem;
	position: relative;
	z-index: 1;
	text-align: left;
	overflow: hidden;
	font-weight: 400;
	line-height: 2.0;
	letter-spacing: 1.8px;
	background: linear-gradient(90deg, #001B25 0%, rgba(0, 38, 53, 0) 100%) #002635;
}

.sp_view {
	display: none !important;
}

img {
	width: 100%;
}

:root{
  --red: #EA0038;
  --blue: #00A7EA;
  --white: #fff;
  --black: #252525;
	--gray: #CFCFCF;
	--line-white: rgba(255, 255, 255, 0.5);
	--bg-navy: #002635;
	--bg-h2: 1px;
}


/* ============================================================ */
/* リンク設定 */
/* ============================================================ */
a {
	text-decoration: none;
	color: var(--blue);
	line-height: 1.4;
}

a:hover {
}

a .__txt {
  background: linear-gradient(0deg, var(--blue), var(--blue)) no-repeat right bottom / 0 var(--bg-h2);
  transition: background-size 350ms;
  padding-bottom: 1px;
}

a:hover .__txt ,
a:focus-visible .__txt {
  background-size: 100% var(--bg-h2);
  background-position-x: left;
}


a img {
}

a:hover img {
	opacity: 1;
}

a[href*="tel:"] {
	cursor: default;
	color: var(--white);
}

a[href*="tel:"]:hover .__txt {
	background: none;
}


/* link-opacity */
.link-opacity {
	transition: all .4s;
}

.link-opacity:hover {
	opacity: 0.7;
}

/* link-arrow */
.link-arrow {
	display: flex;
	line-height: 1.5;
}

.link-arrow__ico {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 8px;
	height: 15px;
	margin: 4px 15px 0 0;
	color: var(--blue);
}


/* テキストスタイル
------------------------------------------------------------ */
.txt_bold {
	font-weight: 600;
}

.txt_mincho {
	font-family: 'Noto Serif JP', serif;
}


/* アニメーション
------------------------------------------------------------ */
/*.fade-up {
  opacity: 0;
}

.fadeUp ,
.fade-up.is-active {
  opacity: 1;
  animation: fadeupFromBottom 1s forwards;
  transform: translateY(50px);
	animation-fill-mode: forwards;
}

@keyframes fadeupFromBottom {
  to {
    transform: translateY(0);
  }
}

.fade-up02 {
	animation-delay: 0.2s;
}

.fade-up04 {
	animation-delay: 0.4s;
}*/

