@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
@charset "UTF-8";
/* Contents Menu
-------------------------------------------------------------------------------------
【PC/SP】
	**:normalize
	**:icon
	**:reset
	**:base contents
		header/gnav/mv/contents/footer/
	**:indent
	**:size
	**:wide
	**:section
	**:compo parts
		btn/box/list/head/table/float/column/topcontrol/roBtn/
	**:pager
	**:form
-------------------------------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 115px;
}
@media only screen and (max-width: 768px) {
  :target {
    scroll-margin-top: 90px;
  }
}
.ft-pop{
  font-family: 'Poppins', sans-serif;
}
.ft-ship{
  font-family: 'Shippori Mincho', serif;
}

.ft-c-blue{
  color: #0589e7;
}

.ft-c-sky{
  color: #74bdc5;
}

/* normalize
-------------------*/
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */ article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block
}
audio, canvas, video {
  display: inline-block
}
audio:not([controls]) {
  display: none;
  height: 0
}
[hidden] {
  display: none;
}
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%
}
body {
  margin: 0
}
h1 {
  font-size: 2em
}
abbr[title] {
  border-bottom: 1px dotted
}
b, strong {
  font-weight: 700
}
dfn {
  font-style: italic
}
mark {
  background: #ff0;
  color: #000
}
code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word
}
q {
  quotes: "\201C""\201D""\2018""\2019"
}
small {
  font-size: 80%
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}
sup {
  top: -.5em
}
sub {
  bottom: -.25em
}
img {
  border: 0;
  width: 100%
}
svg:not(:root) {
  overflow: hidden
}
figure {
  margin: 0
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em
}
legend {
  border: 0;
  padding: 0
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0
}
button, input {
  line-height: normal
}
button, html input[type="button"], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer
}
button[disabled], input[disabled] {
  cursor: default
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0
}
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0
}
textarea {
  overflow: auto;
  vertical-align: top
}
table {
  border-collapse: collapse;
  border-spacing: 0
}
/* reset
-------------------*/
html {
  background-color: #FFF;
  font-size: 62.5%; /* sets the base font to 10px for easier math */
}
body, h1, h2, h3, h4, h5, h6, pre, ul, ol, li, dl, dt, dd, p, img {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6{
  font-weight: 400;
  line-height: 1.4;
}

body {
  position: relative;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000000;
  font-size: 15px;
  font-size: 1.5rem; /* sets the default sizing to make sure nothing is actually 10px */
  line-height: 2;
  letter-spacing: 0;
  font-weight: 400;
  max-width: 2000px;
  margin: 0 auto;
}
body * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a, a:link, a:hover, a:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
a:hover {
  color: #0589e7;
}
ul, ol {
  list-style-type: none;
}
::selection {
  background-color: #888;
  color: #FFF; /* Safari */
}
::-moz-selection {
  background-color: #888;
  color: #FFF; /* Firefox */
}
#contents p {
  line-height: 2;
}
hr.ancHr {
  font-size: 0 !important;
  line-height: 0 !important;
  visibility: hidden !important;
  margin: 0;
  padding: 0;
}

.flexBox,
.flexList{
  display: flex;
}

.gridBox{
  display: grid;
}


/* base contents
-------------------*/
/*header*/

.Menu{
  display: none;
}

#header {
  position: fixed;
  top: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0 auto;
}

#header .headWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    margin: 0 0 0 0;
    width: 100%;
    padding: 0 5%;
}

#header.active {
  opacity: 1;
}

#header.active.fixed .headWrap{
  box-shadow: 0px -1px 20px 0px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px -1px 20px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px -1px 20px 0px rgba(0,0,0,0.1);
}

.hd-left{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  top: 20px;
}

.hd-right {
  width: calc(100% - 413px);
}

#header .logo a {
  display: inline-block;
  position: relative;
  left: 0;
  width: 100%;
}

#header .hd-logo{
  width: 280px;
}

#header .hd-logo-fix{
  opacity: 0;
  width: 190px;
}

#header.active.fixed .hd-left {
    top: 8px;
}

#header.active.fixed img {
  z-index: 999;
  display: block;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

#header.active.fixed a {
  top: 0;
}

#header .hd-logo{
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#header .hd-logo-fix {
  animation-delay: 0.05s
  -webkit-transition: all .55s ease-in-out;
  transition: all .55s ease-in-out;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}


