@charset "UTF-8";
/* Color Palette */
/* グローバルナビ切り替え用 */
/* mixin */
/* Header Space */
/* Wrap */
/* Padding */
/* Shadow */
/* Border line */
/*-----------
Root
-------------*/
:root {
  --logo-size-large: 120px;
  --logo-size-small: 60px;
  --large: 8rem;
  --medium: 5rem;
  --small: 2rem;
  --section-padding: 8rem 0;
  --desc-padding: 3rem;
  --transition: all 0.3s ease;
  --gutter: calc((100vw - 90vw) / 2); }

@media screen and (max-width: 880px) {
  :root {
    --large: 6rem;
    --medium: 4rem;
    --small: 1.5rem;
    --section-padding: 5rem 0;
    --desc-padding: 2rem; } }
@media screen and (max-width: 640px) {
  :root {
    --large: 3rem;
    --medium: 2rem;
    --small: 1rem;
    --section-padding: 3rem 0;
    --desc-padding: 1.5rem; } }
html, body {
  scroll-padding-top: 100px; }
  @media (max-width: 640px) {
    html, body {
      scroll-padding-top: 120px; } }

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  color: #1C1C1C;
  background: #F5F5F5;
  box-sizing: border-box; }

body {
  font-size: 1.6rem;
  font-family: "EquipSlab W03 Medium", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal; }
  @media (max-width: 640px) {
    body {
      font-size: 1.4rem; } }

*,
*::before,
*::after {
  box-sizing: inherit; }

sup {
  font-weight: normal;
  font-size: 30%;
  vertical-align: super;
  letter-spacing: 0; }

div,
img {
  vertical-align: bottom; }

.heisei-300 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 300;
  font-style: normal; }

.heisei-500 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 500;
  font-style: normal; }

.heisei-700 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-style: normal; }

.heisei-900 {
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 900;
  font-style: normal; }

.eng-txt {
  font-family: "EquipSlab W03 Medium", sans-serif;
  font-style: normal;
  line-height: 1;
  letter-spacing: 1px; }

h2 + p {
  margin: var(--medium) 0 var(--large); }
  @media (max-width: 1200px) {
    h2 + p {
      margin: var(--medium) 0; } }

h1, h2 {
  line-height: 1.8; }

h2, h3, h4, p {
  line-height: 1.6; }

/*
h2+p,
h3+p {
	font-size: 1.8rem;
	@include sp {
		font-size: 1.6rem;
	}
}*/
section {
  padding: var(--section-padding); }

