@charset "UTF-8";
/* ====================
comon
==================== */
:root {
  --primary-white: #FFFFFF;
  --primary-green: #009944;
  --primary-rightGreen: #E9F6F3;
  --primary-black: #333333;
  --primary-lightGray: #F9F9F9;
  --primary-Gradation: linear-gradient(81deg, #BFE8DF 0.08%, #DFF3EF 100%);
  --contentPadding: 4.2%;
}

html {
  font-size: 62.5%;
  background-color: var(--primary-white,#FFFFFF);
  scroll-behavior: smooth;
}

body {
  font-family: 
    "Zen Kaku Gothic New",
    Arial,
    sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-black,#333333);
  overflow-x: hidden;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.topic {
  display: block;
  width: 100%;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 2.56px;
  text-align: center;
}

.topic span {
  display: block;
  font-family: Oswald;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2.88px;
  margin-bottom: 4px;
  color: var(--primary-green,#009944);
}

a {
  cursor: pointer;
}

.btn-hover {
  transition: opacity 0.3s ease;
}

.btn-hover:hover {
  opacity: 0.6;
}

.pcBR {
  display: none;
}

/* ====================
contactList
==================== */
.contactList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 343px;
  height: 96px;
  padding: 0 38px 0 16px;
  border-radius: 80px;
  border: 1px solid var(--primary-green);
  background: rgba(255, 255, 255, 0.80);
  transition: background 0.3s;
}

.contact__item:hover {
  background: rgba(255, 255, 255, 1);
}

.contact__icon {
  display: flex;
  width: 64px;
  height: 64px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #DFF3EF;
  flex-shrink: 0;
}

.contact__icon img {
  padding: 22.6%;

}

/* tel */
.contactTel__txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
}

.contactTel__txt span {
  font-family: Oswald;
  font-size: 3.2rem;
}

/* mail */
.contactMail__txt {
  width: 100%;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

/* ====================
btn
==================== */
.button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 311px;
  height: 64px;
  padding: 8px 8px 8px 56px;
  align-items: center;
  gap: 8px;
  border-radius: 60px;
  border: 1px solid var(--primary-green);
  background-color: var(--primary-white);
  transition: all 0.3s ease;
}

.button:hover {
  color: var(--primary-white);
  background-color: var(--primary-green);
}

.button--text {
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}

.button div {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-green);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s;
}

.button:hover div{
  background-color: var(--primary-white);
}

.button div::after {
  content: '';
  display: block;
  background-image: url(../images/common/icon-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 18px;
  transition: all 0.3s;
}

.button:hover div::after {
  background-image: url(../images/common/icon-arrow-hover.svg);
}

/* ====================
table
==================== */
.table  {
  width: 100%;
}

.table tr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
}

.table th {
  width: 100%;
  display: flex;
}

.table td {
  width: 100%;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--primary-black);
}

.table ul {
  list-style-type: inherit;
  margin-left: 24px;
}

/* ====================
header
==================== */
.header {
  width: 100%;
  height: 64px;
  display: flex;
  gap: 12px;
  padding: 0 112px 0 2.1%;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

main {
  margin-top: -64px;
}

.header__logo {
  width: clamp(210px, 25vw, 299px);
  z-index: 100;
}

nav {
  background: var(--primary-white);
  width: 100%;
  height: 100%;
  padding: 64px var(--contentPadding) 0;
  line-height: 1.25;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(100%);
  z-index: 100;
  transition: transform 0.6s;
}

.nav.active {
  transform: translateX(0);
}

nav ul {
  margin-top: 12px;
}

nav li a {
  display: flex;
  padding: 16px var(--contentPadding);
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 153, 68, 0.40);
  position: relative;
  transition: transform 0.3s;
}

.nav__open-page {
  color: var(--primary-green);
}

nav li a:hover {
  color: var(--primary-green);
}

nav li a::after {
  content: '';
  background-image: url(../images/common/icon-arrow-hover.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 14px;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: var(--contentPadding);
  transition: transform 0.3s ease-in-out;
}

nav li a:hover::after {
  transform: translateY(-50%) translateX(8px); 
}
      
.contactList--nav {
  margin: 24px auto 0;
}

.header__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  position: fixed;
  top: 8px;
  right: 2.1%;
  z-index: 150;
}

.headerTel__btn {
  display: flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--primary-Gradation);
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.2);
}

.headerTel__icon {
  padding: 20.8%;
}

.headerTel__txt {
  display: none;
}



/* ====================
header__btn
==================== */
.hamburger__btn {
  display: flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 50%;
  padding: 12px 10px 8px;
  background: var(--primary-Gradation);
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.2);
  font-family: Oswald;
  font-size: 1rem;
  line-height: 1; /* 10px */
  letter-spacing: 1.6px;
  position: relative;
}

.hamburger__btn span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background-color: var(--primary-black);
  border-radius: 0.5px;
}

.hamburger__btn span {
  transition: all .5s;
  box-sizing: border-box;
}

