@charset "utf-8";


/* =Reset
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, detail, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, detail, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* =Base
-------------------------------------------------------------- */

* {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
html {
  font-size: 62.5%;
}
body {
  min-width: 1280px;
  height: auto;
  background-color: #F9F9F9;
  color: #111;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.8;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  word-wrap: break-word;
}
@media only screen and (max-width:767px) {
  body {
    min-width: 0;
    font-size: 1.4em;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}
th {
  font-weight: normal;
  text-align: left;
}
a {
  color: #111;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: .2s linear;
}
a:hover {
  opacity: .8;
  text-decoration: none;
}
a:focus {
  outline: none;
}
/* color */
.primary {
  color: #094;
}
.sub1 {
  color: #E5F800;
}
.sub2 {
  color: #7CC99E;
}
.gray1 {
  color: #F5F5F5;
}
.gray2 {
  color: #4C524C;
}
.cmn-btn {
  background-color: #111;
  color: #FFF;
}
.cmn-btn:hover {
  opacity: 1;
  background-color: #094;
}
/* sp */
.sp-only {
  display: none;
}
@media only screen and (max-width:767px) {
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  a:hover {
    opacity: 1;
  }
  .sp-none {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  .is-hidden-desktop {
    display: none !important;
  }
}
@media only screen and (max-width:767px) {
  .is-hidden-mobile {
    display: none !important;
  }
}


/* =common
-------------------------------------------------------------- */

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}


/* =header
-------------------------------------------------------------- */

header {
  position: relative;
  overflow: hidden;
  background-color: #FFF;
}
header::before {
  position: absolute;
  top: -128px;
  right: 200px;
  width: 198px;
  height: 198px;
  border-radius: 50%;
  background-color: rgba(229,229,229,.22);
  content: "";
}
.header-inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  height: 100px;
  padding: 3rem;
}
.header-logo {
  width: 333px;
  height: 48px;
  margin-right: 90px;
}
.header-logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/site-logo.svg) center center / contain no-repeat;
  font-size: 0;
}
.global-nav {
  width: 100%;
}
.nav-list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.nav-item a {
  display: block;
  padding: 1.5rem;
  font-size: 1.4rem;
  letter-spacing: .02rem;
}
.nav-btn {
  margin-left: auto;
}
.nav-btn a {
  display: block;
  padding: .5rem 2rem;
  border-radius: 18px;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: .08em;
}
@media only screen and (max-width: 1240px) {
  header {
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 70px;
		overflow: visible;
    transition: .2s;
  }
  header.hide {
    top: -70px;
    box-shadow: none;
  }
  .header-inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 70px;
    padding: 1rem;
  }
  .header-logo {
    width: 228px;
    height: 33px;
    margin: 0;
  }
  .global-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    padding: 4rem;
    background-color: #094;
    transition: .2s;
  }
  .global-nav.show {
    display: block !important;
  }
  .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
  }
  .nav-item,
  .nav-btn {
    width: 100%;
  }
  .nav-item a,
  .nav-btn a {
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    background-color: transparent;
    color: #FFF;
    text-align: center;
  }
  .nav-btn {
    margin-left: 0;
  }
  .nav-burger {
    display: block;
    position: relative;
    width: 4rem;
    height: 4rem;
  }
  .nav-burger span {
    display: block;
    width: 20px;
    height: 2px;
    left: calc(50% - 10px);
    position: absolute;
    transform-origin: center;
    transition-duration: 86ms;
    transition-property: background-color,opacity,transform;
    transition-timing-function: ease-out;
    background-color: #707070;
  }
  .nav-burger span:nth-child(1) {
    top: calc(50% - 12px);
  }
  .nav-burger span:nth-child(2) {
    top: calc(50% - 1px);
  }
  .nav-burger span:nth-child(3) {
    top: calc(50% + 10px);
  }
  .nav-burger.is-open span:nth-child(1) {
    top: calc(50% - 1px);
    transform: rotate(135deg);
  }
  .nav-burger.is-open span:nth-child(2) {
    opacity: 0;
    background-color: #707070;
  }
  .nav-burger.is-open span:nth-child(3) {
    top: calc(50% - 1px);
    transform: rotate(45deg);
  }
}


/* =main
-------------------------------------------------------------- */

main {
  position: relative;
  overflow: hidden;
}

