@charset "utf-8";

/* @reset
----------------------------------------------------------*/
*, *:before, *:after { box-sizing:border-box; }

html, body, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd,
figure, figcaption, form, textarea, fieldset, legend, blockquote { margin:0; padding:0; border:none; }

h1, h2, h3, h4, h5, h6 { font-size:100%; font-weight:inherit; }

footer, header, hgroup, main, menu, nav, section,
article, aside, details, summary, figcaption, figure { display: block; }

table { border-collapse:collapse; border-spacing:0; }
ul, ol { padding:0; list-style:none; }

img { max-width:100%; height:auto; font-size:0; line-height:0; vertical-align:bottom; border-width:0; }

input, button, select, textarea { font:inherit; }
button { margin:0; padding:0; border:none; border-radius:0; background:none; -webkit-appearance:none; cursor:pointer; }
button:focus { outline:none; }
input[type="submit"],input[type="button"],input[type="reset"] { cursor: pointer; }

/* @base
----------------------------------------------------------*/
html, body { height: 100%; }

html {
  font-size: min(100%, 20px);
  background: #fff;
}
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", Osaka, sans-serif;
  letter-spacing: .04em;
  color: #333;
  font-size: .9375rem;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
  -webkit-animation: loading 1.5s;
  animation: loading 1.5s;
}
@-webkit-keyframes loading {
  0%   { opacity:0; }
  100% { opacity:1; }
}
@keyframes loading {
  0%   { opacity:0; }
  100% { opacity:1; }
}

