@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400&display=swap');


/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,var,b,i,dl,dt,dd,ol,ul,li,fieldset,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}


/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font: 14px/1.9 "游ゴシック体","Yu Gothic",YuGothic,"Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Hiragino Sans","ヒラギノ角ゴシック","Noto Sans JP","メイリオ",Meiryo,-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
	letter-spacing: .07em;
  color: #5f5f5f;
  background: #f3f3f3;
}
#content,
.wrap {
	max-width: 1000px;
	margin: 0 auto;
}
a{
  color: #555;
	text-decoration: none;
}
a:hover{
  opacity: .7;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
p {
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
}
small {
	font-size: smaller;
}
ul,ol,dl {
	margin: 0;
}
ul li {
  list-style: none;
  margin-left: 0;
}
/* タイトル */
h2 {
  font-family: 'Cormorant SC', serif;
  text-transform: uppercase;
  font-size: 23px;
  color: #05368b;
  letter-spacing: .1em;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

@media screen and (max-width:768px) {
	*, *:before, *:after {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box
  }
  body {
    font-size: 14px;
  }
	#content,
  .wrap {
		width: 100%;
		padding-left: 20px;
    padding-right: 20px;
  }
  h2 {
    font-size: 20px;
  }
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
  position: fixed;
  z-index: 10000;
  width: 100%;
  top: 0;
  display: none;
  padding: 20px 5%;
  background-color: rgba(243, 243, 243, 0.5);
  box-sizing: border-box;
}
header .flex {
  max-width: 1200px;
}
/* inner-left */
header .inner-left {
  width: 30%;
  position: relative;
}
header .inner-left img {
  width: 200px;
  vertical-align: middle;
}
/* inner-right */
header .inner-right {
  width: 70%;
}
nav.gnav ul {
  text-align: right;
}
nav.gnav ul li {
  display: inline-block;
  padding: 0 12px;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Cormorant SC', serif;
  font-size: 13px;
  letter-spacing: 0.1em;
}
/*下線アニメーション*/
nav.gnav ul li .hover {
  position: relative;
  text-decoration: none;
}
nav.gnav ul li .hover::after {
  position: absolute;
  content: '';
  bottom: -7px;
  left: 0;
  width: 0;
  height: 1px;
  background: #5f5f5f;
  transition: all 0.3s ease 0s;
}
nav.gnav ul li .hover:hover {
  cursor: pointer;
}
nav.gnav ul li .hover:hover::after {
  width: 100%;
}

@media screen and (max-width:768px) {
  header .inner-left {
    width: 60%;
  }
  header .inner-left img {
    width: 150px;
  }
  /* ハンバーガーメニュー */
	nav.global-nav {
	    position: fixed;
	    right: -320px;
	    top: 0;
	    width: 270px;
	    height: 100vh;
	    padding-top: 40px;
	    background: #f3f3f3;
	    transition: all .2s ease-out;
	    z-index: 200;
	    overflow-y: auto;
	    padding: 80px 0px 0px 0px;
    }
    nav.gnav.global-nav ul li {
	    margin-bottom: 30px;
      width: 100%;
      font-size: 15px;
    }
    nav.gnav ul li a {
      color: #5f5f5f;
    }

	  .hamburger {
	    position: absolute;
	    right: 10px;
      top: 8px;
	    width: 40px;
	    height: 40px;
	    cursor: pointer;
	    z-index: 9999;
	  }
	  .global-nav__list {
	    margin: 0;
	    padding: 0;
	    list-style: none;
	  }
	  .global-nav__item a {
	    display: block;
	    padding: 8px 0;
	    border-bottom: 1px solid #fff;
	    line-height: 1.3;
	  }
	  .global-nav__item a:hover {
	    background-color: #eee;
	  }
	  .hamburger__line {
	    position: absolute;
	    left: -5px;
	    width: 30px;
	    height: 1px;
	    background-color: #05368b;
	    transition: all .2s ease-out;
	  }
	  .hamburger__line--1 {
	    top: 21px;
	  }
	  .hamburger__line--3 {
	    top: 31px;
	  }
	  .black-bg {
	    position: fixed;
	    left: 0;
	    top: 0;
	    width: 100vw;
	    height: 100vh;
	    z-index: 100;
	    background-color: rgba(243, 243, 243, 0.8);
	    opacity: 0;
	    visibility: hidden;
	    transition: all .6s;
	    cursor: pointer;
	  }
	  /* 表示された時用のCSS */
	  .nav-open .global-nav {
	    right: 0;
	  }
	  .nav-open .black-bg {
	    opacity: .8;
	    visibility: visible;
	  }
	  .nav-open .hamburger__line--1 {
	    transform: rotate(45deg);
	    top: 20px;
	  }
	  .nav-open .hamburger__line--2 {
	    width: 0;
	    left: 50%;
	  }
	  .nav-open .hamburger__line--3 {
	    transform: rotate(-45deg);
	    top: 20px;
	  }
}

/* ==================================================
	splash / particles
====================================================*/
/* particles */
#particles-js{ 
	position:fixed;
	z-index:-1;
	width: 100%;
	height: 100%;
}

/* splash */
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background:#f3f3f3;
	text-align:center;
	color:#fff;
}
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash_logo svg{
	width:50px;
}
#mask .st0{
    fill:none;
    stroke:#fff;
    stroke-width:80;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-miterlimit:10;
    stroke-dasharray: 1500;
    stroke-dashoffset:1500;
}
@media screen and (max-width:768px) {
  #splash_logo svg{
  	width:20px;
  }
}


