@charset "UTF-8";

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 10px; }
body { color: #333; font-family: "Noto Sans JP", メイリオ, Meiryo, 'ＭＳ ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif; font-size: 1.6rem; font-optical-sizing: auto; font-weight: 400; font-style: normal; line-height: 1.5; -webkit-text-size-adjust: 100%; }
img { border: 0; vertical-align: top; -ms-interpolation-mode: bicubic; }
a { outline: none; }
a:link { color: #0A80B6; text-decoration: underline; }
a:visited { }
a:hover { text-decoration: none; transition: all 0.3s ease; }
a:hover img { opacity: 0.8; transition: all 0.3s ease; }
button { background: transparent; border: none; appearance: none; cursor: pointer; outline: none; }
.clearfix::after { content: ''; display: block; clear: both; }

ul, ol { list-style: none; }


.lato {
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

body {
  position: relative;
  overflow-x: hidden;
}
main {
  padding-top: 100px; /* globalHeader height */
}
.inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-center { text-align: center; }


@media screen and (max-width: 1200px) {
  .inner {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 1000px) {
  body { position: unset; font-size: 1.5rem; }
  body.menu-open { height: 100%; overflow: hidden; }

  main {
    padding-top: 60px; /* globalHeader height */
  }
}

.btn01 {

}
.btn01 a {
  padding: 0 5px 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: solid 1px #C3C3C3;
  color: #333;
  font-size: 1.6rem;
  text-decoration: none;
}
.btn01 a::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(/img/common/arrow_or.svg);
  transition: all .2s;
}
.btn01 a:hover::after {
  transform: translateX(5px);
}

@media screen and (max-width: 767px) {
}


/* --------------------------------------------------
	globalHeader
-------------------------------------------------- */
#globalHeader {
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: solid 1px #C3C3C3;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  /*z-index: 999;*/
  transition: all .5s;
}
#globalHeader.active {
  transform: none;
} 
#globalHeader>.inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#globalHeader .h-logo a {
  display: flex;
  align-items: center;
}
#globalHeader .h-logo img {
  width: 320px;
}
.menu-open #globalHeader {
  background: #fff;
}
#globalNavi {
  height: 100%;
}
#globalNavi a {
  width: 100%;
  color: #333;
  text-decoration: none;
  transition: all .3s;
}
#globalNavi a:hover {
  color: #ea5703;
}
#globalNavi>ul {
  display: flex;
  height: 100%;
}
#globalNavi>ul>li {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
#globalNavi>ul>li>a {
  padding: 3px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: solid 1px #333333;
  letter-spacing: 0.1em;
}
#globalNavi>ul>li:last-of-type>a {
  border-right: none;
}
#globalNavi>ul>li>a>span {
  margin-top: auto;
  display: block;
  font-size: 1.4rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
}
#globalNavi .submenu {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  left: 0;
}
#globalNavi .submenu li {
  margin-bottom: 1px;
}
#globalNavi .submenu li.sp {
  display: none;
}
#globalNavi ul li.sp{display:none;}
#globalNavi .submenu li a {
  padding: 14px 16px;
  width: 240px;
  /*width: 210px;*/
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: 500;
}
#globalNavi .submenu li a::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(/img/common/arrow_or.svg) no-repeat center/contain;
  transition: all .3s;
}
@media screen and (max-width: 1000px) {
  #globalHeader {
    height: 60px;
  }
  #globalHeader .h-logo img {
    height: 38px;
    width: auto;
  }
  #globalNavi {
    display: none;
    
    overflow: scroll;
    width: 100%;
    padding: 20px 20px 40px;
    background: #f6f6f6;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 999;
  }
  #globalNavi>ul {
    display: block;
    height: auto;
  }
  #globalNavi>ul>li {
    background: #fff;
    margin-bottom: 5px;
    flex-wrap: wrap;
  }
  #globalNavi>ul>li:hover::before {
    content: none;
  }
  #globalNavi>ul>li>a {
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-shrink: 0;
    border-right: none;
  }
  #globalNavi>ul>li:hover>a {
    background: inherit;
  }
  #globalNavi > ul > li.has-li.open a {
    border-bottom: solid 1px #ededed;
  }
  #globalNavi>ul>li>a::after {
    content: '';
    margin-left: auto;
    margin-right: 0;
    display: block;
    width: 24px;
    height: 24px;
    background: url(/img/common/arrow_or.svg);
    transition: all .2s;
  }
  #globalNavi > ul > li.has-li > a::after {
    background: url(/img/common/plus.svg);
    transition: all .3s;
  }
  #globalNavi > ul > li.has-li.open > a::after {
    background: url(/img/common/minus.svg);
    transform: rotate(180deg);
  }
  #globalNavi .submenu {
    width: 100%;
    background: #fff;
    box-shadow: none;
    position: static;
  }
  #globalNavi .submenu li {
    margin-bottom: 0;
    border-bottom: solid 1px #ededed;
  }
  #globalNavi .submenu li a {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  #globalNavi .submenu li.sp {
    display: block;
  }
  #globalNavi ul li.sp{display:block;}
}
@media screen and (max-width: 767px) {
}


