@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=Zen+Old+Mincho:wght@400;500;600;700;900&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
-------------------------------------------------------------------------------------*/

.en{
  font-family: 'Crimson Text', serif;
}

.jp{
  font-family: 'Zen Old Mincho', serif;
}

.ft-c-ocean{
  color: #18adb3;
}

.ft-c-yellow{
  color: #f8e16c;
}

/* 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, h7{
  font-weight: 400;
  line-height: 1.7;
  font-family: 'Zen Old Mincho', serif;
}

body {
  position: relative;
  background: #fff;
  color: #0f232d;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 400;
}
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;
}
#fancybox-wrap, #fancybox-wrap *, #fancybox-tmp, #fancybox-loading {
  -webkit-box-sizing: content-box !important;
  -moz-box-sizing: content-box !important;
  -o-box-sizing: content-box !important;
  -ms-box-sizing: content-box !important;
  box-sizing: content-box !important;
}
a, a:link, a:hover, a:focus {
  color: #584f4b;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
a:hover {
  opacity: 0.6;
}
ul, ol {
  list-style-type: none;
}
::selection {
  background-color: #888;
  color: #FFF; /* Safari */
}
::-moz-selection {
  background-color: #888;
  color: #FFF; /* Firefox */
}

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: 10;
  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: 95px; 
  margin: 0 5%;
  width: 90%;
}

.hd-logo-01{
  margin-right: 10%;
}

#header.active {
  opacity: 1;
}

#header .logo.top {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 400px;
}
#header .logo.fix {
  display: none;
}
#header .logo a {
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
}
#header .logo img {
  z-index: 999;
  display: block;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  width: 100%;
}
.hd-left{
  width: 25%;
}
.hd-catch{
  font-size: 10px;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 15px;
  width: 100%;
}
.hd-right{
  text-align: right;
  width: 75%;
}
.hd-right .lang{
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'Crimson Text', serif;
}

.hd-right .lang span{
  margin-right: 20px;
}

.hd-right .lang .current{
  color: #18adb3;
}

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

#gNav ul.flex-hd-navs li {
  margin-left: 15px;
}

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

#gNav ul.flex-hd-navs li a {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

#gNav ul.flex-hd-navs li a i{
  color: #a3394e;
  font-size: 14px;
  font-size: 1.4rem;
  margin-right: 5px;
}

#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;
  font-weight: 600;
  margin-left: 20px;
}

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

#gNav ul.flex-hd-nav li a i{
  background: #ae9c65;
  border-radius: 50px;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header.fixed{
  background: rgba(255,255,255,0.7);
  position: fixed;
  box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.05);
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.05);
}

#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;
}

/*spNav*/
#Nav {
  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: 990;
}

#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: #f1eff2;
    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 {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
}

#Nav nav ul li a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #433d48;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
  display: block;
  border-bottom: 1px solid #c9c1bd;
  padding: 4% 0;
}

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

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

.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;}
.text27{ font-size: 27px; font-size: 2.7rem; line-height: 1.4; font-weight: 400;}
.text28{ font-size: 28px; font-size: 2.8rem; line-height: 1.4; font-weight: 400;}
.text30{ font-size: 30px; font-size: 3.0rem; 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;}
.head18{ font-size: 18px; font-size: 1.8rem;}
.head21{ font-size: 21px; font-size: 2.1rem;}
.head24{ font-size: 24px; font-size: 2.4rem;}
.head27{ font-size: 27px; font-size: 2.7rem;}
.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; letter-spacing: 0.05em;}
.head44{ font-size: 44px; font-size: 4.4rem; letter-spacing: 0.05em;}
.head48{ font-size: 48px; font-size: 4.8rem;}
.head50{ font-size: 50px; font-size: 5.0rem; line-height: 1.2;}
.head60{ font-size: 60px; font-size: 6.0rem; line-height: 1.2;}
.head150{ font-size: 150px; font-size: 15rem; line-height: 1;}

/*common btn*/

/*footer*/

#footer {
  background: #18adb3;
  padding: 25px 0;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

#footer #copyright{
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'Crimson Text', serif;
}

/* 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: 105vh;
  position: relative;
  margin-top: 95px;
  z-index: 1;
  min-height: 850px;
  /* max-height: 1200px; */
  max-height: 960px;
}

.flex-mv{
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
}

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

#mv .mv-left .mv-h2{
  margin-bottom: 20px;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: 'Crimson Text', serif;
}

#mv .mv-left .mv-h1{
  margin-bottom: 45px;
  font-size: 50px;
  font-size: 5rem;
  font-family: 'Crimson Text', serif;
  line-height: 1.2;
}

