@charset "UTF-8";


:root {
  --color-black: #333;
  --color-black2: #231815;
  --color-white: #fff;
  --color-primary: #66d4a2;

  --color-grad: linear-gradient(90deg, rgba(93, 223, 145, 1) 33%, rgba(123, 217, 208, 1) 100%);

  --noto-sans: "Noto Sans JP", serif;

  --zen-min: "Zen Old Mincho", serif;
  --zen-kaku: "Zen Kaku Gothic New", sans-serif;

  --header: 12rem;
  scroll-padding: var(--header);
}


/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* font-size: 62.5%; */

  /* basefont-size 10px 1400px */
  font-size: clamp(5.5px, 0.5208vw, 10px);
}

body {
  font-family: var(--zen-min);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.8;
}



a {
  color: var(--color-black);
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: 1;
}


img {
  max-width: 100%;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */

@media screen and (max-width:767px) {
  html {
    /* basefont-size 10px 414px */
    font-size: 2.415vw;
  }


  body {
    font-size: 1.5rem;

  }

}

/*================================================
 *  header / ヘッダー
 ================================================*/
header#mainnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all .2s;
  padding: 4rem 0 2rem;
  background: transparent;
}

.nav_inner {
  width: 87.5%;
  min-width: 740px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: start;
}

.lower .nav_inner {
  opacity: 1 !important;
}

.nav_left {
  line-height: 1;
  position: relative;
  z-index: 201;
}

.nav_left a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: var(--color-white);
}

.nav_left span {
  font-size: 4.2rem;
  letter-spacing: 0.22em;
  margin-left: 1.5rem;
}

.nav_left img {
  width: 7rem;
  margin-right: 2rem;
}

/* .nav_right {
  margin-left: clamp(1rem, 5.8vw, 11.2rem);
  width: calc(100% - 48.2rem);
}

.nav_right-menu {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav_right-menu .entry {
  margin-left: auto;
}

.nav_right-menu li:not(.entry) a {
  color: var(--color-white);

  padding-right: clamp(1rem, 1.8vw, 3.5rem);
  padding-left: clamp(1rem, 1.8vw, 3.5rem);
  border-left: 1px solid var(--color-white);
}

.nav_right-menu li:first-child a {
  border: none;
}

.nav_right-menu li .detail {
  display: none;
} */



header#mainnav.changeNav,
.lower header#mainnav {
  background: rgb(255 255 255 / 80%);
}

header#mainnav.changeNav .nav_left a,
.lower header#mainnav .nav_left a {
  color: var(--color-black);
}

header#mainnav.changeNav li:not(.entry) a,
.lower header#mainnav li:not(.entry) a {
  color: var(--color-black);
}

header#mainnav.changeNav .nav_right-menu li:not(.entry) a,
.lower header#mainnav .nav_right-menu li:not(.entry) a {
  border-color: var(--color-black);
}

header#mainnav .nav_right-menu li:not(.entry) a:hover {
  color: var(--color-primary);
}

/* @media screen and (max-width:767px) { */



/* ハンバーガーメニュー内 */
nav.global__nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-white);
  transition: all .2s ease-out;
  z-index: 100;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;

  padding: 15rem calc((100% - 60rem) / 2) 0;
}

/* 表示 */
.open_nav .global__nav {
  opacity: 1;
  pointer-events: fill;
}

nav.gnav ul.nav_right-menu {
  display: block;
}

.nav_right-menu {
  border-top: 1px solid #e6e6e6;
}

.nav_right-menu li {
  border-bottom: 1px solid #e6e6e6;
}

.nav_right-menu li:not(.entry) a {
  color: var(--color-black);
  padding: 1.8rem 0;
  font-size: 2.3rem;
  border-left: none;
  display: block;
  position: relative;
}

.nav_right-menu li:not(.entry) a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/c_arrow.webp);
  width: 2.085rem;
  height: 0.49rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.nav_right-menu .entry {
  margin: 4.5rem 0 0 0;

  border: none;
}

.nav_right-menu .entry a {
  margin: 0 auto;
}

/* hamburger */
.hamburger {
  position: absolute;
  right: 5rem;
  top: 4rem;
  width: 6rem;
  height: 5rem;
  cursor: pointer;
  z-index: 300;
}

.hamburger::before {
  position: absolute;
  content: "MENU";
  bottom: -1.8rem;
  left: 0;
  width: 100%;
  font-size: 1.3rem;
  font-family: var(--zen-kaku);
  opacity: 0;
  transition: .2s;
  text-align: center;
}

/* line open */
.hamburger__line {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: all .2s ease-out;
}

.lower .hamburger__line {
  background-color: var(--color-primary);
}

.hamburger__line--1 {
  top: 20%;
}

.hamburger__line--2 {
  top: 50%;
}

.hamburger__line--3 {
  top: 80%;
}

.open_nav .hamburger__line--1 {
  transform: rotate(45deg);
  top: 50%;
  background-color: var(--color-primary);
}

