@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Zen+Maru+Gothic:wght@300;400;500;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

-------------------------------------------------------------------------------------*/

.ftQuick{ font-family: 'Quicksand', sans-serif;}
.ftZen{ font-family: 'Zen Maru Gothic', sans-serif; }


/* 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
}
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
}
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;
}
body {
  background: #2f33af;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #112265;
  font-size: 17px;
  font-size: 1.7rem; /* sets the default sizing to make sure nothing is actually 10px */
  line-height: 1.7;
  letter-spacing: 0;
  font-weight: 400;
  z-index: -10;
  padding: 15px;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
}

body:after{
  content: "";
  border-radius: 20px;
  position: absolute;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background: #fff;
  z-index: -9;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

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: #112265;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
a:hover {
  color: #203a9e;
  opacity: 0.8;
}
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: 1.7;
}
hr.ancHr {
  font-size: 0 !important;
  line-height: 0 !important;
  visibility: hidden !important;
  margin: 0;
  padding: 0;
}

.flexBox{
  display: flex;
}

/* base contents
-------------------*/
/*header*/
#header {
  position: absolute;
  top: 15px;
  width: calc(100% - 30px);
  text-align: center;
  z-index: 10;
  padding: 15px 0;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0 auto;
}

#header .secInr{
  display: flex;
  justify-content: space-between;
  align-items: center;  
  max-width: 1500px;
}

#header.active {
  opacity: 1;
}
#header .logo.top {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  display: block;
}
#header .logo.fix {
  display: none;
}
#header .logo a {
  display: block;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#header .logo img {
  z-index: 999;
  display: block;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  width: 244px;
}

#gNav {
  display: flex;
  flex-direction: row-reverse;
  width: 80%;
}
#gNav ul {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 160px;
}
#gNav ul li {
  margin-left: 40px;
}
#gNav ul li a {
  color: #112265;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
#gNav ul li a:hover {
  color: #51bded;
  text-decoration: none;
}

#header.fixed{
  background: #fff;
  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);
  top: 0;
}

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

.rest #header .logo.fix,
#header.fixed .logo.fix {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  display: block;  
}

.rest #header #gNav ul li a,
#header.fixed #gNav ul li a{
  color: #000;
}

/*spNav*/
#Nav {
  background: #fff;
  height: 100%;
  display: block;
  transition: all 550ms ease 0.25s;
  visibility: hidden;
  padding-top: 5%;
  width: 100%;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 990;
}
#Nav.active {
  visibility: visible;
  right: 0;
}
#Nav #Bg {
  background: url(../cmn_img/ham_img.jpg) no-repeat;
  height: 100%;
  width: 45%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: all 550ms ease 0.25s;
  pointer-events: none;
  background-size: cover;
  background-position: center center;
}
#Nav.active #Bg {
  opacity: 1;
  pointer-events: auto;
}
#Nav::after {
  background: url(../../img/gray_bg.jpg) center center no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  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%;
  width: 55%;
  margin-left: 45%;
}

#Nav nav .logo{
  margin: 0 auto 30px;
  width: 270px;
}

#Nav nav ul {
  width: 80%;
  margin: 0 auto 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#Nav nav ul li {
  width: 100%;
}
#Nav nav ul li a {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #112265;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
  display: block;
  padding: 15px 10px;
}
#Nav nav ul li a span {
  color: #185990;
  display: block;
  font-size: 32px;
  font-size: 3.2rem;
  padding-bottom: 10px;
  font-weight: 400;
}
#Nav nav ul li a:hover {
  color: #185990;
  text-decoration: none;
}
#Nav nav ul li a:hover::before {
  color: #FFF;
}

#Nav nav .address{
  text-align: center;

}

#Nav .tel{
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: 600;
    color: #21378b;
    margin-top: 5%;
    text-align: center;
}

#Nav .tel a{
    color: #21378b;
}

#Nav .tel span {
    border: 1px solid #21378b;
    border-radius: 5px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 600;
    padding: 5px 20px;
}

