@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #333333;
  --color-white: #ffffff;
  --color-bg: #F5F0EB;
  --color-gray: #DCDCDC;
  --color-green: #DAEDD1;
  --color-primary: #3F974C;



  --ja: "Noto Sans JP", sans-serif;
  --header: 15rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:768px) {
  :root {
    --header: 7rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1920>> 10px */
  font-size: clamp(1px, 0.520833vw, 100px);
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  background: var(--color-white);
  color: var(--color-black);
  line-height: 2;
}

body * {
  letter-spacing: 0.05em;
}

main {
  overflow: clip;
}

a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: .6;
}

img {
  max-width: 100%;

  display: block;
}

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 {
    font-size: 2.6666vw;
  }

  body {
    font-size: 1.5rem;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  /* position: fixed; */
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--color-white);

  padding: 3rem 16rem 3rem 3rem;
}

.nav_left a {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.7rem;
  color: var(--color-primary);
  position: relative;
}

.nav_left img {
  width: 24rem;
}

.nav_left a .wt {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.nav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_menu {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 3.2rem;
}

.nav_menu a {
  color: var(--color-primary);
  font-weight: 700;
}


@media screen and (max-width:767px) {
  header {
    padding: 2rem 1.5rem;
    transition: all .3s ease-out;
    position: fixed;
  }

  header.open_nav {
    background: var(--color-primary);
  }

  .nav_left a {
    font-size: 1rem;
    gap: 1rem;
  }




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

  .nav_left img {
    width: 12rem;
    transition: all .3s ease-out;
  }

  .nav_left a .wt {
    display: block;
    opacity: 0;
  }

  header.open_nav .nav_left a .wt {

    opacity: 1;
  }

  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 6rem;
    height: 6rem;
    cursor: pointer;
    z-index: 300;
    transition: all .1s ease-out;
  }


  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 2.5rem;
    height: 2px;
    background-color: var(--color-primary);
    transition: all .4s ease-out;
    transform: translateX(-50%);
  }

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

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

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

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(45deg);
    top: 50%;
    background-color: var(--color-white);
  }

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

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

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: 0;
    top: 6rem;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    transition: all .3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 3rem 1.8rem;
    opacity: 0;
    pointer-events: none;
  }

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

  nav.gnav.global__nav ul {
    display: block;
  }

  nav.gnav.global__nav ul a {
    color: var(--color-white);

  }

  nav.gnav.global__nav ul li {
    background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 2px, transparent 2px, transparent 5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  nav.gnav.global__nav ul .menuttl span {
    font-size: 6rem;
    font-weight: 700;
    opacity: .7;
    color: var(--color-white);
    line-height: 1;
  }


  nav.gnav.global__nav ul .entry,
  nav.gnav.global__nav ul .address {
    background-image: none;
    color: var(--color-white);
  }

  nav.gnav.global__nav ul .entry a {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 6.6rem;
    border: 2px solid;
    margin-top: 4rem;
  }




}

/*================================================
 *  banner
 ================================================*/
#banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#banner .btnArea {
  padding: 2rem 0 0.5rem;
  margin-top: 0;
}

#banner .btnArea ul li a img {
  max-height: 80px;
}

#banner .btnArea p {
  font-size: clamp(0.1rem, 2.4rem, 25px);
  margin-top: clamp(0.1rem, 3rem, 10px);
}

@media screen and (max-width:767px) {
  #banner {
    padding: 0;
  }

  #banner .btnArea {
    padding: 2rem 0 1rem;
  }

  #banner .btnArea ul {
    gap: 2rem;
  }

  #banner .btnArea ul li a img {
    max-height: unset;
  }
}

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


.section {
  padding-top: 14rem;
}

.hd {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5rem;
  padding-bottom: 1rem;
  position: relative;
}

.hd::before {
  position: absolute;
  content: "";
  width: 7rem;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}

.hd.ac::before {
  left: 50%;
  transform: translateX(-50%);
}

.bg_en {
  font-size: 21.2rem;
  font-weight: 700;
  color: var(--color-gray);
  letter-spacing: 0.04em;
  line-height: 1;
}

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

.btn_arrow {
  background-image: url(../images/btn_arrow.webp);
  width: 4.6rem;
  height: 4.6rem;
}

.btnArea {}

.c_btn {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.7rem;
}

.ac .c_btn {
  justify-content: center;
}

.wrap {
  width: 58%;
  margin-left: auto;
  margin-right: auto;
  min-width: 720px;
}

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

  .wrap {
    width: calc(100% - 2rem);
    min-width: unset;
  }

  .bg_en {
    font-size: 6.8rem;
  }

  .hd {
    font-size: 1.7rem;
    margin-bottom: 3rem;
  }

  .hd::before {
    width: 3.5rem;
  }

  .c_btn {
    font-size: 1.2rem;
  }

  .btn_arrow {
    width: 2.9rem;
    height: 2.9rem;
  }
}

/*================================================
* subVis
================================================*/
#subVis .bg_en {
  width: fit-content;
  margin-left: auto;
  padding-right: 12rem;
  font-size: 20rem;
}

@media screen and (max-width:767px) {
  #subVis {
    padding-bottom: 0;
  }

  #subVis .bg_en {
    padding-right: 0;
    font-size: 6.7rem;
  }
}


/*================================================
* 
================================================*/
#fix {
  position: fixed;
  width: 8rem;
  height: 26rem;
  top: 30rem;
  right: 0;
  z-index: 100;
}

#fix a {
  background: var(--color-white);
  color: var(--color-primary);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  border: 1px solid var(--color-primary);
  font-family: 700;
  font-size: 2rem;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}


@media screen and (max-width:767px) {
  #fix {
    width: 5.2rem;
    height: 17rem;
    top: 16rem;
  }

  #fix a {
    font-size: 1.5rem;
  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6rem 0;
}

footer .wrap {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 37rem;
}

.ft_logo {
  margin-bottom: 5rem;
}

.ft_logo a {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  gap: 2rem;
  font-weight: 700;
}

.ft_logo a img {
  width: 24rem;
}


.ft_entry a {
  width: 35rem;
  height: 6.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
}

.ft_address {
  font-size: 1.8rem;
  margin-top: 3rem;
  line-height: 1.6;
}

.ft_menu {
  margin-bottom: 2rem;
}

@media screen and (max-width:767px) {
  footer .wrap {
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;

  }

  .ft_logo {
    margin-bottom: 2rem;
  }

  .ft_logo a img {
    width: 20rem;
  }

  .ft_logo a {
    font-size: 1.5rem;
    gap: 1rem;
  }

  .ft_entry a {
    font-size: 2.2rem;

  }

  .ft_menu {
    display: none;
  }
}


/*================================================
* ani
================================================*/

/* fadeup */
.fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

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

.fadeRight {
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s ease;
}

.fadeRight.on {
  opacity: 1;
  transform: translateX(0px);
}

.delay01 {
  transition-delay: .1s;
}

.delay02 {
  transition-delay: .2s;
}

.delay03 {
  transition-delay: .3s;
}

.delay04 {
  transition-delay: .4s;
}

.delay05 {
  transition-delay: .5s;
}

.delay06 {
  transition-delay: .6s;
}

.delay08 {
  transition-delay: .8s;
}

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