#header.fixed .hd-logo{
  transform: translateX(-100%);
  opacity: 0;
}

#header.fixed .hd-logo-fix{
  transform: translateX(-280px);
  opacity: 1;
}

#gNav {
  width: 100%;
}

#gNav ul li a:hover {
  text-decoration: none;
}

#gNav ul.flex-hd-nav{
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 0 auto;
}

#gNav ul.flex-hd-nav li{
  font-size: 16px;
  font-size: 1.6rem;
  margin-left: 30px;
}

#gNav ul.flex-hd-nav li:first-child{
  margin-left: 0;
}

#header.fixed{
  background: rgba(255,255,255,0.85);
  height: 100px;
  position: fixed;
}

#header.fixed .logo.top {
  display: none;
}

#header.fixed .logo.fix {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 400px;
}

.hd-btn-pc{
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  z-index: 2;
}

.hd-btn-pc .hd-btn-wrap{
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.hd-btn-pc div .hd-tel{
  margin-right: 35px;
}

.hd-btn-pc div .hd-tel div{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hd-btn-pc div .hd-tel img{
  margin-right: 10px;
  width: 20px;
}

.hd-btn-pc div .hd-tel p{
  font-size: 21px;
  font-size: 2.1rem;
}

.hd-web{
  background-color: #d1e0d9;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hd-web div img {
    margin: 0 auto 5px;
    width: 30px;
    display: block;
}

.hd-web div p{
  font-size: 12px;
  font-size: 1.2rem;
}

.hd-btn-sp{
  display: none;
}


/*spNav*/
#Nav,
#Nav.active {
  height: 100%;
  display: block;
  transition: all 550ms ease 0.25s;
  opacity: 0;
  visibility: hidden;
  padding-top: 0;
  width: 100%;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 9;
}

#Nav.active {
  opacity: 1;
  visibility: visible;
  right: 0;
}

#Nav.active #Bg{
  background: rgba(0,0,0,0.3);
}

#Nav.active nav ul.ham-nav li a:hover {
  color: #0589e7;
}

#Nav.active .ham-ig{
  display: block;
  font-size: 
  width: 80%;
}

#Nav.active .ham-ig{
  color: #a3394e !important;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Jost', sans-serif;
  display: flex;
  align-items: center;
  width: 80%;
  margin: 0 10%;
}

#Nav.active .ham-ig i {
  background: #a3394e;
  color: #fff;
  height: 35px;
  width: 35px;
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

#Nav #Bg {
  height: 100%;
  width: 500%;
  position: fixed;
  right: -50%;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: all 550ms ease 0.25s;
  pointer-events: none;
}
#Nav.active #Bg {
  right: 0;
  opacity: 1;
  pointer-events: auto;
}
#Nav::after {
    background: #fff;
    background-size: cover;
    content: "";
    height: 100%;
    left: 30%;
    position: absolute;
    top: 0;
    width: 70%;
    z-index: -1;
}
#Nav::before, #Nav::after {
  opacity: 0;
  transition: all 550ms ease 0.25s;
}
#Nav.active::before, #Nav.active::after {
  opacity: 1;
}
#Nav .closeBtn {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 3%;
  text-align: right;
}
/*#Nav nav {
  height: 100%;
  display: flex;
  align-items: center;
}
#Nav nav ul,
#Nav.active nav ul {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  justify-content: space-between;
}*/

#gNav ul li a .material-icons {
    color: #29aa70;
    font-size: 12px;
    font-size: 1.2rem;
}

#Nav nav ul li a:hover {
  color: #185990;
  text-decoration: none;
}
#Nav nav ul li a:hover::before {
  color: #FFF;
}
#Nav nav ul li.mail a{
  background: #9e0000;
  padding: 20px 40px;
}

#Nav nav,
#Nav.active nav {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

#Nav nav ul.ham-nav,
#Nav.active nav ul.ham-nav {
    display: block;
    width: 80%;
    margin: 0 auto;
    justify-content: space-between;
}

#Nav nav ul.ham-nav li a,
#Nav.active nav.ham-nav ul li a {
  color: #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  font-size: 1.6rem;
  border-bottom: 1px solid #000;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
  display: block;
  padding: 10px 10px;
}


/*contents*/
#contents {
  margin: 0 auto;
  width: 100%;
}
.secInr {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}