#mv .mv-right{
  width: 56%;
}

.mv-bg-text {
  color: #f4f4f4;
  font-size: 150px;
  font-size: 15rem;
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  line-height: 1;
}

.asCatch {
    font-size: 27px;
    font-size: 2.7rem;
    font-weight: 600;
    line-height: 1.4;
    z-index: 2;
    position: relative;
}

.asCatch p {
  color: #fff;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  transition: .5s;
  overflow: hidden;
  padding: 0 10px;
  opacity: 0;
}

.asCatch p strong{
    position: relative;
    z-index: 2;
    opacity: 0;
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -o-transition: all 2s;
    -ms-transition: all 2s;
    transition: all 2s;
}
 
.asCatch p:before{
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: #18adb3;
    transition: .5s;
}
 
.asCatch p.active{
    opacity: 1;
}

.asCatch p.active:before{
    left: 0;
}

.asCatch p.active.second:before{
    -moz-transition-delay:400ms;
    -webkit-transition-delay:400ms;
    -o-transition-delay:400ms;
    -ms-transition-delay:400ms;
}

.asCatch p.active.third:before{
    -moz-transition-delay:600ms;
    -webkit-transition-delay:600ms;
    -o-transition-delay:600ms;
    -ms-transition-delay:600ms;
}

.asCatch p.active strong {
opacity: 1;
    -moz-transition-delay:500ms;
    -webkit-transition-delay:500ms;
    -o-transition-delay:500ms;
    -ms-transition-delay:500ms;
}
.asCatch p.active.second strong {
    -moz-transition-delay:700ms;
    -webkit-transition-delay:700ms;
    -o-transition-delay:700ms;
    -ms-transition-delay:700ms;
}
.asCatch p.active.third strong {
    -moz-transition-delay:900ms;
    -webkit-transition-delay:900ms;
    -o-transition-delay:900ms;
    -ms-transition-delay:900ms;
}


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

@media only screen and (min-width: 1650px) {

#mv {
    height: 100vh;
    min-height: 1000px;
    /* max-height: 1200px; */
    max-height: 1040px;
}

.flex-mv{
  max-width: 1400px;
}

}

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

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

@media only screen and (max-width: 1220px) {
.asCatch {
    font-size: 2.2rem;
}

.mv-bg-text {
    font-size: 9rem;
}
}

@media only screen and (max-width: 1110px) {
#mv .mv-left {
    width: 47%;
}

#mv .mv-right {
    width: 51%;
}
}

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

/*#header .logo.top,
.rest #header .logo.fix, 
#header.fixed .logo.fix{
  width: 180px;
}

#header .logo img {
    max-width: 180px;
}

#gNav{
  width: calc(100% - 180px);
}*/

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

#gNav ul li a {
    font-size: 1.3rem;
}

.tel-text-02 {
    font-size: 2.4rem;
}
}

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

#mv {
    height: 100vh;
    min-height: 800px;
    max-height: 800px;
}

#mv .mv-left .mv-h1 {
    margin-bottom: 35px;
}

#mv .mv-left .mv-h2 {
    margin-bottom: 20px;
}

.asCatch {
    font-size: 2.4rem;
}

.mv-bg-text {
    font-size: 12rem;
}

.head150{
  font-size: 12rem;
}
}


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

#mv {
    height: 80vh;
    min-height: 640px;
    max-height: 680px;
}

.mv-bg-text {
    font-size: 8rem;
    top: 47%;
}

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

#mv .mv-right {
    width: 44%;
}

#mv .mv-left .mv-h2 {
    font-size: 2.2rem;
}

#mv .mv-left .mv-h1 {
    margin-bottom: 15px;
    width: 85%;
}

.ft-info a.btn-line.en {
    padding: 10px 40px 10px 15px;
    margin-left: 0;
    margin-top: 10px;
}

.flex-ft-nav li {
    width: 50%;
}

}

@media only screen and (max-width: 1300px) {
  #gNav {
    display: none;
  }
/*  #Nav{
	  display: none;
  }
*/

.hd-tel{
  display: block;
  position: absolute;
  right: 90px;
  top: 0;
}