.Menu {
  background: #2f33af;
  cursor: pointer;
  display: block;
  height: 72px;
  width: 72px;
  position: fixed;
  right: 0;
  top: 14px;
  z-index: 1010;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 0 0 0 20px;
}
.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: 32px;
  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: 26px;
}
.Menu span:nth-of-type(2) {
  top: 38px;
}
.Menu span:nth-of-type(3) {
  top: 50px;
}
.Menu.active {
  height: 72px;
  width: 72px;
  right: 0;
}
.Menu.active span {
  left: 24%;
}
.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) {
  display: none;
}
.Menu.active small {
  color: #000;
}

.Menu.up{
  top: 0;
}

/*contents*/
#contents {
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}
.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;}
.text17{ font-size: 17px; font-size: 1.7rem;}
.text18{ font-size: 18px; font-size: 1.8rem;}
.text21{ font-size: 21px; font-size: 2.1rem;}

.head14{ font-size: 14px; font-size: 1.4rem; font-weight: 300;}
.head15{ font-size: 15px; font-size: 1.5rem;}
.head18{ font-size: 18px; font-size: 1.8rem;}
.head21{ font-size: 21px; font-size: 2.1rem;}
.head24{ font-size: 24px; font-size: 2.4rem;}
.head26{ font-size: 26px; font-size: 2.6rem;}
.head32{ font-size: 32px; font-size: 3.2rem; line-height: 1.4; font-weight: 500; letter-spacing: 0.05em;}
.head34{ font-size: 34px; font-size: 3.4rem; line-height: 1.4; font-weight: 500;}
.head40{ font-size: 40px; font-size: 4.0rem;}
.head50{ font-size: 50px; font-size: 5.0rem; line-height: 1.2;}

.headEng{
  color: #2f33af;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
}

/*common btn*/

.btn a {
  color: #112265;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}

.btn a:hover {
  opacity: 1;
}

.btn a .purple{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e3e3f9;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  position: relative;
}

.btn a .purple:after{
  content: "";
  background: rgba(227,227,249,0.4);
  position: absolute;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: 0.5s ease;
}

.btn a:hover .purple:after{
  content: "";
  background: rgba(227,227,249,0.4);
  position: absolute;
  border-radius: 80px;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.btn a img{
  width: 20px;
}

.btn a span{
  box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1);
  margin-left: 10px;
}

.btn a .white{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  position: relative;
}


.btn a .white:after{
  content: "";
  background: rgba(255,255,255,0.4);
  position: absolute;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: 0.5s ease;
}

.btn a:hover .white:after{
  content: "";
  background: rgba(255,255,255,0.4);
  position: absolute;
  border-radius: 80px;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.tel-btn{
  display: block;
  position: fixed;
  right: 90px;
  z-index: 3;
  top: 35px;
}

.tel-btn a{
  display: flex;
  font-family: 'Quicksand', sans-serif;
  justify-content: flex-start;
  font-size: 16px;
  font-size: 2rem;
  font-weight: 500;
  align-items: center;
}

.tel-btn a i{
  margin-right: 8px;
}

.tel-btn a span{
  
}

.tel-btn.up{
  top: 20px;
}

/*fv*/

#fv{
  padding-top: 150px; 
}

#fv .pageTtl{
  font-family: 'Noto Serif JP', serif;
  font-size: 50px;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 70px;
}

#fv .pageTtl small {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

#fv .topFlex{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

#fv .topFlex .breadcrumb{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

#fv .topFlex .breadcrumb li a{
  font-size: 12px;
  font-size: 1.2rem;
  color: #999999;
}

#fv .topFlex .breadcrumb li.current a{
  color: #000;
}

#fv .topFlex .breadcrumb li .fas.fa-angle-right{
  color: #000;
  margin: 0 15px;
}

#fv .fvImg img{
  height: 460px;
  object-fit: cover;
  width: 100%;
}

/*footer*/

#footer{
  position: relative;
}

#footer .ftWrap{
    background: #2f33af;
    width: 100.1%;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    bottom: -2px;
}