.text12{ font-size: 12px; font-size: 1.2rem;}
.text13{ font-size: 13px; font-size: 1.3rem;}
.text14{ font-size: 14px; font-size: 1.4rem;}
.text15{ font-size: 15px; font-size: 1.5rem;}
.text16{ font-size: 16px; font-size: 1.6rem;}
.text17{ font-size: 17px; font-size: 1.7rem;}
.text18{ font-size: 18px; font-size: 1.8rem;}
.text19{ font-size: 19px; font-size: 1.9rem;}
.text20{ font-size: 20px; font-size: 2.0rem;}
.text21{ font-size: 21px; font-size: 2.1rem; line-height: 1.4; font-weight: 400;}
.text24{ font-size: 24px; font-size: 2.4rem; line-height: 1.4; font-weight: 400;}
.text28{ font-size: 28px; font-size: 2.8rem; line-height: 1.4; font-weight: 400;}
.text32{ font-size: 32px; font-size: 3.2rem; line-height: 1.4; font-weight: 400;}
.text48{ font-size: 48px; font-size: 4.8rem; line-height: 1.4; font-weight: 400;}

.head14{ font-size: 14px; font-size: 1.4rem;}
.head15{ font-size: 15px; font-size: 1.5rem;}
.head16{ font-size: 16px; font-size: 1.6rem;}
.head21{ font-size: 21px; font-size: 2.1rem;}
.head24{ font-size: 24px; font-size: 2.4rem;}
.head28{ font-size: 28px; font-size: 2.8rem;}
.head30{ font-size: 30px; font-size: 3.0rem;}
.head32{ font-size: 32px; font-size: 3.2rem; line-height: 1.4; }
.head36{ font-size: 36px; font-size: 3.6rem; line-height: 1.4;}
.head40{ font-size: 40px; font-size: 4.0rem; letter-spacing: 0.05em;}
.head42{ font-size: 42px; font-size: 4.2rem; line-height: 1.4; font-weight: 500;}
.head44{ font-size: 44px; font-size: 4.4rem; letter-spacing: 0.05em;}
.head50{ font-size: 50px; font-size: 5.0rem; line-height: 1.2;}

/*common header*/

.border-ttl{
  margin-bottom: 50px;
}

.border-ttl .bt-en{
  font-family: 'Montserrat', sans-serif;
  font-size: 90px;
  font-size: 9rem;
  color: #fff;
  text-shadow:1px 1px 0 #c3bfb6, -1px -1px 0 #c3bfb6,
              -1px 1px 0 #c3bfb6, 1px -1px 0 #c3bfb6,
              0px 1px 0 #c3bfb6,  0-1px 0 #c3bfb6,
              -1px 0 0 #c3bfb6, 1px 0 0 #c3bfb6;
  line-height: 1;
  font-weight: 600;
}

.border-ttl .bt-jp{
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
}

/*common btn*/