/* --------------------------------------------------
	globalFooter
-------------------------------------------------- */
#globalFooter {
  padding: 120px 0;
  background: #333;
  color: #fff;
}
#globalFooter a {
  color: #fff;
  text-decoration: none;
}
#globalFooter .flex-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#globalFooter .left p {
  margin: 20px 0 30px;
}
#globalFooter .left .mark {
  padding: 16px 20px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
}
#globalFooter .left .mark img {
  width: auto;
  height: 50px;
}
#globalFooter .right .footer-menu {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
#globalFooter .right .footer-menu li {
  font-size: 1.8rem;
  font-weight: bold;
}
#globalFooter .right .footer-menu li li {
  margin-bottom: 28px;
}
#globalFooter .right .footer-menu .submenu {
  margin-top: 20px;
  padding-left: 10px;
}
#globalFooter .right .footer-menu .submenu li {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  width: 140px;
}
#globalFooter .right .footer-menu .submenu li a {
  display: flex;
  align-items: center;
  gap: 7px;
}
#globalFooter .right .footer-menu .submenu li a::before {
  content: '';
  display: block;
  width: 8px;
  height: 1px;
  background: #fff;
}
#globalFooter .right .footer-menu .sub-flex {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
#globalFooter .footer-btm {
  margin-top: 37px;
  padding-top: 37px;
  border-top: solid 1px #fff;
}
#globalFooter .footer-btm ul {
  display: flex;
  justify-content: flex-end;
  
}
#globalFooter .footer-btm ul a {
  padding: 0 24px;
  border-right: solid 1px #fff;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
}
#globalFooter .copyright {
  margin-top: 20px;
  text-align: right;
  color: #fff;
  font-size: 1.4rem;
}

@media screen and (max-width: 1200px) {
  #globalFooter .left .mark img {
    height: 36px;
  }
  #globalFooter .right .footer-menu {
    gap: 40px;
  }
  #globalFooter .right .footer-menu li {
    font-size: 1.6rem;
  }
  #globalFooter .right .footer-menu .submenu li {
    font-size: 1.4rem;
    width: 130px;
  }
}
@media screen and (max-width: 1000px) {
  #globalFooter {
    padding: 80px 0;
  }
  #globalFooter .right {
    display: none;
  }
  #globalFooter .footer-btm {
    margin-top: 30px;
  }
  #globalFooter .footer-btm ul {
    justify-content: center;
  }
  #globalFooter .footer-btm ul a {
    padding: 0 10px;
  }
  #globalFooter .footer-btm ul li:last-of-type a {
    border-right: none;
  }
  #globalFooter .copyright {
    margin-top: 40px;
    text-align: center;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  #globalFooter {
    padding: 60px 0;
  }
  #globalFooter .flex-box {
    display: flex;
    flex-direction: column;
  }
  #globalFooter .left .mark {
    padding: 16px;
  }
  #globalFooter .left .mark img {
    height: 30px;
  }
}


