@charset "UTF-8";

/* Base Theme ============================================================= */
/* Reset ------------------------------------------------------------------ */
html{ font-size: 100%; -webkit-text-size-adjust: none; }
*{ margin: 0; padding: 0; }

*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}

body{
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
background: #fff;
color: #333;
font-size: 16px;
line-height: 1.75;
word-wrap: break-word;
overflow-wrap: break-word;
}
h1,h2,h3,h4,h5,h6{ font-size: 100%; font-weight: normal; }
ol, ul{ list-style-type: none; }
table { border-spacing: 0; }
caption,th{ text-align: left; }
fieldset,img,abbr,acronym{ border: 0; }
img{ vertical-align: top; max-width: 100%; height: auto; }

a{ color: #00469b; text-decoration: none; }
a:hover{ color: #f87409; }
a img,:link img,:visited img{ border: none; }
a, a::before, a::after{ -webkit-transition: all .3s; transition: all .3s; }




/* Common Classes ---------------------------------------------------- */
.left{ float: left; }
.right{ float: right; }
.center{ margin-left: auto; margin-right: auto; }
.kome{ text-indent: -1em; padding-left: 1em; }

.red{ color: #e34014; }

.txt-right{ text-align: right; }
.txt-left{ text-align: left; }
.txt-center{ text-align: center; }

.inline { display: inline; }
.hidden { display: none; }

.mt10{ margin-top: 10px !important; }
.mt20{ margin-top: 20px !important; }
.mt30{ margin-top: 30px !important; }
.mt40{ margin-top: 40px !important; }

.mb10{ margin-bottom: 10px !important; }
.mb20{ margin-bottom: 20px !important; }
.mb30{ margin-bottom: 30px !important; }
.mb40{ margin-bottom: 40px !important; }



.btn a{
position: relative;
z-index: 1;
display: inlie-block;
background: #fff;
color: #fff;
transition: .3s;
}
.btn a:after{
content: '';
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
border: 2px solid #00469b;
z-index: -1;
transform: scale(1.2);
opacity: 0;
transition: transform ease .3s, opacity .3s;
}
.btn a:hover{
color: #00469b;
/*background: transparent;*/
background: #fff;
}
.btn a:hover:after{
transform: scale(1);
opacity: 1;
}

.blank{
position: relative;
padding-right: 22px;
}
.blank::before{
content: "\e900";
font-family: 'icomoon';
position: absolute;
top: 0; right: 0;
font-size: 16px;
}


/* ====================================================================
    LOADING
====================================================================== */
#splash{
position: fixed;
width: 100%;
height: 100%;
z-index: 99999;
text-align: center;
background: #fff;
display : -webkit-box;
display : -webkit-flex;
display : -ms-flexbox;
display: flex;
}
#splash_logo{
margin: auto;
display: block;
animation: loading 3s ease infinite;
}
#splash_logo img{
width: 80px;
height: auto;
}

@keyframes loading{
0%, 100%{ opacity: 1; }
50%{ opacity: 0; }
}


/* ==============================
    ドロワーナビ
============================== */
.drawer{
position: fixed;
top: 0; left: 0;
width: 100%;
height: 100%;
background-color: rgba(244 , 244, 244, .9);
-webkit-transform: translateX(100%);
transform: translateX(100%);
-webkit-transition: ease .5s;
transition: ease .5s;
z-index: 9999;
}
.drawer.action{
-webkit-transform:translateX(0);
transform:translateX(0);
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.drawer::after{
content: '';
position: absolute;
top: -200px; left: 0; right: 0;
margin: auto;
background: rgb(0,70,155);
background: -moz-radial-gradient(circle, rgba(0,70,155,0.6) 0%, rgba(255,255,255,0) 100%);
background: -webkit-radial-gradient(circle, rgba(0,70,155,0.6) 0%, rgba(255,255,255,0) 100%);
background: radial-gradient(circle, rgba(0,70,155,0.6) 0%, rgba(255,255,255,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00469b",endColorstr="#ffffff",GradientType=1);
-webkit-filter: blur(60px);
-moz-filter: blur(60px);
-o-filter: blur(60px);
-ms-filter: blur(60px);
filter: blur(60px);
border-radius: 53% 47% 39% 61% / 59% 52% 48% 41%;
-webkit-border-radius: 53% 47% 39% 61% / 59% 52% 48% 41%;
-moz-border-radius: 53% 47% 39% 61% / 59% 52% 48% 41%;
width: 1800px; height: 500px;
z-index: -1;
}

#container.action{
position: relative;
-webkit-transition: ease .5s;
transition: ease .5s;
}
#container.action:after{
content: '';
position: absolute;
z-index: 9998;
left: 0; top: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, .5);
}
@media screen and (min-width: 960px){
#container.action:after{ content: none; }
}