.cm-btn a{
  background: #fff;
  border-radius: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 25px;
  max-width: 240px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.cm-btn a p{
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: all .6s;
}


.cm-btn a span{
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  margin-top: -15px;
}

.cm-btn a span:before {
    position: absolute;
    top: 0;
    right: 20px;
    width: 10px;
    height: 10px;
    margin-top: 10px;
    transform-origin: center center;
    border-radius: 100%;
    background-color: #0589e7;
    content: "";
    transition: all .4s cubic-bezier(.37,0,.63,1);
    transition-timing-function: cubic-bezier(.37,0,.63,1);
    box-sizing: border-box;
    z-index: 0;
}

.cm-btn a:hover{
  opacity: 1;
}

.cm-btn a:hover span:before {
    transform: scale(50);
}

.cm-btn a:hover p{
  color: #eeeeee;
}

.cm-btn.blue a{
  background-color: #eefaff;
}

.cm-head span{
  font-weight: 500;
  line-height: 1.4 !important;
  display: block;
}

.gra-head,
.gra-head span{
  background: linear-gradient(90deg, rgba(5,137,230,1) 0%, rgba(36,184,252,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(5,137,230,1) 0%, rgba(36,184,252,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  line-height: 1.4 !important;
  display: block;
}

/*footer*/

#footer {
  padding: 120px 0 120px;
  width: 100%;
}

.ft-left{
  text-align: left;
  max-width: 280px;
}

.ft-logo{
  margin: 0 auto 50px;
  text-align: center;
  max-width: 220px;
}

.ft-right{
  text-align: right;
  width: 50%;
}

.ft-wrap-upper{
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 55px;
}

.ft-wrap-lower{
  justify-content: space-between;
  align-items: flex-end;
}

.ft-navi{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 80%;
}

.ft-navi li{
  margin-right: 30px;
}

.ft-navi li:last-child{
  margin-right: 0;
}

.copyright{
  color: #aaaaaa;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: right;
}

/* indent
-------------------*/
.center {
  text-align: center !important;
}
.left {
  text-align: left !important;
}
.right {
  text-align: right !important;
}
.top0 {
  margin-top: 0 !important;
}
.top5 {
  margin-top: 5px !important;
}
.top10 {
  margin-top: 10px !important;
}
.top15 {
  margin-top: 15px !important;
}
.top20 {
  margin-top: 20px !important;
}
.top25 {
  margin-top: 25px !important;
}
.top30 {
  margin-top: 30px !important;
}
.top35 {
  margin-top: 35px !important;
}
.top40 {
  margin-top: 40px !important;
}
.btm0 {
  margin-bottom: 0 !important;
}
.btm5 {
  margin-bottom: 5px !important;
}
.btm10 {
  margin-bottom: 10px !important;
}
.btm15 {
  margin-bottom: 15px !important;
}
.btm20 {
  margin-bottom: 20px !important;
}
.btm25 {
  margin-bottom: 25px !important;
}
.btm30 {
  margin-bottom: 30px !important;
}
.btm35 {
  margin-bottom: 35px !important;
}
.btm40 {
  margin-bottom: 40px !important;
}
.btm45 {
  margin-bottom: 45px !important;
}
.btm50 {
  margin-bottom: 50px !important;
}
.btm55 {
  margin-bottom: 55px !important;
}
.btm60 {
  margin-bottom: 60px !important;
}
.btm65 {
  margin-bottom: 65px !important;
}
.btm70 {
  margin-bottom: 70px !important;
}
.btm75 {
  margin-bottom: 75px !important;
}
.btm80 {
  margin-bottom: 80px !important;
}
.btm85 {
  margin-bottom: 85px !important;
}
.btm90 {
  margin-bottom: 90px !important;
}
.btm95 {
  margin-bottom: 90px !important;
}
.pT0 {
  padding-top: 0 !important;
}
.pT5 {
  padding-top: 5px !important;
}
.pT10 {
  padding-top: 10px !important;
}
.pT15 {
  padding-top: 15px !important;
}
.pT20 {
  padding-top: 20px !important;
}
.pT25 {
  padding-top: 25px !important;
}
.pT30 {
  padding-top: 30px !important;
}
.pT35 {
  padding-top: 35px !important;
}
.pT40 {
  padding-top: 40px !important;
}
.pT45 {
  padding-top: 45px !important;
}
.pB0 {
  padding-bottom: 0 !important;
}
.pB5 {
  padding-bottom: 5px !important;
}
.pB10 {
  padding-bottom: 10px !important;
}
.pB15 {
  padding-bottom: 15px !important;
}
.pB20 {
  padding-bottom: 20px !important;
}
.lm5 {
  margin-left: 5px !important;
}
.lm10 {
  margin-left: 10px !important;
}
.lm15 {
  margin-left: 15px !important;
}
.lm20 {
  margin-left: 20px !important;
}
.lm50 {
  margin-left: 50px !important;
}
.lm60 {
  margin-left: 60px !important;
}
.lm70 {
  margin-left: 70px !important;
}
.rm5 {
  margin-right: 5px !important;
}
.rm10 {
  margin-right: 10px !important;
}
.rm15 {
  margin-right: 15px !important;
}
.rm20 {
  margin-right: 20px !important;
}
.vAT {
  vertical-align: top !important;
}
.vAM {
  vertical-align: middle !important;
}
.vAB {
  vertical-align: bottom !important;
}
.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
.is-pc {
  display: block;
}
.is-sp {
  display: none;
}
.is-ipad {
  display: none;
}
.is-spS {
  display: none;
}
.spTel {
  pointer-events: none;
}
/* size
-------------------*/
.size10 {
  font-size: 1.0rem !important;
}
.size11 {
  font-size: 1.1rem !important;
}
.size12 {
  font-size: 1.2rem !important;
}
.size13 {
  font-size: 1.3rem !important;
}
.size14 {
  font-size: 1.4rem !important;
}
.size15 {
  font-size: 1.5rem !important;
}
.size16 {
  font-size: 1.6rem !important;
}
.size17 {
  font-size: 1.7rem !important;
}
.size18 {
  font-size: 1.8rem !important;
}
.size19 {
  font-size: 1.9rem !important;
}
.size20 {
  font-size: 2.0rem !important;
}
.size21 {
  font-size: 2.1rem !important;
}
.size22 {
  font-size: 2.2rem !important;
}
.size23 {
  font-size: 2.3rem !important;
}
.size24 {
  font-size: 2.4rem !important;
}
/* wide
-------------------*/
.w5 {
  width: 5% !important;
}
.w10 {
  width: 10% !important;
}
.w15 {
  width: 15% !important;
}
.w18 {
  width: 18% !important;
}
.w20 {
  width: 20% !important;
}
.w25 {
  width: 25% !important;
}
.w30 {
  width: 30% !important;
}
.w35 {
  width: 35% !important;
}
.w40 {
  width: 40% !important;
}
.w45 {
  width: 45% !important;
}
.w50 {
  width: 50% !important;
}
.w55 {
  width: 55% !important;
}
.w60 {
  width: 60% !important;
}
.w65 {
  width: 65% !important;
}
.w70 {
  width: 70% !important;
}
.w75 {
  width: 75% !important;
}
.w80 {
  width: 80% !important;
}
.w85 {
  width: 85% !important;
}
.w90 {
  width: 90% !important;
}
.w95 {
  width: 95% !important;
}
.wFull {
  width: 100% !important;
}
/* section
-------------------*/
section {
  clear: both;
}
/* compo parts
-------------------*/
/*btn*/

/*head*/

/*topcontrol*/
/*
#topcontrol {
  z-index: 900;
}
#topcontrol a {
  background: url(../cmn_img/scrollup.png) center center no-repeat #000;
  background: url(../cmn_img/scrollup.gif) center center no-repeat\9 #000; 
  *background: url(../cmn_img/scrollup.gif) center center no-repeat #000; 
  _background: url(../cmn_img/scrollup.gif) center center no-repeat #000; 
  display: block;
  height: 60px;
  width: 60px;
  filter: alpha(opacity=70) !important;
  opacity: 0.7 !important;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
#topcontrol a:hover {
  filter: alpha(opacity=10) !important;
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
*/
/* top contents for pc
-------------------------------------------------------------------------------------*/
/* mv
-------------------*/
#mv {
  width: 100%;
  height: 103vh;
  min-height: 800px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#mv .mv-left{
  width: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mv .mv-left .copyright{
  writing-mode: vertical-lr;
  color: #aaaaaa;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}

#mv .mvBg{
  width: 90%;
  height: 100vh;
  z-index: 2;
  margin-top: 110px;
  position: relative;
}

/*#mv .mvBg:after{
    position: absolute;
    content: "";
    width: 5%;
    height: 100vh;
    background: #fff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}*/

#mv .mvBg-wrap{
  overflow: hidden;
  height: 100vh;
  position: relative;
}

#mv .mvBg-wrap:after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 100%);
  width: 100%;
  height: 25%;
  z-index: 3;
}

.mvTxt{
  position: absolute;
  z-index: 4;
  color: #fff;
  bottom: 30%;
  left: 5%;
}

.mvTxt-01{
  font-size: 50px;
  font-size: 5rem;
}

.mvTxt-02{
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}

#mv .mvBg img{
  height: 100vh;
  width: 100vw;
  object-fit: cover;
}