.open_nav .hamburger__line--2 {
  width: 0;
  left: 50%;
}

.open_nav .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 50%;
  background-color: var(--color-primary);
}



.open_nav .hamburger::before {
  opacity: 1;
}

header#mainnav.changeNav .hamburger__line {
  background-color: var(--color-primary);
}

.nav_right-menu li .label::before,
.nav_right-menu li .label::after {
  position: absolute;
  content: "";
  background: var(--color-black);
  height: 1px !important;
  width: 2rem !important;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: .7;
  transition: all .2s;
}

.nav_right-menu li .label::after {
  transform: translateY(-50%) rotate(90deg);
}

.nav_right-menu li.open .label::after {
  transform: translateY(-50%) rotate(0deg);
}

.nav_right-menu li .detail {
  display: none;
  position: relative;
  top: -1rem;
}

/* .nav_right-menu li.open .detail {
  display: block;
} */



.nav_right-menu li .detail a {
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 1rem 0;

}

.nav_right-menu li .detail a::before {
  content: none;
}

.nav_right-menu li .detail a span {
  text-decoration: underline;
}

.open_nav .nav_left a {
  color: var(--color-black);
}

/* } */

.fixBtn {
  position: fixed;
  top: 2.5rem;
  right: 16rem;

  z-index: 200 !important;
}

@media screen and (max-width:767px) {
  header#mainnav {
    padding: 1.8rem 0;
  }

  .nav_inner {
    min-width: unset;
    width: calc(100% - (2.5rem * 2));
    width: 100%;
    padding: 0 2.6rem;
  }

  .nav_left img {
    width: 4rem;
    margin-right: 1rem;
  }

  .nav_left a {
    font-size: 1.2rem;
  }

  .nav_left span {
    font-size: 2.4rem;
    margin-left: 1rem;
  }

  /* hamburger */
  .hamburger {
    position: absolute;
    right: 1.5rem;
    top: 2rem;
    width: 3.4rem;
    height: 3.4rem;
    cursor: pointer;
    z-index: 300;
  }

  nav.global__nav {
    padding: 12rem 3rem 0;
  }

  .fixBtn {
    display: none;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  padding-bottom: 8rem;
  position: relative;
}

.section {
  padding-top: 8rem;
}

.wrap_md {
  width: 73%;
  margin-left: auto;
  margin-right: auto;
  min-width: 720px;
}

.wrap_sm {
  /* width: 60.4%; */
  width: 62.4%;
  margin-left: auto;
  margin-right: auto;
  min-width: 720px;
}


.hd span {
  display: block;
}

.hd .ja {
  font-size: 4.3rem;
}

.hd .en {
  font-size: 1.9rem;
  font-weight: 400;
  background: var(--color-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}

.subHd {
  margin-bottom: 8rem;
}

.subHd span {
  display: block;
}

.subHd .ja {
  font-size: 4.3rem;
  font-weight: 400;
}

.c_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  background: var(--color-white);
  position: relative;
  border-radius: 100rem;
  font-size: 2.5rem;
  padding: 1.2rem 0;
  margin: 0 auto;
}



.c_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 100rem;
  background: var(--color-grad);

  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all .4s;
}



.c_btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-grad);
  border-radius: 100rem;
  opacity: 0;
  transition: all .4s;
}

.c_btn:hover::after {
  opacity: 1;
}

