@charset "UTF-8";
/*----------------------------------------------
 reset styles
----------------------------------------------*/
main { margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; display:block; } 

/*----------------------------------------------
 formatting styles
----------------------------------------------*/
:root {
  --Blue: #4A92A2;
  --DarkGreen: #598B4C;
  --Green: #B1D2A2;
  --LightGreen: #DFEAD9;
  --Milk: #FCFCE8;
  --Footer: #34653F;
  --textBase: #333333;
  --Khaki: #CDCD77;
}
html { font-size: 62.5%; } 
body {
	font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	font-size: 1.3em;/* =13px */
	line-height: 1.6;
}
@media screen and (max-width:767px) {
body {
	-webkit-text-size-adjust: 100%;
}
th, td {
}
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  width: 100%;
  height: 100%;
}
a:visited {
}
a:hover {
}
.brPc {
  display: none;
}
img {
	border-style: none;
}
button {
  display: block;
  border: none;
}
h2 {
  font-size: 2.2rem;
  color: var(--textBase);
  text-align: center;
  margin-bottom: 18px;
}
h2::after {
  content: "";
  display: block;
  background: url(../img/h2-after.svg) no-repeat;
  width: 75px;
  height: 10px;
  margin: 18px auto 0;
}
@media print, screen and (min-width: 768px) {
  .brSp {
    display: none;
  }
  .brPc {
    display: block;
  }
  section .contentWrap {
    max-width: 1020px;
    padding: 0 20px;
    margin: 0 auto;
  }
  h2 {
    font-size: 3.0rem;
    line-height: 0.9;
    margin-bottom: 50px;
  }
  h2::after {
    background: url(../img/h2-after-pc.svg) no-repeat;
    margin: 30px auto 0;
    width: 105px;
    height: 10px;
  }
}
/*----------------------------------------------
 clearfix
----------------------------------------------*/
.clearfix:after {
    content:"";
    display:block;
    clear:both;
}

/*----------------------------------------------
 box-sizing
----------------------------------------------*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
/* ----------------------------------------------
斜めボタン　デフォルト；青
----------------------------------------------*/
.btn {
  height: 65px;
  width: 100%;
}
.btn span.btnSpan {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 45px 0 32px;
}
.btn a {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.0rem;
  font-weight: 700;
  background: var(--Blue);
  background-image: url(../img/allow-white.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 30px) center;
  border: 2px solid var(--Blue);
}
.btn a span.btnSpan::before,
.btn a span.btnSpan::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  z-index: 2;
}
/* 左上 */
.btn a span.btnSpan::before {
  left: -4px;
  top: -3px;
  border-top: 23px solid var(--Milk);
  border-right: 23px solid transparent;
}
/* 右下 */
.btn a span.btnSpan::after {
  right: -4px;
  bottom: -3px;
  border-top: 23px solid var(--Milk);
  border-right: 23px solid transparent;
  transform: rotate(180deg);
}
/* 左上線 */
.btn a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 6px;
  width: 34px;
  height: 3px;
  background: var(--Blue);
  transform: rotate(-45deg);
  border-radius: 999px;
  z-index: 3;
}
/* 右下線 */
.btn a::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 6px;
  width: 34px;
  height: 3px;
  background: var(--Blue);
  transform: rotate(-45deg);
  border-radius: 999px;
  z-index: 3;
}
@media print, screen and (min-width: 768px) {
  .btn {
    height: 75px;
    width: 345px;
  }
  .btn a {
    font-size: 2.2rem;
  }
  .btn a:hover {
    background-color: #fff;
    background-image: url(../img/allow-blue.svg);
    background-position: calc(100% - 30px) center;
    color: var(--Blue);
    transition: 0.3s ease;
  }
}
/* ----------------------------------------------
header
----------------------------------------------*/
header {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px 9px 15px;
  z-index: 100;
}
header .logo {
  display: flex;
  flex-direction: column;
}
header span {
  display: block;
}
header .topNameJa {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
}
header .topNameEn {
  color: #666;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: normal;
  
}
.scroll-prevent {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}
/* PC */
@media print, screen and (min-width: 768px) {
  header button {
    display: none;
  }
  header {
    height: 120px;
    padding: 20px 28px;
  }
  header .topNameJa {
    font-size: 2.2rem;
  }
  header .topNameEn {
    font-size: 1.6rem;
  }
  header nav h2 {
    display: none;
  }
  header nav ul {
    display: flex;
    align-items: center;
  }
  header nav li a {
    color: #000;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 10px 15px;
  }
  header nav li a:hover {
    color: #666;
  }
  /* お問い合わせボタン */
  nav .contact {
    width: 140px;
    min-width: fit-content;
    height: 80px;
    border-radius: 10px;
    background: var(--Blue, #4A92A2);
    display: flex;
    margin-left: 20px;
  }
  nav .contact a {
    display: block;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 42px 16px 12px 16px;
    background: url(../img/letter.svg) no-repeat center calc(0% + 11px);
    background-size: 36px 26px;
  }
  nav .contact:hover {
    background: #096e96;
  }
  header nav li.contact a:hover {
    color: #fff;
  }
  header nav li a:hover,
  nav .contact:hover {
    transition: 0.3s ease;
  }
}


/* ハンバーガーメニュー */
@media all and (max-width:767px) {
  header button {
    padding: 0;
  }
  .btnHamburger {
      position: fixed;
      z-index: 100;
      right: 0;
      top: 0;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      cursor: pointer; 
      width: 60px;
      height: 60px;
      background-color: rgba(255, 255, 255, 0.8);
  }
  .btnHamburger .open {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--textBase);
    padding-bottom: 5px;
  }
  .btnHamburger::before {
      content: "";
      position: absolute;
      left: 14px;
      top: 10px;
      width: 32px;
      height: 2px;
      background-color: var(--Blue);
  }
  .btnHamburger::after {
      content: "";
      position: absolute;
      left: 14px;
      top: 32px;
      width: 32px;
      height: 2px;
      background-color: var(--Blue);
  }
  .btnHamburger span::before {
      content: "";
      position: absolute;
      left: 14px;
      top: 21px;
      width: 32px;
      height: 2px;
      background-color: var(--Blue);
  }
  .open .btnHamburger::before {
      top: 21px;
      transform: rotate(-45deg);
  }
  .open .btnHamburger::after {
      top: 21px;
      transform: rotate(45deg);
  }
  .open .btnHamburger span::before {
      background-color: rgba(0, 0, 0, 0);
  }
  /* ▼ HTML、コード:2用 ▼ */
  .btnHamburger .close {
      display: none;
  }
  .open .btnHamburger .open {
      display: none;
  }
  .open .btnHamburger .close {
      display: block; /* none 以外の値 */
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--textBase);
      padding-bottom: 5px;
  }
  /* ▲ HTML、コード:2用 ▲ */
  nav#globalNav {
    position: fixed;
    z-index: 90;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 60px;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    transition-duration: 0.3s;
    transform: scale(0, 0);
    transform-origin: right top;
    background-color: #fff;
  }
  header.open  nav#globalNav {
    transform: scale(1, 1);
  }
  nav#globalNav .navSpPc h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }
  nav#globalNav .navSpPc h2::after {
    background: url(../img/menu-border.svg);
  }
  nav#globalNav .navSpPc {
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: #fff;
  }
  nav#globalNav .navSpPc .navUl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
  }
  nav#globalNav .navSpPc li {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed var(--Blue);
    background: url(../img/allow-blue.svg) no-repeat calc(100% - 15px) center;
  }
  nav#globalNav .navSpPc li::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 10px;
    border-radius: 100px;
    top: 30px;
    left: 5px;
    background-color: #ABAB30;
  }
  nav#globalNav .navSpPc a {
    display: block;
    width: 100%;
    height: auto;
    color: var(--textBase);
    font-size: 2.0rem;
    font-weight: 500;
    padding: 14px 30px 14px 24px;
  }
  .btnHamburger::before,
  .btnHamburger::after,
  .btnHamburger span::before {
  transition:
    top 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
  }
  /* ▼ HTML、コード:3用 ▼ */
  nav {
    z-index: 100; /* navを開く用ボタンより上になるようにして開く用ボタンを隠す */
  }
  nav .btnHamburger {
    /* 閉じるボタン用のCSS */
  }
  /* ▲ HTML、コード:3用 ▲ */
}