#mv .mv-right{
    width: 5%;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.swiper-container{
  position: relative;
}

.swiper-pagination-bullet {
    background: transparent;
}

.swiper-pagination-bullet-active .path{
  display: inline-block !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: dash linear 120s;
  animation-iteration-count: unset;
}

.path {
  display: none;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}
/* reference: https://codepen.io/HOanhhOanhh/pen/eorEVR/ */

.swiper-pagination{
  writing-mode: vertical-lr;
}

.mv-right .swiper-pagination-bullet {
    margin: 15px 0;
}

.swiper-slide-active .slide-img, .swiper-slide-duplicate-active .slide-img, .swiper-slide-prev .slide-img {
  animation: zoomUp 10s linear 0s 1 normal both;
}
.slide-img {
  overflow-x: hidden;
}
.slide-img img {
  display: block;
  overflow-x: hidden;
}

/* fv
-------------------*/

.fv{
  padding: 260px 0 0;
}

.fv .simpleParallax{
  width: 90%;
  margin: 0 auto;
}

.fv .simpleParallax img{
  height: 400px;
  object-fit: cover;
}

.fv h2{
  font-size: 50px;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 30px;
}

.fv h2 span{
  display: inline-block;
  background: linear-gradient(90deg, rgba(5,137,230,1) 0%, rgba(36,184,252,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(5,137,230,1) 0%, rgba(36,184,252,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4 !important;
  display: block;
  font-family: 'Poppins', sans-serif;
  margin-top: 20px;
}

.breadcrumb{
  display: flex;
  justify-content: flex-end;
  text-align: right;
  margin-bottom: 25px;
}

.breadcrumb li{
  border-right: 1px solid #666666;
  font-size: 12px;
  font-size: 1.2rem;  
  line-height: 1;
  margin-left: 20px;
  padding-right: 20px;
}

.breadcrumb li:last-child{
  padding-right: 0;
  border-right: none;
}

.breadcrumb li a{
  color: #0589e7;
}

/*--------------------------------------------------------#sec-inquiry-----*/

#sec-inquiry{
  background: rgb(5,137,230);
  color: #fff;
  background: linear-gradient(90deg, rgba(5,137,230,1) 0%, rgba(36,184,252,1) 100%);
  padding: 130px 0 110px;
  position: relative;
  overflow: hidden;
}

#sec-inquiry .bg-text{
  font-family: 'Poppins', sans-serif;
  font-size: 200px;
  font-size: 20rem;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 50%;
  left: 0;
  width: 300%;
  transform: translateY(-50%);
  z-index: 1;
}

.flex-inquiry{
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.inquiry-ttl{
  width: 48%;
}

.inquiry-ttl a{
  color: #fff;
  display: block;
}

.inquiry-ttl a .text32{
  margin-bottom: 5px;
}

.inquiry-tel{
  border-right: 1px solid #fff;
  width: 25%;
}

.inquiry-tel a{
  color: #fff;
  display: block;
}

.inquiry-tel a .text15{
  margin-bottom: 22px;
}

.inquiry-tel a .text32{
  margin-bottom: 22px;
}

.flex-inquiry .text12{
  letter-spacing: 0.05em;
}

.inquiry-mail{
  padding-left: 45px;
  width: 25%;
}

.inquiry-mail .text15{
  margin-bottom: 15px;
}

.inquiry-btn{
  margin-bottom: 10px;
}

#sec-comingsoon{
  padding: 120px 0;
}

#sec-comingsoon .secInr{
  background: #eefaff;
  padding: 80px 5%;
}