.c_btn span {
  background: var(--color-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
  display: block;
  z-index: 2;
  transition: all .4s;
}

.c_btn:hover span {
  background: var(--color-white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
  display: block;
}

.entryBtn {
  display: block;
  position: relative;
  /* width: 28rem; */

  width: clamp(13rem, 14.5vw, 28rem);
  padding: 1.5rem 0;
  border-radius: 1rem;
  font-size: 1.3rem;
  text-align: center;
  font-family: var(--zen-min);
}

.entryBtn span {
  display: block;
  color: var(--color-white);
  font-size: 2.7rem;
  line-height: 1;
}

.entryBtn::before,
.entryBtn::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #FFB03B;
  background: linear-gradient(45deg, rgba(255, 176, 59, 1) 0%, rgba(255, 206, 78, 1) 100%);
  top: 0;
  left: 0;
  border-radius: 1rem;
  transition: all .4s;
}

.entryBtn:hover::before {
  opacity: 0;
}


.entryBtn::after {
  background: linear-gradient(-45deg, rgba(255, 176, 59, 1) 0%, rgba(255, 206, 78, 1) 100%);
  z-index: -1;
}

.entryBtn div {
  position: relative;
  z-index: 1;
}


.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

.i_arrow {
  background-image: url(../images/c_arrow.webp);
  width: 4rem;
  height: 0.86rem;
}



@media screen and (max-width:767px) {
  section {
    padding-bottom: 6rem;
  }

  .section {
    padding-top: 6rem;
  }

  .wrap_md {
    min-width: unset;
    width: calc(100% - 6rem);
  }

  .wrap_sm {
    min-width: unset;
    width: calc(100% - 3rem);
  }

  .hd .ja {
    font-size: 3rem;
  }

  .subHd {
    margin-bottom: 6rem;
    text-align: center;
  }

  .subHd .ja {
    font-size: 2.7rem;
  }

  .hd .en {
    font-size: 1.6rem;
    font-weight: 400;
    background: var(--color-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: fit-content;
  }

  .c_btn {
    width: 18rem;
    border-radius: 100rem;
    font-size: 1.9rem;
    padding: 0.8rem 0;
  }

  .i_arrow {
    width: 2rem;
    height: 0.49rem;
  }

  .entryBtn {
    width: 100%;
    font-size: 1.4rem;
  }

  .entryBtn span {
    font-size: 3.8rem;
  }
}



/*================================================
 *  フッター
 ================================================*/
footer {
  background: #fcf8f3;
  padding: 10rem 0 0;
}

.ft_logo {
  width: 27rem;
  margin: 0 auto;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 3;
}

.ft_add {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.8;
  margin: 4rem 0 8rem;
}

footer .copy {
  background: var(--color-white);
  font-size: 1.1rem;
  font-weight: 100;
  font-family: var(--zen-kaku);
  text-align: center;
  padding: 2rem 0 3rem;
}


@media screen and (max-width:767px) {
  footer {
    padding: 6rem 0 0;
  }

  .ft_logo {
    width: 13rem;
    font-size: 1.5rem;
  }

  .ft_add {
    text-align: left;
    font-size: 1.3rem;
    margin: 2rem auto 3rem;
    padding-top: 2rem;
    width: 35.6rem;
    border-top: 1px solid #f0e6d2;
    line-height: 2;
  }

  .ft_add p {
    width: fit-content;
    margin: 0 auto;
  }

  footer .copy {
    background: var(--color-white);
    font-size: 1.2rem;
    font-weight: 100;
    font-family: var(--zen-kaku);
    text-align: center;
    padding: 2rem 0 3rem;
  }
}

/*================================================
 *  subVis
 ================================================*/
#subVis {
  padding-top: 14rem;
  padding-bottom: 14rem;
}

#subVis .subVis_img {
  height: 40rem;
  width: 100%;
  overflow: clip;
}

#subVis .subVis_img img {
  height: 100%;
  width: 100%;
  overflow: clip;
  overflow: hidden;
  object-fit: cover;
  max-width: unset;
}

.breadcrumbs {
  width: 87%;
  margin: 3rem auto 0;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1.3rem;
}

.breadcrumbs span {
  color: var(--color-primary);
}

.breadcrumbs li:not(:last-child) {
  padding-right: 2.3rem;
  position: relative;
}

.breadcrumbs li:not(:last-child)::before {
  position: absolute;
  content: "/";
  right: 0;
  top: 0;
}




@media screen and (max-width:767px) {
  #subVis {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }

  #subVis .subVis_img {
    height: 20.5rem;
  }

  .breadcrumbs {
    width: calc(100% - 3rem);
    margin: 1rem auto 0;
  }
}


/*================================================
 *  
 ================================================*/


.newsList a {
  padding: 3rem 1rem;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #e6e6e6;
}

.newsList a:hover {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

.newsList a span {
  display: block;
}

.newsList .date {
  font-size: 1.7rem;
  padding-top: 0.4rem;
  min-width: 18rem;
}

@media screen and (max-width:767px) {
  .newsList a {
    flex-wrap: wrap;
    padding: 2rem 1rem;
  }

  .newsList .date {
    font-size: 1.5rem;
    padding-top: 0;
    min-width: 100%;
  }
}

/*================================================
 *  
 ================================================*/


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


/*================================================
 *  
 ================================================*/
.fadeUp {
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.8s ease;
  z-index: 1;
}

.fadeUp.on {
  opacity: 1;
  transform: translateY(0px);
}

.fadeIn {
  opacity: 0;
  transition: all 0.8s ease;
  z-index: 1;
}

.fadeIn.on {
  opacity: 1;
}

/* delay */
.del_02s {
  transition-delay: 0.2s !important;
}

.del_03s {
  transition-delay: 0.3s !important;
}

.del_04s {
  transition-delay: 0.4s !important;
}

.del_05s {
  transition-delay: 0.5s !important;
}

.del_06s {
  transition-delay: 0.6s !important;
}

.del_08s {
  transition-delay: 0.8s !important;
}

.del_1s {
  transition-delay: 1s !important;
}

.del_12s {
  transition-delay: 1.2s !important;
}

.del_14s {
  transition-delay: 1.4s !important;
}

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

/*================================================
 *  
 ================================================*/


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

/*================================================
 *  
 ================================================*/


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

/*================================================
 *  
 ================================================*/


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

/*================================================
 *  
 ================================================*/


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

/*================================================
 *  
 ================================================*/


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

/*================================================
 *  
 ================================================*/


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