#footer .listWrap {
    background: #fff;
    border-radius: 0 0 20px 20px;
    margin: 0 auto;
    padding-bottom: 80px;
}

#footer .listWrap ul {
    display: flex;
    justify-content: center;
    max-width: 750px;
    margin: 0 auto;
}

#footer .listWrap ul li{
  display: flex;
  justify-content: center;
}

#footer .listWrap ul li a{
  border-right: 1px solid #dddddd;
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 5px 20px;
  text-align: center;
} 

#footer .listWrap ul li:last-child a{
  border-right: none;
}

small#copyright {
  font-family: 'Quicksand', sans-serif;
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  width: 100%;
}
/* 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-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
-------------------------------------------------------------------------------------*/

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

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

#header .logo img {
    width: 230px;
}

#gNav ul {
    padding-right: 180px;
}

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

#gNav ul li {
    margin-left: 4%;
}

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

@media only screen and (max-width: 1200px) {
  .scrollTxt {
    margin-bottom: 10px;
    display: block;
  }
  .scrollTxt span {
    font-size: 12px;
    font-size: 1.2rem;
    background: #fff;
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-block;
    color: #006ca5;
    background: #eee;
    border-radius: 50px;
  }
}

@media only screen and (min-width: 1081px) {
  #gNav {
    display: block;
  }
}

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

#header{
  padding: 15px 0 12px;
}

#header .logo img {
  height: 45px;
}

#gNav {
  display: none;
}

.mvInr .mvTxt .mvCatch span {
  font-size: 90px;
  font-size: 9rem;
}
.mvInr .mvTxt .mvCatch {
  font-size: 22px;
  font-size: 2.2rem;
}
.mvInr .mvTxt h1 {
  padding-top: 40px;
  font-size: 16px;
  font-size: 1.6rem;
}
}
/* height */
@media (max-height: 720px) {
  .landscape.other .mvInr .mvTxt .mvCatch span {
    font-size: 100px;
    font-size: 10rem;
  }
  .landscape.other .mvInr .mvTxt {
    bottom: 10%;
  }
  .landscape.other .mvInr .mvTxt h1 {
    padding-top: 20px;
  }
  .landscape.other .mvInr .circle {
    width: 47%;
  }
  #gNav {
    padding: 15px 0;
  }
}
/* for SP
-------------------------------------------------------------------------------------*/

@media only screen and (max-width: 768px) {
.Menu,
.Menu.up {
    top: 0;
}

.Menu{
  border-radius: 0;
}

.tel-btn,
.tel-btn.up {
    display: flex;
    position: fixed;
    right: 90px;
    right: 72px;
    top: 0;
    background: rgba(227,227,249,1);
    width: 72px;
    height: 72px;
    justify-content: center;
    align-items: center;
}

.tel-btn a span {
    display: none;
}
}


@media only screen and (max-width: 480px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
  /* indent
-------------------*/
  .is-sp {
    display: block !important;
  }
  .is-pc {
    display: none !important;
  }
  .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;
  }
  #Nav nav ul li a span {
    font-size: 30px;
    font-size: 3.0rem;
  }
  /* top parts
-------------------*/
  .mvInr .mvTxt .mvCatch {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1.7;
  }
  .mvInr .mvTxt .mvCatch span {
    font-size: 60px;
    font-size: 6rem;
    line-height: 1.1;
    padding-bottom: 0px;
  }
  .mvInr .mvTxt h1 {
    padding-top: 20px;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
  }
  .mvInr .circle {
    width: 100%;
    right: -20%;
    top: 6%;
  }
  .mvInr {
    width: 100%;
  }
  .mvInr .mvTxt {
    left: 5%;
    width: 90%;
    bottom: 10%;
  }
  small#copyright {
    padding: 20px 0;
  }
  .ftAction {
    padding: 60px 0 40px;
  }
  .Menu {
    display: block;
    height: 60px;
    width: 60px;
  }
  .Menu span {
    width: 34px;
  }
  .Menu span:nth-of-type(1) {
    top: 19px;
  }
  .Menu span:nth-of-type(2) {
    top: 30px;
  }
  .Menu span:nth-of-type(3) {
    top: 42px;
  }
  .Menu.active {
    height: 60px;
    width: 60px;
  }
  #Nav nav ul {
    display: block;
    width: 90%;
    margin-bottom: 40px;
  }
  #Nav nav ul li {
    width: 100%;
  }
  #Nav nav ul li a span {
    font-size: 26px;
    font-size: 2.6rem;
    padding-bottom: 5px;
  }
  #Nav nav ul li a {
    font-size: 16px;
    font-size: 1.6rem;
  }