#sec-comingsoon .gra-head{
  text-align: center;
  margin-bottom: 50px;
}

#sec-comingsoon .head42.jp{
  text-align: center;
  margin-bottom: 40px;
}

#sec-comingsoon .text15{
  text-align: center;
  margin-bottom: 30px;
}

#sec-comingsoon .cm-btn a {
    margin: 0 auto;
    justify-content: center;
}


@media only screen and (max-width: 768px) {
#sec-comingsoon {
    padding: 70px 0;
}

#sec-comingsoon .secInr {
    padding: 10% 5%;
}

.fv img {
    height: 240px;
}


#sec-inquiry {
    padding: 70px 0 70px;
}

#sec-inquiry .bg-text {
    font-size: 15rem;
}

.flex-inquiry {
    flex-wrap: wrap;
}

.inquiry-ttl {
    width: 100%;
    margin-bottom: 30px;
}

.inquiry-tel {
    padding-right: 5%;
    width: 50%;
}

.inquiry-mail {
    padding-left: 5%;
    width: 50%;
}

.inquiry-ttl a .text32{
  margin-bottom: 0;
}

.inquiry-mail .text15 {
    margin-bottom: 4px;
}

.inquiry-btn {
    margin-bottom: 4px;
}

#sec-comingsoon .head42.jp {
    font-size: 3rem;
    margin-bottom: 40px;
}

#sec-comingsoon .gra-head {
    margin-bottom: 30px;
}

#sec-comingsoon .head42.jp {
    margin-bottom: 20px;
}

}

/* Adjustment
-------------------------------------------------------------------------------------*/

@media only screen and (max-width: 1660px) {
.border-ttl .bt-en {
    font-size: 8.5rem;
}
}