.hamburger__btn span:nth-of-type(1) {
top: 12px;
}
.hamburger__btn span:nth-of-type(2) {
top: 20px;
}
.hamburger__btn span:nth-of-type(3) {
top: 28px;
}

.hamburger__btn span:last-of-type{
  position: static;
  background-color: transparent;
  width: 100%;
  height: auto;
  text-align: center;
  transform: translateX(0);
  }
  
.hamburger__btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(45deg);
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger__btn.active span:nth-of-type(2) {
opacity: 0;
}

.hamburger__btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(-45deg);
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger__btn.active span:last-of-type {
  opacity: 0;
}

/* ====================
pageTitle
==================== */
.pageTitle {
  margin-left: var(--contentPadding);
}

.pageTitle__content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.pageTitle__txt {
  display: flex;
  padding: 104px 20px 32px ;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: var(--black, #333);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 3.2px;
}

.pageTitle__txt span {
  color: var(--primary-green,#009944);
  font-family: Oswald;
  font-size: 2rem;
  font-weight: 400;
}

.subVisual--sp {
  border-radius: 40px 0px 0px 0px;
}

.subVisual--pc {
  display: none;
}

.pankuzu__list {
  margin-top: 10px;
  list-style-type: none;
  display: flex;
  gap: 8px;
  flex-direction: row;
}

.pankuzu__item {
  display: flex;
  gap: 8px;
  flex-direction: row;
  align-items: center;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.pankuzu__item::after {
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  background-color: #AAAAAA;
}

.pankuzu__item:last-of-type {
  color: var(--primary-green);
}

.pankuzu__item:last-of-type::after {
  display: none;
} 

/* ====================
contact__footer
==================== */
.contact__footer {
  padding: 80px var(--contentPadding);
  background-image: url(../images/common/footerContact-bg_sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0px 40px 0px 0px;
}

.topic--contactFooter{
  text-align: start;
}

.contactFooter__content {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0px 40px 0px 0px;
}

.contactFooter__textarea p {
  margin-top: 32px;
}

/* ====================
footer
==================== */
.footer {
  background-color: var(--primary-rightGreen);
  display: flex;
  padding: 48px var(--contentPadding) 32px var(--contentPadding);
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer__content {
  display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer__address {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__address > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-width: 210px;
}

.footerAddress__tel {
  display: block;
  white-space: nowrap;
}


.footer__content ul {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(2, auto);
  gap: 0.2em 2em;
}


.footer__content li a {
  font-size: 1.4rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  height: 40px;
  transition: color 0.3s;
}

.footer__content li:hover a {
  color: var(--primary-green);
}

/* ====================
lineUp
==================== */
.section--cmnLineUp {
  display: flex;
  justify-content: center;
}

.lineUp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 400px;
  padding: 0 32px 32px;
  position: relative;
}

.lineUp::after {
  content: '';
  display: block;
  width: 91.46vw;
  max-width: 400px;
  height: 72%;
  max-height: 592px;
  min-height: 464px;
  background-color: var(--primary-rightGreen);
  border-radius: 0px 32px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
}

.lineUp__img.fade {
  position: relative;
  display: block;
}

.lineUp__img.fade li {
  display: block;
}

.lineUp__img {
  display: block;
  width: 78vw;
  max-width: 336px;
}

.lineUp__content {
  display: flex;
  flex-direction: column;
}

.topic--lineUp {
  text-align: start;
}

.lineUp__txt {
  margin-top: 32px;
}

.lineUp__txt p:nth-of-type(2) {
  margin-top: 16px;
}

.button--lineUp {
  margin: 24px auto 0;
}

/* ====================
line
==================== */
.line {
  position: absolute;
  z-index: -10;
}

.line--tab,.line--pc {
  display: none;
}

/* ====================
btnTop
==================== */
.btnTop {
  width: 48px;
  height: 48px;
  padding-left: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--primary-Gradation);
  box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.2);
  font-family: Oswald;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: 1.6px;
  position: fixed;
  bottom: 1.5%;
  right: 1.5%;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;
}


/*
header 切り替えポイント
======================================== */
@media screen and (min-width: 968px) {
  .header {
    height: 80px;
    padding: 0 266px 0 2.7779%;
    justify-content: space-between;
    gap: 1.94%;
    position: fixed;
    top: 0;
    background-color: transparent;
    transition: background-color 0.3s ease;
  }

  main {
    margin-top: 0;
  }

  .header.scrolled {
    background-color: rgba(233, 246, 243, 0.88) ;
  }

  nav {
    background: transparent;
    width: 100%;
    height: auto;
    padding: 0;
    position: static;
    z-index: 100;
    transform: translate(0);
  }

  nav ul {
    margin: 0;
    display: flex;
    justify-content: flex-end;
  }

  nav li a {
    display: flex;
    padding: 16px 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-bottom: none;
    text-align: center;
    font-weight: 400;
    position: relative;
  }
      
  nav li:first-of-type ,nav li:last-of-type {
    display: none;
  }

  nav li a::after {
    background-image: none;
    background-color: var(--primary-green); 
    height: 2px; 
    position: absolute; 
    top: auto;
    bottom: 0;
    left: 0; 
    transform: scale(0, 1); 
    transform-origin: right top; 
    transition: transform 0.3s; 
    width: 100%;
  }
  nav li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1)
  }

  .contactList--nav{
    display: none;
  }

  .header__btn {
    position: static;
  }
    
  .headerTel__btn {
    width: 267px;
    height: 107px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    border-radius: 0px 0px 0px 20px;
    transition: 0.3s ease;
    position: absolute;
    top: -1px;
    right: -1px;
  }

  .headerTel__btn.scrolled  {
    height: 81px;
    border-radius: 0;
  }

  .headerTel__icon {
    display: none;
  }

  .headerTel__txt {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1;
  }

  .headerTel__txt.scrolled {
    gap: 8px;
  }

  .headerTel__txt span {
    font-family: Oswald;
    font-size: 3.2rem;
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .headerTel__txt span::before {
    content: '';
    display: block;
    background-image: url(../images/common/icon-tel.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 26px;
    height: 26px;
  }

  .hamburger__btn {
    display: none;
  }
}

/*
.pageTitle 表示調整
======================================== */
/* 769px 〜 1439px */
@media screen and (min-width: 769px) and (max-width: 1439px) {
  .pageTitle {
    margin-left: 60px;
    align-items: flex-end;
  }
  
  .pageTitle__content {
    max-width: 1260px;
  }
}

/* 1440px以上 */
@media screen and (min-width: 1440px) {
  .pageTitle {
    margin-left: 12.5%;
    justify-content: flex-end;
  }
}

/*
PC
======================================== */
@media screen and (min-width: 769px) {
  /* ====================
  comon pc
  ==================== */
  .topic {
    font-size: 4.8rem;
  }
  .topic span {
    font-size: 2.0rem;
  }

  .spBR {
    display: none;
  }

  .pcBR {
    display: block;
  }

  /* ====================
　contactList　PC
  ==================== */
  .contactList {
    gap: 24px;
    width: 100%;
    max-width: 516px;
  }

  .contact__item {
    justify-content: space-between;
    align-items: center;
    width: 480px;
    max-width: 100%;
    height: 120px;
    padding: 24px 52px 24px 32px;
  }

  /* tel */
  .contactTel__txt {
    font-size: 1.6rem;
  }

  .contactTel__txt span {
    font-size: 4rem;
  }

  /* mail */
  .contactMail__txt{
    font-size: 3rem;
  }

  /* ====================
  table　PC
  ==================== */
  .table  {
    max-width: 1080px;
  }
  
  .table tr {
    flex-direction: row;
    gap: 0;
  }
      
  .table th {
    width: 224px;
    flex-shrink: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--primary-green);
  }
  
  .table td {
    border-bottom: 1px solid var(--primary-black);
  }

  /* ====================
  pageTitle PC
  ==================== */
  .pageTitle {
    display: flex;
    flex-direction: column;
  }

  .pageTitle__txt {
    width: 100%;
    padding: 120px 40px 72px;
    font-size: 5.6rem;
  }

  .pageTitle__txt span {
    font-size: 2.4rem;
  }

  .subVisual--sp {
    display: none;
  }

  .subVisual--pc {
    display: block;
    border-radius: 80px 0px 0px 0px;
  }

  /* ====================
  contact__footer PC
  ==================== */
  .contact__footer {
    background-image: url(../images/common/footerContact-bg_pc.jpg);
    padding: 96px 60px 80px 60px;
    border-radius: 0px 80px 0px 0px;
  }

  .contactFooter__content {
    max-width: 1080px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 52px;
  }

  .contactFooter__textarea {
    flex: 0 1 calc(100% - 532px);
    min-width: 308px;
    max-width: 516px;
  }

  .contactList--footer {
    flex: 0 0 480px;
    width: auto;
  }

  /* ====================
  footer PC
  ==================== */
  .footer {
    padding: 56px 60px 12px;
    gap: 40px;
  }

  .footer__content {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
  }

  .footer__address {
    align-items: flex-start;
  }

  .footer__address p {
    text-align: start;
  }

  .copy {
    width: 100%;
    max-width: 1080px;
    text-align: start;
  }

  /* ====================
  lineUp　PC
  ==================== */
  .lineUp {
    max-width: 1160px;
    padding: 0;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 0;
  }

  .lineUp::after {
    width: 90vw;
    max-width: 1080px;
    height: 80%;
    min-height: 400px;
    bottom: 50%;
    transform: translate(-50%, 50%);
    border-radius: 0px 40px;
  }

  .lineUp__img {
    padding: 0;
    width: 43.53%;
    max-width: 506px;
  }

  .lineUp__content {
    width: 56.13%;
    padding-left: min(10%, 120px);
  }

  /* ====================
  line　PC
  ==================== */
  .line--sp {
    display: none;
  }

  .line--pc {
    display: block;
  }
}