.drbtn {
position: fixed;
top: 40px; right: 40px;
width: 32px;
height: 32px;
text-align: center;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
-webkit-transition:ease .5s;
transition:ease .5s;
z-index: 10000;
/*background: #ccc;*/
}

@media screen and (max-width: 1100px){
.drbtn { top: 32px; }
}
@media screen and (max-width: 840px){
.drbtn { top: 28px; }
}
@media screen and (max-width: 640px){
.drbtn { top: 16px; right: 16px; }
}

/* ==============================
    トグル
============================== */
.hambarg{
position: absolute;
display: block;
height: 2px;
width: 32px;
background: #00469b;
border-radius: 1px;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
-webkit-transition: ease .5s;
transition: ease .5s;
}

.hambarg:nth-child(1){ top: 4px; }
.hambarg:nth-child(2){ top: 14px; }
.hambarg:nth-child(3){ top: 24px; }

.drbtn.action .hambarg:nth-child(1) {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
top: 14px;
}
.drbtn.action .hambarg:nth-child(2) {
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
opacity: 0;
}
.drbtn.action .hambarg:nth-child(3) {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
top: 14px;
}


/* ==============================
    ドロワーメニュー
============================== */
.drawer h2{
padding-top: 60px;
text-align: center;
padding-bottom: 40px;
border-bottom: 1px solid #ebebeb;
}
.drawer h2 img{
width: 200px;
height: auto
}

.drawer ol{
display: flex;
justify-content: center;
flex-wrap: wrap;
text-align: center;
padding-top: 40px;
}

.drawer-sub{
font-size: 18px;
font-weight: bold;
padding-left: 80px;
text-align: left;
}
.drawer-sub:first-of-type{
padding-left: 0;
}
.drawer-sub ul{
padding-top: 4px;
}
.drawer-sub li{
position: relative;
font-size: 16px;
padding-left: 16px;
}
.drawer-sub li::before{
content: '';
position: absolute;
top: .75em; left: 0;
width: 8px; height: 1px;
background: #00469b;
}


.drawer-contact{
width: 100%;
margin-top: 40px;
}
.drawer-contact ul{
display: flex;
justify-content: center;
}
.drawer-contact li + li{
margin-left: 8px;
}
.drawer-contact a{
display: block;
padding: .25em 0;
border: 1.5px solid #00469b;
border-radius: 2em;
-webkit-border-radius: 2em;
-moz-border-radius: 2em;
width: 200px;
}
.drawer-contact a:hover{
background: #00469b;
color: #fff;
}

@media screen and (max-width: 740px){
.drawer{ padding-bottom: 40px; }
.drawer h2{ padding-top: 40px; padding-bottom: 24px; }
.drawer h2 img{ width: 140px; }
.drawer ol{ flex-direction: column; padding-left: 12%; padding-right: 12%; }
.drawer-sub{ padding-left: 0; margin-bottom: 16px; }
.drawer-contact{ margin-top: 16px; }
.drawer-contact ul{ justify-content: space-between; }
.drawer-contact li{ width: 49%; }
.drawer-contact a{ width: 100%; }
}
@media screen and (max-width: 640px){
.drawer ol{ padding-left: 8%; padding-right: 8%; }
}

/*@media screen and (max-width: 1200px){
.drawer ol{ margin-top: 24px; padding: 40px 12% 0 12%; flex-wrap: wrap; }
.drawer ol li{ width: 50%; margin: 0 0 40px 0; }
.drawer li > ul li{ margin-bottom: 0; }
}
@media screen and (max-width: 740px){
.drawer h2{ padding-top: 60px; }
.drawer h2 img{ width: 280px; }
.drawer ol{ display: block; padding: 0px 40px; font-size: 1.15em; margin-top: 40px; }
.drawer ol li{ margin-bottom: 24px; margin-left: 0; width: 100%; }
.drawer li > ul{ margin-top: 8px; }
.drawer li > ul li{ margin-bottom: 0 }
}*/



/* ====================================================================
    WEB FONTS
====================================================================== */
@font-face {
  font-family: 'icomoon';
  src:  url('/dent/common/fonts/icomoon.eot?gmkn75');
  src:  url('/dent/common/fonts/icomoon.eot?gmkn75#iefix') format('embedded-opentype'),
    url('/dent/common/fonts/icomoon.ttf?gmkn75') format('truetype'),
    url('/dent/common/fonts/icomoon.woff?gmkn75') format('woff'),
    url('/dent/common/fonts/icomoon.svg?gmkn75') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-blank:before {
  content: "\e900";
}