@media only screen and (max-width: 1560px) {
.border-ttl .bt-en {
    font-size: 8rem;
}

#gNav ul.flex-hd-nav li {
    font-size: 1.4rem;
    margin-left: 25px;
}

}

@media only screen and (max-width: 1420px) {

#header .hd-logo {
    width: 250px;
}

#gNav ul li{
	margin-left: 1em;
}

#header .hd-logo-fix {
  width: 175px;
}

.hd-right {
    width: calc(100% - 425px);
}

}

@media only screen and (max-width: 1300px) {
.is-ipad{
  display: block;
}

#gNav {
  display: none;
}

.hd-btn-pc{
  display: none;
}

.hd-btn-sp{
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.hd-btn-sp .hd-btn-wrap{
  display: flex;
}

.hd-tel {
    background-color: #c4dbdd;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hd-tel div img {
    margin: 0 auto 5px;
    width: 30px;
    display: block;
}

.hd-tel div p {
    font-size: 12px;
    font-size: 1.2rem;
}

.Menu {
  background: rgb(5,137,230);  
  background: linear-gradient(90deg, rgba(5,137,230,1) 0%, rgba(36,184,252,1) 100%);
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 80px;
  width: 80px;
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  z-index: 1010;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  right: 10px;
  top: 10px;
  position: fixed;
}
.Menu p{
  display: contents;
}
.Menu span {
  position: relative;
  -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
}

.Menu span:after{
  content: "Menu";
  position: absolute;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.05em;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.Menu.active span:after{
  content: "Close";
}

.Menu.active small {
  color: #000;
}
}

@media only screen and (max-width: 1280px) {

.text13 { font-size: 1.2rem;}
.text21 { font-size: 1.8rem;}
.head21 { font-size: 1.8rem;}
.head32 { font-size: 2.2rem;}
.head40 { font-size: 3rem;}
.head50 { font-size: 4rem;}

#mv .mvBg img {
    object-fit: cover;
}
}


/* for responsive
-------------------------------------------------------------------------------------*/

@media only screen and (max-width: 1200px) {
.border-ttl .bt-en {
    font-size: 7rem;
    margin-bottom: 5px;
}

.border-ttl .bt-jp {
    font-size: 1.6rem;
}
}

@media only screen and (max-width: 900px) {
.border-ttl .bt-en {
    font-size: 5rem;
}
}

@media only screen and (max-width: 900px) {
.head36 {
    font-size: 3rem;
}

.head30 {
    font-size: 2.4rem;
}
}

/* for SP
-------------------------------------------------------------------------------------*/

@media only screen and (max-width: 768px) {

.is-sp {
  display: block !important;
}

.is-pc {
  display: none !important;
}

#mv {
    height: 85vh;
    min-height: auto !important;
}

#mv .mv-left {
    width: 10%;
}

#mv .mv-right {
    height: auto;
    width: 10%;
}

#mv .mvBg {
    width: 80%;
    height: 60vh;
    margin-top: 70px;
}

#mv .mvBg-wrap {
    height: 60vh;
    position: relative;
}

#mv .mvTxt .mvTxt-01 {
    font-size: 3rem;
}

#mv .mvTxt .mvTxt-02 {
    font-size: 1.2rem;
}

#Nav::after {
  left: 10%;
  width: 90%;
}

#Nav:after {
    left: 0;
    width: 100%;
}

#Nav nav ul li {
  width: 100%;
}

.Menu {
    height: 45px;
    width: 45px;
    right: 7.5px;
    top: 7.5px;
}

.Menu span:after {
    font-size: 1rem;
}

#header .hd-logo img{
    width: 200px;
}

#header .hd-logo {
    width: 250px;
    margin-left: 20px;
}

#header .hd-logo-fix img{
    width: 110px;
}

#header.fixed,
#header .headWrap {
    height: 60px;
}

.Menu.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

body,
.text16,
.head16{
  font-size: 1.4rem;
}

.border-ttl {
    margin-bottom: 30px;
}

.cm-head .head42 span,
.gra-head .head42 span{
    font-size: 3rem;
}

.head42 {
    font-size: 3rem;
}

#footer {
    padding: 70px 0;
}

.fv {
    padding: 110px 0 0;
}

.fv h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.fv h2 span {
    font-size: 1.2rem;
    margin-top: 5px;
}

.fv .simpleParallax img {
    height: 200px;
}

.fv .simpleParallax {
    width: 100%;
}

.breadcrumb li {
    margin-left: 10px;
    padding-right: 10px;
}

}