/* =======================================================
*section / ボタン
* ======================================================= */
section {
  padding-bottom: 7rem;
}
.section {
  padding-top: 7rem;
}

/* 背景グレー */
.bg_color {
  background-color: #f3f3f3;
}

/* ボタン */
.linkBtn {
  margin-top: 50px;
}
.linkBtn a {
  font-family: 'Cormorant SC', serif;
  color: #05368b;
  font-size: 18px;
  position: relative;
}
.linkBtn a::after {
  position: absolute;
  content: '';
  bottom: -7px;
  left: 0;
  width: 0;
  height: 1px;
  background: #05368b;
  transition: all 0.3s ease 0s;
}
.linkBtn a:hover::after {
  width: 100%;
}
.linkBtn i {
  font-size: 10px;
  padding-right: 5px;
}
/* 白ボタン */
.linkBtn.color_white a {
  color: #fff;
}
.linkBtn.color_white a::after {
  background: #fff;
}
/* お問い合わせボタン */
.linkContact {
  margin-top: 50px;
}
.linkContact a {
  border: 1px solid #5f5f5f;
  padding: 25px 90px;
  color: #5f5f5f;
  font-family: 'Cormorant SC', serif;
  font-size: 18px;
  letter-spacing: .2em;
}
.linkContact i {
  font-size: 15px;
  padding-right: 5px;
}

@media screen and (max-width:768px) {
  section {
    padding-bottom: 6rem;
  }
  .section {
    padding-top: 3rem;
  }
}


/* =======================================================
* main
* ======================================================= */
#main {
  height: 100vh;
  position: relative;
  width: 100%;
}
.top_logo {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.top_logo li {
  width : calc(100% / 11);
  position: relative;
}
.top_logo li img {
  width: 45%;
}
.top_catch {
  color: #05368b;
  font-family: 'Cormorant SC', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  position: absolute;
  top: 60%;
  left: 40%;
  text-align: center;
}
/* スクロールダウン */
.scroll_down {
    position: absolute;
    bottom: 15%;
    right: 3%;
    color: #999;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 11px;
    letter-spacing: .2em;
  z-index: 9;
  font-family: 'Cormorant SC', serif;
}
.arrow {
    width: 1px;
    height: 80px;
    margin: 50px auto 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    position: absolute;
    right: 3.7%;
    bottom: 3%;
    z-index: 9;
}
.arrow::before {
    content: '';
    width: 1px;
    height: 80px;
    margin: 50px auto 0;
    background-color: #999;
    position: absolute;
    top: -150px;
    left: 0;
    -webkit-animation: arrow 2.5s ease 0s infinite normal;
    animation: arrow 2.5s ease 0s infinite normal;
}
@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}