.font-serif {
  font-family:
  "游明朝", "Yu Mincho", YuMincho,
  "ヒラギノ明朝 ProN W6", "HiraMinProN-W6",
  "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.font-en,
.subttl > span, .page-head .ttl_en, .g-tel,
.faq-list-item > *::before {
  font-family: 'Georgia', sans-serif;
}



a { color:#222; text-decoration:none; }
a:not([class]) { text-decoration:underline; }
a:not(.fade), .anime { -webkit-transition:all .5s; transition:all .5s; }
a:not([class]):hover, a:not([class]):focus { text-decoration:none; }
a:focus { outline:none; }

.clearfix::after { content:""; display:block; clear:both; }

.wide   { width: 100%; }

.pos-r { position:relative; }

.iblock { display:inline-block; }
.block  { display:block; }
.hide   { display:none; }

.fl-left { float:left; }
.fl-right { float:right; }

.ta-left { text-align:left; }
.ta-center { text-align:center; }
.ta-right { text-align:right; }
.ta-justify { text-align:justify; }

.va-top  { vertical-align:top; }
.va-mid  { vertical-align:middle; }
.va-btm  { vertical-align:bottom; }
.va-base { vertical-align:baseline; }

.fw-mid { font-weight:500; }
.fw-bold { font-weight:bold; }

.fz-small { font-size:.85em; }
.fz-big { font-size:1.35em; }

.fs-italic { font-style:italic; }
.ws-nowrap { white-space: nowrap; }

.is-fixed { position:fixed; top:0; right:0; bottom:0; left:0; }

.link-disabled { cursor:default; pointer-events:none; opacity:0.6; }

.marker { background:linear-gradient(transparent 45%, #fcf5bb 0%); }
.indent { padding-left:1em; text-indent:-1em; }

.li-disc, .li-decimal { padding-left:1.5em; }
.li-disc { list-style:disc; }
.li-decimal { list-style:decimal; }

.flex         { display:-webkit-flex; display:flex; -webkit-flex-wrap:wrap; flex-wrap:wrap; }
.flex-between { -webkit-justify-content:space-between;  justify-content:space-between;  }
.flex-center  { -webkit-justify-content:center; justify-content:center; }
.flex-align-center { -webkit-box-align:center; -webkit-align-items:center; align-items:center; }

.shadow { box-shadow:0 4px 0 rgba(65,73,77,.1); }


.txt-underline { text-decoration:underline; }
.link-txt { font-weight:bold; text-decoration:underline; }
.link-txt:hover { text-decoration: none; }


.bg-grad {
    background: #f3f3f3;
}

.bg-grad2 {
  background: #2e3346; 
}
.bg-grad3 {
  background: #cad8c7; 
}
.bg-common { background:#f3fbff; }
.color-common { color:#0091db; }
.color-red { color:#BC1A1A; }
.color-hilite { color:#ff0; }
.color-wht { color:#fff; }
.color-pink { color:#FF2A68; }

.fz-en { font-size:.875rem; }

.hv-fade { -webkit-transition:all .8s ease-out; transition:all .8s ease-out; }
.hv-fade:hover { opacity:.7; }

/* 1025px 以上  */
@media screen and (min-width: 1025px) {
  /* hover scale */
  a .hv-scale { -webkit-transition:all .8s ease-out; transition:all .8s ease-out; }
  a:hover .hv-scale  { -webkit-transform: scale(1.05); transform: scale(1.05); }
}
@media screen and (min-width: 600px) {
  .txt-v {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}


/* layout ------ */
#wrapper { position:relative; z-index:2; overflow:hidden; min-height:100%; background: #fff; }

.wide-inner { padding-left:10%; padding-right:10%; }
.inner { max-width:1420px; width:90%; margin-left:auto; margin-right:auto; padding-left:20px; padding-right:20px; }
.narrow-inner { max-width:920px; width:100%; margin-left:auto; margin-right:auto; padding-left:60px; padding-right:60px; }
.inner .narrow-inner { padding-left:0; padding-right:0; }

#main { display:block; }

/* recaptcha */
.grecaptcha-badge {
  display: none;
}

/* 960px 以上 (PC・タブレット横) */
@media screen and (min-width: 960px) {
  .pc-none { display: none; }
}
/* 600px 以上 (PC・タブレット) */
@media screen and (min-width: 769px) {
  .sp-only { display: none; }
}

/* 1024px 以下 (タブレット横以下) */
@media screen and (max-width: 1280px) {
  .wide-inner { padding-left:8%; padding-right:8%; }
  .inner { width:96%; padding-left:40px; padding-right:40px; }
  .pc-only { display:none; }
}

/* 959px 以下 (タブレット縦以下) */
@media screen and (max-width: 959px) {
  .wide-inner { padding-left:40px; padding-right:40px; }
  .inner { width:auto; }

}

/* 599px 以下 (スマホ)  */
@media screen and (max-width: 768px) {
  html { font-size:87.5%; }
  .wide-inner { padding-left:20px; padding-right:20px; }
  .inner, .narrow-inner { padding-left:20px; padding-right:20px; }
  .inner .narrow-inner { padding-left:0; padding-right:0; }

  .sp-none { display:none; }
  .sp-only { display:block; }
}

/* 340px 以下 (スマホ)  */
@media screen and (max-width: 340px) {
  .inner, .narrow-inner {  }
}

/* @component
----------------------------------------------------------*/
/* @title ------ */
/* @secttl */

.secttl .font-ttl {
  margin: 0 -.06em;
  font-size: 1.2em;
  vertical-align: -.03em;
  font-weight: 600;
  letter-spacing: .1em;
}

/* @arrow_ttl */
.arrow_ttl {
  position: relative;
  margin: 1.2em auto;
  color: #2e3346;
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: center;
}
.arrow_ttl > span {
  position: relative;
  display: inline-block;
  padding: 0 .25em .5em;
}
.arrow_ttl > span::before,
.arrow_ttl > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #fff;
}
.arrow_ttl > span::before {
  left: 0;
  right: 50%;
  margin-right: 10px;
}
.arrow_ttl > span::after {
  right: 0;
  left: 50%;
  margin-left: 10px;
}
.arrow_ttl::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: -11px auto 0;
  width: 20px;
  height: 20px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(45deg) skew(8deg, 8deg);
  transform: rotate(45deg) skew(8deg, 8deg);
}

/* @border_ttl */
.border_ttl {
  position: relative;
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1.4;
  border-bottom: 1px solid #FF2A68;
  
  padding-left: 20px;
  padding-right: 20px;
}
.border_ttl > span {
  position: relative;
  display: inline-block;
  padding: 0 .25em .1em;
}

/* @lead_ttl */
.lead_ttl {
  position: relative;
  margin-bottom: 1.2em;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  border-bottom:2px solid #FF2A68;
}


/* @lead_txt */
.lead_txt {
  margin-bottom: 1.5em;
  color: #2e3346;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
}
.lead_txt > span {
  display: inline-block;
}



/* @box -------- */
.c-box-wave {
  position: relative;
  padding-top: 5vw;
}
.c-box-wave::before{
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  height: 7.69vw;
  background: url(../img/common/wave.svg) no-repeat center top / auto 100%;
}
.c-box-wave::before {
  top: -1px;
}

.c-box-wave .secttl::before {
  color: #fff;
  opacity: .3;
}

.c-box {
  padding-bottom: 40px;
}

/* @header
----------------------------------------------------------*/
.g-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  margin: 0 auto;
  padding: 0.5rem 2.4rem;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: padding .5s ease-out;
  transition: padding .5s ease-out;
  background: rgb(255 255 255 / .6);
}
.g-header-wrap {
  position: relative;
}

.g-header-logo {
  width: 11.4375rem;
  
  -webkit-transition:width .5s ease-out; transition:width .5s ease-out;
}



/* @gnav */

ul.g-nav-list{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.g-nav-list li {
  margin-left: 1.5rem;
}
.g-nav-list li:nth-of-type(2) {
    margin-left: auto;
}

.g-nav-list li a {
  padding: 0 .8em;
  letter-spacing: .1em;
}
.g-nav-list li a:hover {
  color: #888;
}

.contact {
  margin-left: 1.8rem;
}
 .contact {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: .65em 1.2em .5em 3.1em;
  
  background: #FF2A68;
  
}
.contact a{
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}
.contact a:before {
    content: url(../img/common/mail.png);
    position: absolute;
    left: 15px;
    top: .92em;
}
.contact_tel  {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: .5em 1.2em .5em 3.1em;
  background: #0ABAB5;
  
}
.contact_tel a{
  color: #fff;
  font-weight: bold;
  font-size: 1.08rem;
}
.contact_tel a:before {
    content: url(../img/common/tel.png);
    position: absolute;
    left: 15px;
    top: .72em;
}
.contact a:hover {
  color: #888;
}
.contact_tel a:hover {
  color: #888;
}



/* @footer
----------------------------------------------------------*/
.g-footer {
  padding: 50px 0 10px;
  color: #fff;
  text-align: center;
  font-size: 1.1333rem;
  font-weight: 600;
  background: #2e3346;
}
.g-footer a {
  color: #fff;
}
.g-footer > .inner {
  /*display: flex;*/
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.g-footer-logo{
   width: 17rem;
   margin: 0 auto;
}
.g-footer-cache {
	margin: 0.5em 0 0;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}
 .kana {
  margin: 0;
  color: #fff;
  font-size: 1.1333rem;
  font-weight: 600;
  line-height: 1.4;
}
.g-footer-info {
  margin: 2em 0 0 ;
}

.g-footer-info .address{
  font-size: 1rem;
  margin: .2em 0;
}
.g-footer-info .name{
  font-size: 1.5rem;
  margin: .2em 0 1em; 
  line-height: 1.2;
}
.g-footer-info .tel,.g-footer-info .fax{
  font-size: 1.2rem;
  margin: .2em 0;
  line-height: 1.2;
}
.g-footer-info .tel a {
  text-decoration: none;
}


/* @pagetop */

#pagetop {
    position: fixed;
    right: 30px;
    bottom: -150px;
    z-index: 99;
}



/* @effect */
[class*="effect-"],
[class*="effect-cover"]::before {
  -webkit-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
}
/* fadeInUp */
.effect-fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}
.effect-fadeInUp.on-effect {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.effect-fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
}

/* fadeInRight / fadeInLeft */
.effect-fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
}

.effect-fadeInLeft.on-effect,
.effect-fadeInRight.on-effect {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* copyright */
.g-copyright {
  margin-top: 4rem;
  font-size: 13px;
}

/* @layout
----------------------------------------------------------*/
/* @wrapper */
#wrapper {
  padding-top:130px;
}
#top #wrapper {
 padding-top: 0;
}

/* @page-head */



/* @breadcrumb ------- */
.breadcrumb {
  margin-bottom: 2rem;
}
.breadcrumb li {
  display: inline-block;
  font-size: .8125rem;
}
.breadcrumb li, .breadcrumb a {
  color: #666;
  text-decoration: none;
}
.breadcrumb li:not(:last-child):after {
  content: "＞";
  padding: 0 .75em;
}

/* @404 */
.notfound-content .btn {
  margin-top: 3em;
}


/* レスポンシブ
----------------------------------------------------------*/

/* 960px 以上 */
@media screen and (min-width: 960px) {

}

@media screen and (max-width: 1024px) {
 
}

/* 959px 以下 (タブレット縦以下) */
@media screen and (max-width: 959px) {
  /* @Component
  ----------------------------------------------------------*/

  /* @title --------- */
  .secttl {
    font-size: 2.4rem;
  }
  .secttl::before {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  .arrow_ttl {
    font-size: 2.2rem;
  }


  /* @box --------- */
  .c-box-wave {
    padding-top: 5vw;
    /*padding-bottom: 10vw;*/
  }


  /* @header
  ----------------------------------------------------------*/

  .h-logo .g-header-logo {
    position: relative;
    z-index: 9999;
  }

  .sp-t-contact a{display: none;}
  .sp-t-contact_tel a{display: none;}

  
  
  /* @footer
  ----------------------------------------------------------*/
#pagetop {
  right: 0;
 }

  /* @layout
  ----------------------------------------------------------*/
  /* @wrapper */
  #wrapper {
    padding-top: 120px;
  }

}

/* 599x 以下 (スマホ)  */
@media screen and (max-width: 599px) {

  /* @header
  ----------------------------------------------------------*/
  .g-header {
    padding: 0.6rem 1.4rem;
    background:#fff;
  }
  
  .g-nav-list li {
    margin-left: .5rem;
}
  .g-nav-list li a {
    padding: .8em;
    letter-spacing: .1em;
}
  .sp-t-contact a{
   display: block;
   position: relative;
   z-index: 2;
   overflow: hidden;
   padding: 1em;
   background: #FF2A68;
   text-decoration: none;
}
  .sp-t-contact a {
    content: url(../img/common/mail.png);
    /*position: absolute;
    left: 15px;
    top: 1.0em;*/
}
   
 .sp-t-contact_tel a{
   display: block;
   position: relative;
   z-index: 2;
   overflow: hidden;
   padding: 1em;
   background: #0ABAB5;
   text-decoration: none;
}
  .sp-t-contact_tel a {
    content: url(../img/common/tel.png);
    /*position: absolute;
    left: 15px;
    top: 1.0em;*/
} 
  

  .contact,.contact_tel{display: none;}

  /* @footer
  ----------------------------------------------------------*/
  
  .g-footer-logo {
    width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
 
  /* @Component
  ----------------------------------------------------------*/
  /* @title ----- */

  /* @secttl */
  .secttl {
    font-size: 1.7rem;
	margin-bottom:0.5rem;
	padding-top: 2.6em;
  }
  .secttl::before {
    top: 30px;
  }
  .secttl > span {
    font-size: .8667rem;
  }
  
*, *:before, *:after {
    box-sizing: border-box;
}
  /* @arrow_ttl */
  .arrow_ttl {
	margin: 0.2em auto;
    font-size: 1.55rem;
  }
  .arrow_ttl > span {
    padding: 0 0 .5em;
  }

  /* @lead_ttl */
  .lead_ttl {
    font-size: 1.5rem;
    line-height: 1.6;
  }

   /* @lead_txt */
   .lead_txt {
    font-size: 1.2rem;
  }


  /* @box -------- */
  .c-box-wave {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }





}
@media screen and (min-width: 600px) {
  .sp-only { display: none; }

  .fz-small-pc { font-size:.9375rem; }

  a[href^="tel:"] { pointer-events: none; cursor: default; text-decoration: none;}
}