@media only screen and (max-width: 400px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
  /* indent
-------------------*/
  .is-pc {
    display: none !important;
  }
  .is-spS {
    display: block !important;
  }
  .spImg {
    max-width: 100%;
  }
  a.spTel {
    pointer-events: auto;
  }

#header .hd-logo {
    margin-left: 0;
}

#header .hd-logo img {
    width: 130px;
}

#header .hd-logo-fix{
    margin-left: 20px;
}  

#mv {
    height: 70vh;
}

.mvTxt {
    bottom: 10%;
}

#mv .mvBg-wrap {
    height: calc(70vh - 60px);
}

#mv .mvBg {
    height: 70vh;
    margin-top: 60px;
}

#mv .mv-left,
#mv .mv-right {
    height: 70vh;
}

#mv .mv-left .copyright {
    font-size: 1rem;
    line-height: 1 !important;
    margin-right: -25px;
}


#mv .mvTxt .mvTxt-01 {
    font-size: 1.9rem;
    line-height: 1.65;
    font-weight: 500;
}

#mv .mvTxt .mvTxt-02 {
    font-size: 1.1rem;
    margin-top: 6px;
    font-weight: 500;
    line-height: 1.7;
}

#mv .mvBg-wrap:after {
    background: linear-gradient(0deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0) 100%);
    height: 40%;
}

.side-scroll-list {
    position: absolute;
    top: 30px;
    left: 0;
    display: flex;
}

.ft-wrap-upper {
    display: block;
    margin-bottom: 30px;
}

.ft-left {
    text-align: center;
    max-width: 100%;
}

.ft-logo {
  margin: 0 auto 15px;
  max-width: 180px;
}

.ft-logo img{
  width: 100%;
}

.ft-right {
    text-align: center;
    width: 100%;
}

.ft-wrap-lower {
    display: block;
}

.ft-navi {
    width: 100%;
    margin-bottom: 20px;
}

.ft-navi li {
    font-size: 1.2rem;
    margin-right: 0;
    width: 50%;
    text-align: center;
}

.ft-navi li a{
  font-size: 
}

.copyright {
    font-size: 1.0rem;
    text-align: center;
    width: 100%;
    display: block;
}

#sec-inquiry .bg-text {
    font-size: 6rem;
}

#sec-inquiry .inquiry-btn .cm-btn a {
    padding: 5px 15px;
}

.inquiry-mail .text15 {
    margin-bottom: 8px;
}

.inquiry-btn {
    margin-bottom: 9px;
}

#sec-inquiry .inquiry-btn .cm-btn a span {
    right: 0;
}

.inquiry-tel a .text15 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.inquiry-tel a .text32 {
  margin-bottom: 8px;
}

.inquiry-mail .text15{
  font-size: 1.3rem;
}

}

/* animation
-------------------------------------------------------------------------------------*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1.5s;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.mvTxt {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1000ms;
}
.mvTxt.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.smoothText{
  overflow: hidden;
}

span.smoothTextTrigger{
  transition: .8s ease-in-out;
  transform: translate3d(0,100%,0) skewY(12deg);
  transform-origin: left;
  display: block;
}

span.smoothTextTrigger.smoothTextAppear{
    transform: translate3d(0,0,0) skewY(0);
}

span:nth-of-type(2).smoothTextTrigger{
    transition-delay: 0.5s;
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background: #222222;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading .ldInr {
  position: relative;
  width: 100vw;
  height: 100vh;
}
#loading .ldBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.loader {
  color: #9e0000;
  margin: 0 auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load4 1.3s infinite linear;
  animation: load4 1.3s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

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

.text15 { font-size: 1.6rem;}
.text18 { font-size: 1.5rem;}
.text32 { font-size: 2.0rem;}
.text48 { font-size: 2.4rem;}

.head15 { font-size: 1.4rem;}
.head21 { font-size: 2rem;}
.head22 { font-size: 1.7rem;}
.head24 { font-size: 1.8rem;}
.head30 { font-size: 2.2rem;}
.head32 { font-size: 2.4rem;}
.head36 { font-size: 2.0rem; line-height: 1.4;}
.head40 { font-size: 2.4rem; line-height: 1.4;}
.head44 { font-size: 2.2rem; line-height: 1.4;}
.head50 { font-size: 3rem;}

#mv:after {
    max-width: 270px;
    z-index: 1;
}
}