@media screen and (max-width:768px) {
  .top_logo {
    width: 90%;
    top: 40%;
    white-space: nowrap;
  }
  .top_logo li img {
    width: 55%;
  }
  .top_catch {
    font-size: 10px;
    text-align: center;
    top: 45%;
    left: 0%;
    width: 100%;
  }
  /* スクロールダウン */
  .scroll_down {
    font-size: 10px;
    bottom: 24%;
  }
  .arrow {
    right: 5.5%;
    bottom: 8%;
  }
}


/* =======================================================
* about
* ======================================================= */
#about .w60 p {
  line-height: 3;
}
@media screen and (max-width:768px) {
  #about {
    padding-top: 0;
  }
  #about .w60 p {
    line-height: 2.7;
    text-align: center;
    font-size: 13px;
  }
  #about .w30 {
    width: 60%;
    margin: 50px auto 0px;
  }
}


/* =======================================================
* brand
* ======================================================= */
#brand {
  background-color: #b5b3b2;
  margin-top: 7rem;
  color: #fff;
}
#brand h2 {
  color: #fff;
}
#brand .flex .left{
  width: 50%;
}
#brand .flex .right,
#brand .flex .center {
  width: 25%;
}
@media screen and (max-width:768px) {
  #brand {
    margin-top: 1rem;
  }
  #brand .flex .left {
    width: 100%;
    padding: 70px 0 50px
  }
  #brand .flex .right,
  #brand .flex .center {
    width: 50%;
  }
}


/* =======================================================
* contact
* ======================================================= */
#contact {
  padding-top: 10rem;
}
#contact .flex {
  margin-top: 150px;
}
#contact .flex li {
  width: 23%;
  margin: 0 15px;
}
#contact .flex li:nth-child(2) {
  margin-top: 60px;
}
#contact .flex li:nth-child(3) {
  margin-top: 120px;
}

@media screen and (max-width:768px) {
  #contact {
    padding-top: 7rem;
  }
  #contact .flex {
    justify-content: space-between;
  }
  #contact .flex li {
    width: 30%;
    margin: 0;
  }
  #contact .flex li:nth-child(2) {
    margin-top: 40px;
  }
  #contact .flex li:nth-child(3) {
    margin-top: 80px;
  }
}


/*================================================
 *  submain
 ================================================*/
#submain {
  height: 350px;
  display: flex;
}
#submain div {
  margin: auto;
  text-transform: uppercase;
  font-size: 40px;
  color: #05368b;
  font-family: 'Cormorant SC', serif;
  letter-spacing: .25em;
}

@media screen and (max-width:768px) {
  #submain {
    height: 250px;
  }
  #submain div {
    font-size: 30px;
  }
}


/* =======================================================
*footer
* ======================================================= */
footer {
  padding: 70px 0px;
}
.copyright{
  text-align: center;
  font-size: 12px;
  color: #999;
  font-family: 'Cormorant SC', serif;
}

@media screen and (max-width:768px) {
  footer {
    padding: 40px 0px;
  }
  .copyright {
    font-size: 10px;
  }
}


/*================================================
 *  pagetop
 ================================================*/
#pagetop {
    position: fixed;
    right: 20px;
    bottom: 15px;
    cursor: pointer;
    overflow: visible!important;
}

#pagetop .arrow-up {
	width: 13px;
  height: 13px;
  border: 1px solid;
  border-color:#5f5f5f#5f5f5f transparent transparent;
  transform: rotate(-45deg);
}