/* breadcrumb */
.breadcrumb {
  max-width: 1100px;
  margin: 3rem auto 4rem;
}
.breadcrumb ul {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.breadcrumb ul li {
  font-size: 1.2rem;
  letter-spacing: .06em;
}
.breadcrumb ul li:not(:first-child) {
  margin-left: 1rem;
}
.breadcrumb ul li:not(:first-child)::before {
  display: inline-block;
  width: 4px;
  height: 8px;
  margin-right: 1rem;
  background: url(../img/icon-breadcrumb.svg) center center / contain no-repeat;
  content: "";
}

/* content-title */
.content-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1100px;
  height: 60px;
  margin: 0 auto;
}
.content-title .title-main {
  position: relative;
  font-size: 3.2rem;
  letter-spacing: .15em;
}
.content-title .title-main::after {
  position: absolute;
  bottom: -2rem;
  left: 0;
  width: 80px;
  height: 6px;
  background: linear-gradient(to right, #00CC89, #B4F23F);
  content: "";
}
.content-title .nav-menu {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 115px;
}
.content-title .nav-menu li:not(:last-child) {
  margin-right: 3rem;
}
.content-title .nav-menu li a {
  display: block;
  padding: 1rem 3rem;
  border-radius: 2rem;
  background: linear-gradient(to right, #00CC89 50%, #B4F23F);
  color: #FFF;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .15em;
}
.content-title .nav-menu li a::after {
  display: inline-block;
  width: 10px;
  height: 6px;
  margin-left: 1rem;
  background: url(../img/icon-arrow-down.svg) center center / contain no-repeat;
  content: "";
}

/* content-kv */
.content-kv {
  position: relative;
  height: 500px;
  margin-top: 60px;
}
.kv-inner {
  position: relative;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
}
.kv-inner .catch {
  position: absolute;
  z-index: 1;
}
.content-kv .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.content-kv .photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: initial;
  height: 500px;
  transform: translate(-50%, -50%);
}

/* content-wrapper */
.content-wrapper {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: -35px auto 0;
  padding-top: 5rem;
  background-color: #F9F9F9;
}

@media only screen and (max-width: 767px) {
  .sec-main {
    margin-top: 70px;
    padding-top: 2rem;
  }
  .breadcrumb {
    margin: 0 2rem;
  }
  .content-title {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
    margin: 2rem;
  }
  .content-title .title-main {
    width: 100%;
    font-size: 2.4rem;
  }
  .content-title .nav-menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 6rem;
    margin-left: 0;
  }
  .content-title .nav-menu li,
  .content-title .nav-menu li:not(:last-child) {
    width: calc(50% - 7px);
    margin: .5rem 0;
  }
  .content-title .nav-menu li a {
    padding: 1rem;
    text-align: center;
  }
  .content-kv {
    height: auto;
    margin-top: 4rem;
  }
  .content-kv .photo img {
    height: 100%;
  }
  .content-wrapper {
    margin-top: 0;
  }
}


/* =footer
-------------------------------------------------------------- */

footer {
  position: relative;
}
.footer-menu {
  padding: 3rem 0;
  background-color: #094;
  color: #FFF;
}
.footer-menu .footer-inner {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*-webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;*/
  max-width: 1200px;
  margin: 0 auto;
}
.footer-menu a {
  padding: .5rem 0;
  color: #FFF;
}
.footer-menu .box-menu {
  margin-right: 3rem;
}
.menu-title {
  color: #FFF;
  font-size: 1.4rem;
  letter-spacing: .06em;
}
.menu-list li a {
  display: block;
  color: #FFF;
  font-size: 1.2rem;
  letter-spacing: .06em;
}
.footer-info .footer-inner {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 6rem 3rem 4rem;
}
.box-sns {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 2rem;
}
.box-sns .title {
  margin-right: 2rem;
}
.box-sns a {
  display: block;
  padding: .5rem;
}
.box-sns img {
  vertical-align: middle;
}
.box-address {
  margin-top: 3rem;
  padding-left: 2rem;
  border-left: 1px solid #094;
}
.box-address .heading {
  font-size: 1.3rem;
  letter-spacing: .06em;
}
.box-address .address {
  margin-top: 1rem;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: .06em;
}
.box-address .info {
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: .06em;
}
.box-address .info span {
  font-size: 1.4rem;
}
.box-address .btn {
  margin-top: 1rem;
}
.box-address .btn a {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 2rem;
  background-color: #094;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: .08em;
}
.box-address .btn img {
  vertical-align: middle;
}
.col-copy {
  text-align: right;
}
.col-copy .link a {
  display: inline-block;
  padding-bottom: 1rem;
  border-bottom: 1px solid #111;
  font-size: 1.3rem;
  letter-spacing: .06em;
}
.copyright {
  width: 174px;
  height: 26px;
  margin-top: 4rem;
  background: url(../img/txt-copyright-pc.svg) center center / contain no-repeat;
  font-size: 0;
}
#go-top {
  position: absolute;
  right: 20px;
  bottom: 50px;
  z-index: 99;
  width: 60px;
  height: 60px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#go-top.fixed {
  position: fixed;
}
#go-top.is-show {
  opacity: 1;
  pointer-events: initial;
}
#go-top:hover {
  opacity: .8;
  cursor: pointer;
}
.circle {
  position: absolute;
  top: -160px;
  right: 50px;
  z-index: 1;
  height: 160px;
}
@media only screen and (max-width: 767px) {
  .footer-menu {
    padding: 3rem;
  }
  .footer-menu .box-menu {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .footer-menu .menu-list {
    display: none;
  }
  .menu-title {
    margin: .5rem 0;
  }
  .footer-info .footer-inner {
    padding: 4rem 2rem 2rem;
  }
  #footer .header-logo {
    width: 310px;
    height: 45px;
  }
  .box-sns {
    margin-top: 1rem;
  }
  .col-copy {
    text-align: left;
  }
  .col-copy .link {
    display: none;
  }
  .copyright {
    margin-top: 2rem;
    background-image: url(../img/txt-copyright-sp.svg);
  }
  #go-top {
    right: 1rem;
    bottom: 1rem;
    width: 46px;
    height: 46px;
  }
  #go-top:hover {
    opacity: 1;
  }
  .circle {
    top: -45px;
    right: 20px;
    z-index: 10;
    height: 65px;
  }
  .circle svg {
    width: 65px;
    height: 65px;
  }
}

/* 本公開後削除 */
.col-copy .link {
	display: none;
}