.navLogo{
  text-align: center;
}

.navLogo img{
  width: 200px;
}   

.navLogo{
  text-align: center;
}

.navLogo img{
  width: 200px;
} 

#Nav nav {
    height: 100%;
    display: block;
    align-items: center;
    top: 60%;
    position: relative;
    transform: translateY(-50%);
}

#Nav nav .logo {
    margin: 0 auto 10px;
    width: 200px;
}

#Nav .tel span {
    font-size: 1.6rem;
    padding: 3px 20px 5px;
}

#Nav .tel {
    font-size: 2.2rem;
}

.tel-btn{
  transition: 1s ease;
  bottom: -60px;
  right: auto;
  width: 100%;
  height: 60px;
  top: auto;
  background: #fff;
  border-top: 1px solid rgba(227,227,249,1);
}

.tel-btn.up {
    right: auto;
    width: 100%;
    height: 60px;
    bottom: 0;
    top: auto;
    background: #fff;
    border-top: 1px solid rgba(227,227,249,1);
}

.tel-btn a span{
  display: block;
}

small#copyright {
    padding: 30px 0 90px;
}
}

@media screen and (max-width: 400px) {
#Nav nav ul li a {
    padding: 10px 10px;
}

#Nav nav ul {
    margin-bottom: 20px;
}

#Nav .tel span {
    padding: 3px 12px 5px;
}


}

/*SP END*/
/* for ipad
-------------------------------------------------------------------------------------*/
.portrait.ipad #mv {
  height: 50vh;
}
.portrait.ipad #mv .mvInr {
  height: 50vh;
}
/* for iphoneX
-------------------------------------------------------------------------------------*/
@media screen and (min-height: 800px) {
}
/* animation
-------------------------------------------------------------------------------------*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1000ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.mvCatch {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1000ms;
}
.mvCatch.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.mvTxt h2 {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1000ms;
}
.mvTxt h2.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/* ローディング画面 */
.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2f33af;
  z-index: 9999;
}
.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  width: 0;
  height: 1px;
}
.shutter {
  -webkit-animation: byeShutter 2.6s forwards;
  animation: byeShutter 2.6s forwards;
}
.shutter::before {
  -webkit-animation: shutterOpen 2.6s forwards;
  animation: shutterOpen 2.6s forwards;
}
.main {
  -webkit-animation: contentScale 2.6s forwards;
  animation: contentScale 2.6s forwards;
}
@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes contentScale {
  70% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
  100% {
    opacity: 1;
  }
}


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

.flexBox {
    display: block;
}

body {
    padding: 0;
}

body:after {
    border-radius: 0;
    width: 100%;
    height: 100%;
}

#header {
    top: 5px;
}

#header .logo img {
    height: 35px;
    width: 200px;
}

#Nav.active #Bg {
    width: 0;
    display: none;
}

#Nav nav {
    height: 100%;
    width: 90%;
    margin-left: 5%;
}

#Nav nav .logo {
    margin: 0 auto 10px;
    width: 200px;
}

.text15 { font-size: 1.3rem;}
.text17 { font-size: 1.4rem;}
.text18 { font-size: 1.5rem;}

.head15 { font-size: 1.2rem;}
.head21 { font-size: 1.6rem;}
.head32 { font-size: 1.8rem;}
.head34 { font-size: 2.0rem;}
.head40 { font-size: 2.4rem; line-height: 1.4;}
.head50 { font-size: 3rem;}

#footer .listWrap {
    display: none;
}
}