.Menu {
  background: #ae9c65;
  cursor: pointer;
  display: block;
  border-radius: 80px;
  height: 80px;
  width: 80px;
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 1010;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.Menu span {
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  zoom: 1; /* Fix for IE7 */
  *display: inline; /* Fix for IE7 */
  height: 1px;
  width: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit- transform: translateX(-50%);
  -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:nth-of-type(1) {
  top: 34px;
}
.Menu span:nth-of-type(2) {
  top: 46px;
}

.Menu.active {
  height: 80px;
  width: 80px;
  right: 10px;
}
.Menu.active span {
  left: 25%;
}
.Menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
.Menu.active span:nth-of-type(2) {
  -webkit-transform: translateY(-5px) rotate(45deg);
  transform: translateY(-5px) rotate(45deg);
}
.Menu.active span:nth-of-type(3) {
  left: 0% !important;
  transform: translateY(-50%);
}
.Menu.active small {
  color: #000;
}
}

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

.is-ipad{
  display: block;
}

.cm-head h4 {
    font-size: 4.2rem;
}

.cm-head {
    margin-bottom: 30px;
}

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


/* for responsive
-------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1330px) {


}

@media only screen and (max-width: 1200px) {
.asCatch {
    font-size: 2rem;
}
}

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

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

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

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

.hd-left{
  width: 50%;
}

.hd-logo-01 {
    margin-right: 0;
}

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

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

.head150 {
    font-size: 8rem;
}  

/* #mv {
  height: 100vh;
} */
#mv {
  height: 123vw;
  min-height: 123vw;
  max-height: 123vw;
}

.mv-bg-text {
  font-size: 11vw;
  top: 123vw;
}

.flex-mv {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    display: block;
}

#mv .mv-left {
    margin-bottom: 30px;
    width: 100%;
}

#mv .mv-right {
    width: 100%;
}

.mv-logo-wrap {
    width: 90%;
}

/*.mv-logo-bg{
  display: none;
}*/

.mv-content {
    width: 48%;
}

.type{
  display: none;
}

#header .logo.top {
  max-width: 260px;
}

#header.fixed .logo.fix {
  width: auto;
}

#header .headWrap {
  height: 60px;
}

.Menu,
.Menu.active{
  display: block;
  height: 60px;
  width: 60px;
  top: 10px;
  right: 10px;
}

.Menu span {
  width: 34px;
}

.Menu span:nth-of-type(1) {
  top: 24px;
}

.Menu span:nth-of-type(2) {
  top: 35px;
}

.Menu.active span {
    left: 22%;
}

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

.Menu.active span:nth-of-type(1) {
    top: 22px;
}

#Nav nav,
#Nav.active nav {
  margin: 0px auto 0 10%;
  width: 90%;
}

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

#Nav nav ul li a span{
  color: #29aa70;
  font-size: 1.2rem;
}

/*#Nav nav {
  display: block;
  width: 70%;
  margin: 0 0 auto 30%;
  height: 80%;
  top: 10%;
}*/

.btn-line,
.btn-white {
    font-size: 1.6rem;
}

.btn-line i,
.btn-white i{
    width: 20px;
    height: 20px;
}

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

}

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

  small#copyright {
    font-size: 10px;
    font-size: 1.0rem;
  }

#mv {
    /* height: calc(100vh - 65px); */
    height: 135vw;
    min-height: 135vw;
    max-height: 135vw;
    margin-top: 65px;
}

.mv-bg-text {
  top: 128vw;
}

#mv .mv-left .mv-h2 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

#mv .mv-left .mv-h1 {
    margin-bottom: 5px;
    width: 100%;
    font-size: 3.5rem;
}

.asCatch {
    font-size: 1.7rem;
}

/* .mv-bg-text {
    font-size: 4rem;
    top: 95%;
} */

.head150 {
    font-size: 6rem;
}
}
/*SP END*/
/* for ipad
-------------------------------------------------------------------------------------*/
.portrait.ipad #mv {
  height: 50vh;
}
.portrait.ipad #mv .mvInr {
  height: 50vh;
}
/* for iphoneX
-------------------------------------------------------------------------------------*/
@media screen and (min-height: 800px) {
  .portrait.iphone #mv {
    height: 64vh;
  }
}
/* animation
-------------------------------------------------------------------------------------*/
.fadein {
  opacity: 0;
  transform: translate(-20%,0);
  transition: all 1500ms;
}

.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}
.load-fadein {
  opacity: 0;
  transform: translate(-20%,0);
  transition: all 1500ms;
}

.load-fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}

.mv-h2,
.mv-h1{
  opacity: 0;
  transform: translate(-50%,0);
  transition: all 1000ms;
}

.mv-h2.scrollin,
.mv-h1.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* ローディング画面 */
#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 only screen and (max-width: 1280px) {

}

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

}

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

}

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

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

.head15 { font-size: 1.4rem;}
.head21 { font-size: 1.6rem;}
.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;
}

}