a {
  text-decoration: none;
  line-height: 1;
  color: #ffffff; }
  a:hover {
    color: #1C1C1C; }

a.cta {
  color: #47816D;
  font-weight: 600; }
  a.cta:hover {
    text-decoration: underline; }

a.btn {
  color: #ffffff;
  background: linear-gradient(to top right, #47816d 0%, #47816d 35%, #6ead98 100%);
  text-decoration: none;
  padding: 1.6rem 3rem;
  display: inline-block;
  border: 1px solid #47816D;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1; }
  a.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to top right, #71bf9b 0%, #71bf9b 35%, #dde8be 100%);
    transition: width 0.4s ease;
    z-index: -1; }
  a.btn:hover {
    color: #47816D; }
    a.btn:hover::before {
      width: 100%; }
  @media (max-width: 880px) {
    a.btn {
      padding: 1.4rem 2rem;
      width: 80%;
      max-width: 400px;
      text-align: center; } }

.bg-gradient {
  background: linear-gradient(#373737, #25201B); }

.brand-green {
  color: #47816D; }

.bg-brand-green {
  background: #47816D;
  color: #ffffff; }

.note {
  font-size: 80%; }

.pic {
  width: 100%;
  height: auto; }

.wrapper {
  width: 90%;
  margin: auto; }
  @media (max-width: 640px) {
    .wrapper {
      width: 92%; } }

.small-wrapper {
  width: 90%;
  max-width: 1080px;
  margin: auto; }
  @media (max-width: 640px) {
    .small-wrapper {
      width: 92%; } }

.large-wrapper {
  width: 90%;
  max-width: 1440px;
  margin: auto; }
  @media (max-width: 640px) {
    .large-wrapper {
      width: 92%; } }

.align-c {
  text-align: center; }

.flexbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; }
  .flexbox.align-normal {
    align-items: normal; }

.pc-only {
  display: block; }
  @media (max-width: 1200px) {
    .pc-only {
      display: none; } }

.pcbtab-only {
  display: block; }
  @media (max-width: 880px) {
    .pcbtab-only {
      display: none; } }

@media (max-width: 880px) {
  .pcsp-only {
    display: none !important; } }
@media (max-width: 640px) {
  .pcsp-only {
    display: block !important; } }

@media (max-width: 640px) {
  .pctab-only {
    display: none !important; } }

.tabsp-only {
  display: none !important; }
  @media (max-width: 880px) {
    .tabsp-only {
      display: block !important; } }

.sp-only {
  display: none !important; }
  @media (max-width: 640px) {
    .sp-only {
      display: block !important; } }

ul {
  list-style-type: none;
  padding: 0;
  margin: 0; }

/*-----------
Animation
-------------*/
.fadeIn {
  opacity: 0;
  transform: translateY(50px);
  transition: all .75s 0s ease; }

.fadeIn.second {
  transition: all .75s 0.5s ease; }

.fadeInTtl {
  opacity: 0;
  transform: translateY(50px);
  transition: all .75s 0s ease; }

.slideIn {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards; }

.slideIn.second {
  transition: all .75s 0.5s ease; }

@keyframes rotateR {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@keyframes show {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/*-----------
gtranslate
-------------*/
.gtranslate_wrapper {
  border-left: 1px solid #f5f5f5;
  padding-left: 2rem; }
  @media (max-width: 640px) {
    .gtranslate_wrapper {
      padding-left: 0;
      border-left: none; } }

a.glink {
  margin-right: 8px;
  font-weight: 600 !important; }
  a.glink.gt-current-lang {
    font-weight: 600 !important;
    margin-right: 8px; }
    @media (max-width: 880px) {
      a.glink.gt-current-lang {
        margin-right: 16px; } }
    @media (max-width: 640px) {
      a.glink.gt-current-lang {
        margin-right: 10px; } }
  @media (max-width: 880px) {
    a.glink {
      font-size: 20px; } }
  @media (max-width: 640px) {
    a.glink {
      font-size: 16px; } }

/*-----------
Header
-------------*/
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  transition: all 0.3s ease;
  z-index: 900; }
  #main-header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem;
    transition: padding 0.3s ease; }
    @media (max-width: 640px) {
      #main-header .header-inner {
        padding: 2rem; } }
  #main-header .logo {
    opacity: 0; }
    #main-header .logo img {
      width: 160px; }
      @media (max-width: 640px) {
        #main-header .logo img {
          width: 100px; } }
  #main-header.scroll, #main-header.hover-scroll {
    background: #47816D;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
    /*.pc-menu > li > a {
    	color: $black;
    	&:hover { color: $brand-green;}
    }*/ }
    #main-header.scroll .logo, #main-header.hover-scroll .logo {
      opacity: 1; }
    #main-header.scroll .header-inner, #main-header.hover-scroll .header-inner {
      padding: 2rem;
      align-items: center;
      position: relative;
      /* メガメニューの位置基準 */ }
      @media (max-width: 640px) {
        #main-header.scroll .header-inner, #main-header.hover-scroll .header-inner {
          padding: 1rem 2rem; } }
    #main-header.scroll .mega-menu, #main-header.hover-scroll .mega-menu {
      top: 100%;
      /* 微調整が必要な場合 */ }

.pc-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  /*@include tab {
  	display:none;
  }*/ }
  @media (max-width: 640px) {
    .pc-menu {
      display: none; } }

.pc-menu > li {
  margin-left: 25px; }
  .pc-menu > li.with-mega:hover .mega-menu {
    display: block; }

.pc-menu > li > a {
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
  font-size: 1.6rem;
  line-height: 1; }
  .pc-menu > li > a:hover {
    color: #1C1C1C; }
  .pc-menu > li > a.instagram-icon {
    display: inline-block;
    padding-right: 2rem; }
    .pc-menu > li > a.instagram-icon img {
      width: 24px;
      height: 24px;
      vertical-align: baseline;
      transition: all 0.3s ease; }

.sp-menu {
  display: none;
  align-items: center;
  /*@include tab {
  	display:flex;
  }*/ }
  @media (max-width: 640px) {
    .sp-menu {
      display: flex; } }

.global-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 999;
  margin-left: 20px; }
  @media (max-width: 640px) {
    .global-nav-btn {
      width: 24px;
      height: 24px; } }
  .global-nav-btn div {
    position: relative;
    width: 100%;
    height: 3px;
    background: #FFF;
    transition: all 0.3s ease; }
    .global-nav-btn div::before, .global-nav-btn div::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 3px;
      background: #FFF;
      transition: all 0.3s ease; }
    .global-nav-btn div::before {
      transform: translateY(-12px); }
      @media (max-width: 640px) {
        .global-nav-btn div::before {
          transform: translateY(-8px); } }
    .global-nav-btn div::after {
      transform: translateY(12px); }
      @media (max-width: 640px) {
        .global-nav-btn div::after {
          transform: translateY(8px); } }
  .global-nav-btn.active div {
    background: transparent; }
    .global-nav-btn.active div::before {
      transform: rotate(45deg); }
    .global-nav-btn.active div::after {
      transform: rotate(-45deg); }