/* --------------------------------------------------
	オーバーレイ + スマートフォンメニュー
-------------------------------------------------- */

#overlay {}
a#contact_menu { display: none; }
a#sp_menu { display: none; }

@media screen and (max-width: 1000px) {
  #overlay { width: 100vw; height: 0; background: rgba(0,0,0,0.5); position: fixed; top: 0; left: 0; z-index: 100; }
  #overlay.open { height: 100vh; }
  
  a#contact_menu { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; position: fixed; right: 60px; top: 0; z-index: 999; }
  a#contact_menu img { width: 50%; filter: brightness(0) saturate(100%) invert(33%) sepia(37%) saturate(3701%) hue-rotate(8deg) brightness(104%) contrast(98%); }
  
  a#sp_menu { width: 60px; height: 60px; background: #ea5703; color: #fff; font-size: 12px; text-align: center; text-decoration: none; line-height: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; position: fixed; top: 0; right: 0; z-index: 999; }
  a#sp_menu span { margin: 0 auto; width: 30px; height: 2px; background: #fff; transition: all 0.3s; }
  
  a#sp_menu.open span:nth-of-type(1) { transform: translateY(8px) rotate(-45deg); }
  a#sp_menu.open span:nth-of-type(2) { opacity: 0; }
  a#sp_menu.open span:nth-of-type(3) { transform: translateY(-8px) rotate(45deg); }
}


/* --------------------------------------------------
	下層ページ
-------------------------------------------------- */
#subtitle {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-image: url(/img/common/subtitle.jpg);
}
#subtitle::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 24%,rgba(255, 255, 255, 0.3) 80%);
}
#subtitle .inner {
  height: 100%;
  display: flex;
  align-items: center;
}
#subtitle h1 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
  font-size: 5.2rem;
  line-height: 1.0;
  position: relative;
  z-index: 1;
}
#subtitle h1 span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2.0rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

#path {
  padding: 16px 0;
  border-bottom: solid 1px #d3d3d3;
}
#path ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 6px;
  font-size: 1.4rem;
}
#path ul li {
  margin-right: 20px;
}
#path ul li + li {
  margin-left: 20px;
  position: relative;
}
#path ul li + li::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  left: -28px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #acacac;
  border-right: 1px solid #acacac;
  transform: rotate(45deg);
}
#path ul a {
  text-decoration: none;
  color: #333;
}
/*
#page {
  padding: 100px 0;
}
#page section {
  margin-bottom: 60px;
}
#page section section {
  margin: 30px 0;
}
#page h2 {
  margin: 0 0 50px;
  padding-bottom: 14px;
  border-bottom: solid 4px #F0F0F0;
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
#page h2 span {
  color: #0A80B6;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
#page h3 {
  margin: 0 0 20px;
  font-size: 2.4rem;
  font-weight: bold;
}
#page p {
  margin: 1.6rem 0;
}
*/

@media screen and (max-width: 1000px) {
  #subtitle {
    height: 200px;
  }
  #subtitle::before {
    background-size: cover;
    background-position: top center;
  }
  #subtitle h1 {
    font-size: 3.0rem;
  }
  #subtitle h1 span {
    font-size: 1.4rem;
  }
  /*
  #page section {
    margin-bottom: 40px;
  }
  #page section section {
    margin: 20px 0;
  }
  #page h2 {
    margin-bottom: 30px;
    font-size: 3.0rem;
  }
  #page h3 {
    margin-bottom: 10px;
    font-size: 2rem;
  }
  */
}
@media screen and (max-width: 767px) {
  #path {
    padding: 12px 0;
  }
  #path ul {
    font-size: 1.2rem;
  }
}

