/* ================================
  E&C 2023-02
================================ */
@import url(https://use.fontawesome.com/releases/v5.0.11/css/all.css);
/* -------------------------------- 
  reset / base
-------------------------------- */
*, *:before, *:after {
  box-sizing: inherit;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  background-color: #fff;
  /*font-family: "Raleway", "Helvetica", "Arial", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif;*/
	 /*font-family:"72 Brand Variable", Arial, Helvetica, sans-serif;*/
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-feature-settings: "palt";
}
main {
  display: block; /* IE11 */
  margin-bottom: 60px;
}
article {
  margin-top: 60px;
}
html, body, h1, p, table, th, td, dd, figcaption, figure {
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4 {
  line-height: 1.3;
}
h2, h3, h4 {
  margin: 0;
  padding: 1.2em 0 0;
}
h1, h2, h3 {
  font-weight: normal;
}
p {
  letter-spacing: 0.025em;
	line-height: 1.4em;
}
main p {
  margin: 0;
  padding: 1em 0 0;
  line-height: 1.7;
}
ul {
  list-style: disc;
  margin: 0;
  padding: 10px 0 0 1.2em;
}
ul ul {
  list-style: circle;
}
ul li {
  margin: 0 0 10px;
  padding: 0;
}
nav ul, .splide ul {
  list-style: none;
  padding: 0;
}
nav li, .splide li {
  margin: 0;
}
nav ul a {
  display: inline-block;
  text-decoration: none;
}
i {
  margin-right: 6px;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
a {
  transition: all 0.3s ease;
  color: #aa001a;
}
a img {
  border: none;
  outline: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
br {
  letter-spacing: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
label {
  cursor: pointer;
}
input, textarea, select {
  font: 100%;
}
input[type="button"], input[type="submit"] {
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Zen Old Mincho', serif;
}
input::-webkit-input-placeholder, input::placeholder, textarea::placeholder {
  font-size: 16px;
}
sup, sub {
  position: relative;
  height: 0;
  line-height: 1;
  vertical-align: baseline;
}
sup {
  bottom: 1ex;
}
sub {
  top: .5ex;
}
video {
  background: #000;
  top: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 960px), print {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* -------------------------------- 
  etc
-------------------------------- */
.pT0 {
  padding-top: 0 !important;
}
.pB0 {
  padding-bottom: 0 !important;
}
.taC {
  text-align: center !important;
}
.taR {
  text-align: right !important;
}
.taL {
  text-align: left !important;
}
.fRed {
  color: #aa001a;
}
.fBlu {
  color: #6f90a1;
}
.fS {
  font-size: 0.8em;
}
.fM {
  font-size: 1.2em;
}
.fBig {
  font-size: 2rem;
}
.fEng {
  font-family: 'Caveat', cursive;
}
.inlineBlk {
  display: inline-block;
  text-align: inherit;
}
@media screen and (max-width: 959px) {
  .mbPB0 {
    padding-bottom: 0 !important;
  }
}
/* table
-------------------------------- */
@media screen and (max-width: 959px) {
  table.tblRes th, table.tblRes td {
    display: block;
    width: 100%;
    text-align: left;
  }
}
/* -------------------------------- 
  main
-------------------------------- */
/* ページ余白
-------------------------------- */
@media screen and (min-width: 960px), print {
  main {
    margin-bottom: 50px;
  }
  .secBox {
    padding-bottom: 3rem;
  }
}
/* ページタイトル
-------------------------------- */
/* 一文字ずつ表示 */
.txtAnime span {
  opacity: 0;
}
.txtAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* -------------------------------- 
  見出し
-------------------------------- */
.titleBox {
  background: url("../img/index_img/top_leaf.png")no-repeat;
  background-position: top right;
  background-size: 60%;
}
.titleSec {
  margin-left: 5%;
  padding: 60px 0px 20px;
}
.titleSec h2 {
  color: #10596d;
  font-weight: bold;
  font-size: 28px;
}
.titleSec div {
  position: relative;
  color: #3690a8;
  font-size: 18px;
}
.titleSec div::before {
  content: '';
  position: absolute;
  left: 0;
  border-bottom: solid 1px #3690a8;
  animation: border_anim 1s linear forwards;
  bottom: -3px;
}
.titleSec div::after {
  content: "";
  display: block;
  width: 155px;
  height: 4px;
  background-color: #3690a8;
  position: absolute;
  border-radius: 2px;
  bottom: -5px;
}
@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .titleBox {
    background-size: auto;
  }
  .titleSec {
    margin-left: 15%;
    padding: 0px 0px 40px;
  }
  .titleSec h2 {
    font-size: 64px;
  }
  .titleSec div {
    font-size: 30px;
  }
  .titleSec div::before {
    left: 0;
    bottom: -11px;
  }
  .titleSec div::after {
    width: 260px;
    height: 4px;
    bottom: -13px;
  }
}
/* -------------------------------- 
  上部へ戻る
-------------------------------- */
a#pageTop {
  position: fixed;
  bottom: 8%;
  right: 5%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease-in;
  z-index: 99;
	background-color: #004098;
	border: 1px solid #fff;
	border-radius: 6px;
}

a#pageTop.fadein {
  opacity: 1;
}

#pageTopArrow {
    height: 15px;
    width: 15px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
	a#pageTop {
  width: 45px;
  height: 45px;
}
}


/* -------------------------------- 
  優先調整
-------------------------------- */
/* 表示切替 */
@media screen and (max-width: 767px) {
  .pcOn {
    display: none !important;
  }
}
@media screen and (min-width: 768px), print {
  .mbOn {
    display: none !important;
  }
}
/* -------------------------------- 
ヘッダー
-------------------------------- */
header {
  position: fixed;
  z-index: 999;
  background: #004098f0;
  width: 100%;
  top: 0;
	border-bottom: 1px solid #0000004a;
}
.headerwarp {
  height: 70px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
	
}
header .rogoBox {
  margin-left: 20px;
}
header .navigation ul {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 4%;
}
header .navigation ul li a {
  text-align: center;
  color: #29839b !important;
  text-decoration: none;
  padding: 0;
  width: 110px;
  font-size: 16px;
  letter-spacing: 0.05em;
  border-left: 1px solid #d1e1e5;
}
header .navigation ul li a span {
  position: relative;
}
header .navigation ul li a span::after {
  position: absolute;
  border-radius: 3px;
  bottom: -5px;
  left: 0;
  content: '';
  width: 0;
  height: 3px;
  background-color: #d1e1e5;
  transition: .3s;
}
header .navigation ul li:first-child a {
  border-left: 0px solid #29839b;
}
@media (hover: hover) {
  header .navigation ul li a span:hover:after {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 60px;
  }
  .headerwarp {
    height: 60px;
		background: #004098f0;
		border-bottom: 1px solid #0000004a;
		
  }
  header .navigation {
    margin: 20px 20px 0 0;
    border-radius: 40px;
  }
  header .navigation ul {
    padding: 10px;
  }
  header .navigation ul li a {
    width: 80px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px), print {
  header {
    width: 100%;
  }
  .navigation {
    display: block !important;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}
.logo {
  font-size: 1.25em;
  font-weight: bold;
}

body.active {
  height: 100%;
  overflow: hidden;
}
section {
  width: 100%;
  height: 30vh;
}
section:nth-child(even) {
  background-color: skyblue;
}
@media screen and (max-width: 767px) {
  header .rogoBox img {
    width: 120px;
    height: auto;
  }
}
.pcnavi ul {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__inner {
    display: none;
  }
  .pcnavi ul {
    display: flex;
    margin-right: 20px;
  }
  .pcnavi ul li a {
    color: #fff;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #ffffff2b; 
    border-radius: 6px;
    padding: 5px 40px;
    text-align: center;
    outline: none;
    transition: ease .2s;
	 margin-right:10px;
  }
  .pcnavi ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff63;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
  }
  .pcnavi ul li:last-child a {
    margin-right: 0;
  }
  .pcnavi ul li a span {
	z-index: 10;
    position: relative;
  }
/*
  .pcnavi ul li a:hover span {
    color: #000;
  }
*/
	.pcnavi ul li a:hover{
		padding: 5px 50px;
	}
  .pcnavi ul li a:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

/*上に上がる動き*/
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*ヘッダー消える*/
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
/* -------------------------------- 
  フッター
-------------------------------- */
footer{
	background: #f2f5fa;
}
footer #wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}
footer {
  margin-top: auto;
  color: #000;
  padding: 40px 0 40px;
  background-size: cover;
	text-align: center;
}
footer small {
	font-size:11px;
  position: relative;
	
}
footer .fBox {
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}
	footer .fBox a{
		display: block;
		width: 180px;
	}
@media screen and (max-width: 1200px) {
	footer .fBox {
		margin: 0 5%;
	}
}
@media screen and (max-width: 580px) {
  footer {
    margin-top: auto;
    padding: 20px 0 20px;
  }
	footer .fBox {
		flex-direction: column;
	}
	footer .fBox a {
		margin-bottom: 15px;
	}
	footer .fBox a img{
		height: auto;
	}
  footer small {
    border-top: 0px;
    margin-top: 0px;
	font-size:9px;	
}
}


.hamburger {
    display: block;
    height: 40px;
    margin-left: auto;
    position: relative;
    z-index: 10;
    width: 40px;
	  margin-bottom: 5px;
    border: none;
    background-color: transparent;
}
.hamburger.-active .hamburger__line {
    background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
}
.hamburger.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
}
.hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    background-color: #fff;
    transition: 0.4s;
}
.hamburger__line:before,
.hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #fff;
    transition: inherit;
}
.hamburger__line:before {
    top: -6px;
}
.hamburger__line:after {
    top: 6px;
}
.hamburger__text {
    position: absolute;
    bottom: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.header__nav-area {
    position: fixed;
    top: -200px;
    left: 0;
    z-index: -1;
    width: 100%;
    visibility: hidden;
    background: #0c141e;
    transition: 0.4s;
}
.header__nav-area.-active {
    top: 60px;
  visibility: visible;
}
.global-navigation {
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
}
.global-navigation__list > li {
    padding-bottom: 15px;
}
.global-navigation__list > li + li {
  margin-top: 20px;
}
.global-navigation__link {
  display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    transition: color 0.4s;
    font-size: 20px;
}
.global-navigation__link span::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
    margin-bottom: 3px;
    margin-left: 10px;
}
.global-navigation__link.-accordion {
    position: relative;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0;
}
.global-navigation__link.-accordion::after {
    content: '';
    display: block;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 2px;
    background-color: #ed3242;
    transform: translateY(-50%);
    transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    background-color: #ed3242;
    transform: translateY(-50%);
    
}
.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
.accordion {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.4s;
}
.accordion.-active {
    height: auto;
    padding-top: 30px;
    visibility: visible;
}
.accordion__list li {
    font-size: 0.75rem;
}
.accordion__list li + li {
     margin-top: 21px;
}
.accordion__link {
    color: #172e59;
}