.drawer-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 65%;
  height: 100vh;
  z-index: 996;
  padding: 8rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  background: #1C1C1C;
  /*@include tab {
  	display:block;
  }*/ }
  .drawer-menu.active {
    display: block;
    transform: translateX(0); }
  @media (max-width: 640px) {
    .drawer-menu {
      display: block;
      padding: 4rem 2rem 2rem; } }

.drawer-menu > ul {
  list-style: none;
  padding: 4rem 0;
  margin: 0; }
  .drawer-menu > ul > li {
    margin-bottom: 1.5rem; }
    .drawer-menu > ul > li > a {
      text-decoration: none;
      color: #FFF;
      font-size: 1.6rem;
      display: block;
      padding: 2rem 0;
      text-align: left; }
      @media (max-width: 640px) {
        .drawer-menu > ul > li > a {
          padding: 1rem 0; } }
      .drawer-menu > ul > li > a.active {
        color: #47816D; }
      .drawer-menu > ul > li > a.instagram-icon {
        display: inline-block;
        			/*margin-right: 20px;
        			padding-left: 3rem;
        			border-left: 1px solid #f5f5f5;
        
        			@include sp{
        				padding-left: 2rem;
        				//margin-left: 1.5rem;
        
        			}*/ }
        .drawer-menu > ul > li > a.instagram-icon img {
          width: 25px;
          height: 25px;
          transition: all 0.3s ease; }

.drawer-menu li.active > a {
  color: #ffffff !important; }

.drawer-extend {
  display: none;
  width: 90%;
  max-width: 600px;
  margin: 1rem auto 0; }
  .drawer-extend > li {
    margin-bottom: 2rem; }
    .drawer-extend > li > a {
      font-size: 95%; }
  .drawer-extend .extend-more {
    display: none;
    padding-left: 1rem;
    margin: 1rem 0; }
    .drawer-extend .extend-more > li {
      margin: 1rem 0; }
      .drawer-extend .extend-more > li > a {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 95%; }
        .drawer-extend .extend-more > li > a img {
          width: 20px;
          height: auto; }
        .drawer-extend .extend-more > li > a .a-arrow {
          display: inline-block;
          margin-left: 1rem;
          width: 1.8rem; }
          .drawer-extend .extend-more > li > a .a-arrow svg {
            display: block;
            width: 100%;
            height: auto;
            stroke: currentColor;
            stroke-width: 2.5;
            transition: stroke 0.3s, transform 0.3s; }

.extend-trigger.active > a .a-arrow svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease; }

.drawer-trigger.active > a .a-arrow svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease; }

/*-----------
Footer
-------------*/
footer {
  background: #1C1C1C;
  color: #fff; }
  footer .footer-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: var(--large) 0; }
    @media (max-width: 640px) {
      footer .footer-content {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding: 4rem 0; } }
    footer .footer-content .flexbox {
      gap: 5rem; }
      footer .footer-content .flexbox.col {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start; }
        @media (max-width: 640px) {
          footer .footer-content .flexbox.col {
            justify-content: center;
            align-items: center; } }
      @media (max-width: 640px) {
        footer .footer-content .flexbox {
          gap: 3rem; } }
    footer .footer-content .logo {
      width: 65%;
      max-width: 240px; }
      @media (max-width: 640px) {
        footer .footer-content .logo {
          max-width: 300px; } }
      footer .footer-content .logo.nakato {
        width: 90%;
        max-width: 200px; }
    footer .footer-content .footer-icon {
      display: flex;
      gap: 4rem;
      width: auto;
      flex-shrink: 0; }
      footer .footer-content .footer-icon img {
        max-width: 70px; }
        @media (max-width: 640px) {
          footer .footer-content .footer-icon img {
            max-width: 60px; } }
      @media (max-width: 640px) {
        footer .footer-content .footer-icon {
          justify-content: center;
          margin: 0 0 3rem; } }