/* --------------------------------------------------
	アニメーション
-------------------------------------------------- */
.delay-time01{ animation-delay: 0.1s; }
.delay-time02{ animation-delay: 0.2s; }
.delay-time03{ animation-delay: 0.3s; }
.delay-time04{ animation-delay: 0.4s; }
.delay-time05{ animation-delay: 0.5s; }
.delay-time06{ animation-delay: 0.6s; }
.delay-time07{ animation-delay: 0.7s; }
.delay-time08{ animation-delay: 0.8s; }
.delay-time09{ animation-delay: 0.9s; }
.delay-time10{ animation-delay: 1.0s; }

.nowfadeIn {
  opacity: 0;
}
.nowfadeIn.action {
	animation-name: fadeInAnime;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	transition-timing-function: ease-in;
	position: static;
}
.fadeIn{
	opacity: 0;
}
.fadeIn.action {
	animation-name: fadeInAnime;
	animation-duration: 0.6s;
	animation-fill-mode: forwards;
	transition-timing-function: ease-in;
	position: static;
}
@keyframes fadeInAnime { 
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}


.nowfadeUp {
  opacity: 0;
}
.nowfadeUp.action {
	animation-name: fadeUpAnime;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	transition-timing-function: ease-in;
	position: static;
}
.fadeUp {
	opacity: 0;
}
.fadeUp.action {
	animation-name: fadeUpAnime;
	animation-duration: 0.6s;
	animation-fill-mode: forwards;
	transition-timing-function: ease-in;
	position: static;
}
@keyframes fadeUpAnime { 
	from{
		opacity: 0;
		transform: translateY(30px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}

.nowfadeDown {
  opacity: 0;
}
.nowfadeDown.action {
	animation-name: fadeDownAnime;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	transition-timing-function: ease-in;
	position: static;
}
.fadeDown {
	opacity: 0;
}
.fadeDown.action {
	animation-name: fadeDownAnime;
	animation-duration: 0.6s;
	animation-fill-mode: forwards;
	transition-timing-function: ease-in;
	position: static;
}
@keyframes fadeDownAnime { 
	from{
		opacity: 0;
		transform: translateY(-30px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}

.nowfadeRight {
	opacity: 0;
}
.nowfadeRight.action {
	animation-name: fadeRightAnime;
	animation-duration: 0.6s;
	animation-fill-mode: forwards;
	transition-timing-function: ease-in;
	position: static;
}
.fadeRight {
	opacity: 0;
}
.fadeRight.action {
	animation-name: fadeRightAnime;
	animation-duration: 0.6s;
	animation-fill-mode: forwards;
	transition-timing-function: ease-in;
	position: static;
}
@keyframes fadeRightAnime { 
	from{
		opacity: 0;
		transform: translateX(-30px);
	}
	to{
		opacity: 1;
		transform: translateX(0);
	}
}

.nowfadeLeft {
	opacity: 0;
}
.nowfadeLeft.action {
	animation-name: fadeLeftAnime;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	transition-timing-function: ease-in;
	position: static;
}
.fadeLeft {
	opacity: 0;
}
.fadeLeft.action {
	animation-name: fadeLeftAnime;
	animation-duration: 0.6s;
	animation-fill-mode: forwards;
	transition-timing-function: ease-in;
	position: static;
}
@keyframes fadeLeftAnime { 
	from{
		opacity: 0;
		transform: translateX(30px);
	}
	to{
		opacity: 1;
		transform: translateX(0);
	}
}


/* --------------------------------------------------
	loading
-------------------------------------------------- */
 #loading {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
#loading .loadingLogo {
  display: none;
  width: 70%;
  max-width: 600px;
  position:absolute;
  transform-origin: center;
}
#loading .loadingLogo.active {
  animation: zoomOut 0.8s ease-in forwards;
}
@keyframes zoomOut {
  0%{
    opacity: 1;
    transform: (1);
  }
  100% { 
    opacity: 0;
    transform: scale(3);
  }
} 