/* ----------------------------------------------
nav
----------------------------------------------*/
nav {
}

/* ----------------------------------------------
main
----------------------------------------------*/
main {
}

/* ----------------------------------------------
footoer
----------------------------------------------*/
footer {
  position: relative;
  width: 100%;
  background: var(--Footer);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
footer .ftWrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.6rem;
  padding-bottom: 30px;
  border-bottom: 1px dashed #fff;
}
footer .company {
  font-weight: 700;
  line-height: 1.8;
}
footer .inner {
  font-weight: 400;
  line-height: 1.6;
}
footer .telBox .telLink a,
footer .telBox .mail a {
  text-decoration: underline;
  color: #fff;
  cursor: pointer;
}
.copyright {
  font-size: 1.0rem;
  padding-top: 20px;
}
#pageTop {
  position: relative;
}
#pageTop a {
  display: block;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 10px;
  bottom: -150px;
  z-index: 10;
}
#pageTop a img {
  display: block;
  width: 100%;
  height: auto;
}
#pageTop .bottom {
  position: absolute;
}

@media print, screen and (min-width: 768px) {
  footer {
    padding: 60px 50px 80px 50px;
  }
  footer .ftContainer {
    display: flex;
    justify-content: space-between;
  }
  footer .ftWrap {
    flex-direction: row;
    gap: 30px;
    border: none;
    padding: 0;
  }
  footer .company {
    font-size: 1.8rem;
  }
  footer .inner {
    text-align: left;
  }
  footer a:hover {
    text-decoration: none;
  }
  footer .telBox .telLink a {
    text-decoration: none;
    cursor: text;
  }
  .copyright {
    font-size: 1.3rem;
    text-align: right;
    align-content: end;
    padding: 0 0 0 50px;
  }
  #pageTop a {
    width: 50px;
    height: 50px;
    right: 50px;
  }
  #pageTop a img {
    width: 50px;
    height: 50px;
  }
  #pageTop a:hover {
    background: url(../img/page-top-hv.svg) left top no-repeat;
    background-size: 50px 50px;
    transition: 0.3s ease;
  }
  #pageTop a:hover img {
    opacity: 0;
    transition: 0.6s;
  }
}