:root {
  --main: #FC7152;
  --white: #ffffff;
  --black: #000000;
  --blue: #33ADBF;
  --black02: #333333;
}

.c_white {
  color: var(--white);
}
.c_main {
  color: var(--main);
}
.c_black {
  color: var(--black);
}
.c_blue {
  color: var(--blue);
}
.c_black02 {
  color: var(--black02);
}

.bg_white {
  background: var(--white);
}
.bg_black {
  background: var(--black);
}
.bg_blue {
  background: var(--blue);
}
.bg_main {
  background: var(--main);
}
.bg_black02 {
  background: var(--black02);
}


/* ================================================================= */
/* header */
/* ================================================================= */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: var(--white);
}

header .container {
  padding: 15px 0;
  width: 81.66666667%;
  margin: auto;
}

header .top_link {
  width: 21.12244898%;
  min-width: 150px;
  height: auto;
}

header .tel_box .tel_txt {
  font-size: 10px;
}

header .link_box {
  margin-top: 10px;
}

header .link_box .link_item {
  width: 17.14285714%;
  padding: 10px 0;
  border-radius: 10px;
  position: relative;
}

header .link_box .link_item a::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 60%;
  margin: auto;
  background: var(--black);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

header .link_box .link_item:last-of-type a::after {
  display: none;
}

header .link_box .link_item.active a::after {
  display: none;
}

header .link_box .link_item.active {
  background: var(--main);
}

header .link_box .link_item.active a {
  color: var(--white);
}

.current {
    background: #FC7152;
    padding: 10px 0;
    border-radius: 10px;
    position: relative;
	font-size:16px;
	text-align: center;
	color: white;
	font-weight: bold;
}

.ln_h15 {
    line-height: 2.5;
}

.ln_h15_re {
    line-height: 1.5;
}

/* responsive */
@media screen and (max-width: 1024px) {
  header .container {
    width: 90%;
  }

  header .top_box .tel_box {
    margin-left: auto;
    margin-right: 20px;
  }

  header .top_box {
    align-items: center;
  }

  header .link_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    padding: 100px 11.71875vw;
    padding-top: 150px;
    margin-top: unset;
    display: none;
    z-index: -1;
  }

  header .link_box .link_item {
    width: 100%;
    margin-top: 20px;
    padding: 15px 0;
  }

  header .link_box .link_item a::after {
    height: 1px;
    width: 100%;
    bottom: 0;
    top: unset;
  }

  header .link_box .link_item:last-of-type a::after {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  header .container {
    width: 95%;
  }

  header .top_box .tel_box {
    display: none;
  }

  header .hamburger {
    width: 35px;
    height: 35px;
  }

  header .link_box {
    padding: 100px 30px;
    padding-top: 120px;
  }

  header .link_box .link_item {
    padding: 8px 0;
  }
}

/* ================================================================= */
/* common_sec */
/* ================================================================= */
.common_sec {
  margin-top: 60px;
}

.common_sec .box_txt {
  margin-top: 20px;
}

.common_sec .notes_txt {
  margin-top: 20px;
}

.common_sec .second_box {
  margin-top: 60px;
}

/* responsive */
@media screen and (max-width: 480px) {
  .common_sec .box_txt {
    text-align: unset;
    line-height: 1.75;
  }

  .common_sec .second_box .second_txt {
    text-align: unset;
  }
}

/* ================================================================= */
/* common_btn */
/* ================================================================= */
.common_btn {
  width: 31.66666667vw;
  min-width: 200px;
  max-width: 380px;
  padding: 10px;
  border-radius: 25px;
  transition: all 0.4s;
}

.common_btn .arrow {
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  margin-right: 5px;
  transform: rotate(-45deg);
}

/* ================================================================= */
/* comment_txt */
/* ================================================================= */
.comment_txt {
  position: relative;
  width: fit-content;
  margin: auto;
  margin-top: 60px;
}

.comment_txt::after {
  position: absolute;
  content: "";
  width: 55px;
  height: 1px;
  bottom: 0;
  top: 0;
  transform: rotate(45deg);
  left: -80px;
  background: var(--black);
  margin: auto;
}

.comment_txt::before {
  position: absolute;
  content: "";
  width: 55px;
  height: 1px;
  bottom: 0;
  top: 0;
  transform: rotate(-45deg);
  right: -80px;
  background: var(--black);
  margin: auto;
}

/* ================================================================= */
/* arrow_link */
/* ================================================================= */
.arrow_link {
  margin-top: 20px;
  justify-content: flex-end;
  width: fit-content;
  margin-left: auto;
}

.arrow_link .arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--black02);
  border-bottom: 2px solid var(--black02);
  transform: rotate(-45deg);
  margin-right: 5px;
}

/* ================================================================= */
/* footer */
/* ================================================================= */
footer .top {
  background: var(--white);
  padding: 100px 0;
}

footer .top .container {
  width: 81.66666667%;
  max-width: 980px;
  margin: auto;
}

footer .top .top_link {
  width: 21.42857143%;
  min-width: 150px;
  height: auto;
  margin: auto;
}

footer .top .txt_box {
  color: #696971;
  width: fit-content;
  margin: auto;
  margin-top: 10px;
}

footer .top .txt_box .access_box {
  color: #696971;
}

footer .top .txt_box .access_box img {
  width: 16px;
  height: auto;
  margin-left: 5px;
}

footer .copyright {
  background: var(--main);
  padding: 15px 0;
}

/* responsive */
@media screen and (max-width: 1024px) {
  footer .top {
    padding: 60px 0;
  }
}

@media screen and (max-width: 480px) {
  footer .top {
    padding: 40px 0;
  }
}

/* ================================================================= */
/* hamburger */
/* ================================================================= */
.hamburger {
  width: 40px;
  height: 40px;
  background: var(--main);
  border-radius: 5px;
}

.hamburger .inner {
  position: relative;
  width: 50%;
  height: 100%;
  margin: auto;
}

.hamburger span {
  width: 100%;
  background: var(--white);
  height: 2px;
  position: absolute;
  left: 0;
  transition: all 0.4s;
  margin: auto;
}

.hamburger span:first-of-type {
  top: 40%;
}
.hamburger span:last-of-type {
  top: 60%;
  width: 80%;
}

.hamburger.active span:first-of-type {
  width: 100%;
  margin: auto;
  transform: rotate(135deg);
  top: 50%;
}
.hamburger.active span:last-of-type {
  width: 100%;
  margin: auto;
  transform: rotate(-135deg);
  top: 50%;
}

/* ================================================================= */
/* under_mv */
/* ================================================================= */
section.under_mv {
  width: 100%;
  background: #FFD6CD;
}

section.under_mv .container {
  width: 81.66666667%;
  margin: auto;
  padding: 90px 0;
}

/* responsive */
@media screen and (max-width: 1024px) {
  section.under_mv .container {
    width: 90%;
    padding: 60px 0;
  }
}