@charset "UTF-8";
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 415px) {
  html,
  body {
    font-size: 14px;
  }
}

body {
  min-height: 100vh;
}

a {
  color: #4e4e4e;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed !important;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1;
}
.hd_bg .hd {
  position: relative;
  min-height: 50px;
  padding: 5px 50px 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s;
}
.hd_bg .hd .hd_logo a:hover {
  opacity: 0.7;
}
.hd_bg .hd .hd_logo a img {
  width: 100px;
  height: auto;
}
.hd_bg .hd .hd_logo a p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #000;
}
.hd_bg .hd .hd_logo a p span {
  font-size: 11px;
  letter-spacing: 0.01em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0px;
}
@media screen and (max-width: 415px) {
  .hd_bg .hd .hd_logo a p span {
    font-size: 11px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0px;
  }
}
.hd_bg .hd .hd_banner_wrapper a {
  display: none;
}
.hd_bg .hd .sp_hd_banner_wrapper {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  margin-top: 20px;
}
.hd_bg .hd .sp_hd_banner_wrapper a {
  text-decoration: none;
  background: #c35325;
  color: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  gap: 10px;
  margin: 10px;
  font-size: 1rem;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 0px;
  right: -110%;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  max-width: 415px;
  height: 100%;
  background: #fff;
  color: #4e4e4e;
  box-shadow: 0px 0px 2px #000;
  transition: All 0.5s ease;
}
.nav .nav_list {
  padding: 90px 30px 0px;
}
.nav .nav_list > li {
  position: relative;
  min-width: 170px;
}
.nav .nav_list > li > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 500;
  color: #4e4e4e;
  display: block;
  padding: 1em 8em 1em 0.5em;
  text-decoration: none;
  position: relative;
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background-color: rgba(255, 162, 22, 0.2);
}
.nav .nav_list > li > a img {
  display: none;
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 0.8em;
  right: 0.5em;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-color: #fff;
}
.nav .nav_list > li .child_wrap_btn:hover {
  background-color: #ffa216;
}
.nav .nav_list > li .child_wrap_btn:hover::before, .nav .nav_list > li .child_wrap_btn:hover::after {
  background-color: #fff;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #ffa216;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li > .child_wrap {
  display: none;
  width: 100%;
}
.nav .nav_list > li .nav_clist > li {
  position: relative;
  list-style-type: none;
  margin: 0;
}
.nav .nav_list > li .nav_clist > li > a {
  background-color: rgba(255, 162, 22, 0.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: #fff;
  display: block;
  font-size: 14px;
  padding: 1em 2em 1.5em;
  text-align: center;
  text-decoration: none;
}
.nav .nav_list > li .nav_clist > li > a:hover, .nav .nav_list > li .nav_clist > li > a.current {
  background-color: rgba(255, 162, 22, 0.9);
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.nav .nav_list > li .nav_clist > li > .child_wrap {
  display: none;
}
.nav .nav_list > li .nav_clist > li .nav_glist > li > a {
  background-color: rgba(255, 162, 22, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 2em 1.5em;
  text-align: center;
  text-decoration: none;
}
.nav .nav_list > li .nav_clist > li .nav_glist > li > a:hover, .nav .nav_list > li .nav_clist > li .nav_glist > li > a.current {
  background-color: #ffa216;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.nav .sp_nav_info {
  display: flex;
  flex-direction: column;
  padding: 30px 15px;
  width: 100%;
}
.nav .sp_nav_info .sp_nav_logo {
  margin-bottom: 10px;
}
.nav .sp_nav_info .sp_nav_logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s;
}
.nav .sp_nav_info .sp_nav_logo a:hover {
  opacity: 0.7;
}
.nav .sp_nav_info .sp_nav_logo a img {
  width: 30px;
  height: auto;
}
.nav .sp_nav_info .sp_nav_logo a p {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.nav .sp_nav_info .sp_nav_logo a p span {
  font-size: 10px;
}
.nav .sp_nav_info .sp_nav_number {
  text-align: center;
}
.nav .sp_nav_info .sp_nav_number p {
  font-size: 10px;
  color: #969697;
}
.nav .sp_nav_info .sp_nav_number a {
  font-size: 16px;
  color: #ffa216;
  text-decoration: none;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  padding: 20px;
  background-color: #ffa216;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0.5em;
  width: 70%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 13px;
}
.sp_nav_trigger span:nth-of-type(2) {
  bottom: 22px;
}
.sp_nav_trigger span:nth-of-type(3) {
  top: 37px;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 20px 10px 30px;
}
.con .main {
  margin-bottom: 30px;
}
.con .side .side_head {
  background-color: #eee;
  color: #111;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 10px;
  text-align: center;
}
.con .side .side_nav_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #ccc;
  color: #111;
  display: block;
  font-size: 14px;
  padding: 12px 10px;
  text-decoration: none;
}
.con .side .side_nav_list li a:hover {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft {
  margin-top: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}
.ft .ft_copy {
  font-size: 10px;
  text-align: center;
}
.ft .ft_lang_list {
  display: flex;
}
.ft .ft_lang_list li {
  width: 50%;
}
.ft .ft_lang_list a {
  font-size: 9px;
  color: #fff;
  background: #333;
  padding: 14px;
  display: block;
  text-decoration: none;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
.ft .ft_lang_list li:first-child a {
  border-left: none;
}

.ft_bg {
  margin-top: auto;
}
.ft_bg .ft_info {
  position: relative;
  min-height: 240px;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  align-items: center;
  background-color: #ffecd0;
}
.ft_bg .ft_info .ft_info_right {
  display: flex;
  flex-direction: column;
  padding: 0px 15px 20px;
  width: 100%;
}
.ft_bg .ft_info .ft_info_right .ft_logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 15px;
  transition: 0.3s;
  justify-content: center;
}
.ft_bg .ft_info .ft_info_right .ft_logo a:hover {
  opacity: 0.7;
}
.ft_bg .ft_info .ft_info_right .ft_logo a img {
  width: 30%;
  height: auto;
}
.ft_bg .ft_info .ft_info_right .ft_logo a p {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.ft_bg .ft_info .ft_info_right .ft_logo a p span {
  font-size: 14px;
  font-weight: normal;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0px;
}
@media screen and (max-width: 415px) {
  .ft_bg .ft_info .ft_info_right .ft_logo a p span {
    font-size: 13px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: -0.2px;
  }
}
.ft_bg .ft_info .ft_info_right .ft_number {
  text-align: center;
}
.ft_bg .ft_info .ft_info_right .ft_number p {
  font-size: 14px;
  color: #969697;
  font-family: "M PLUS 1p", sans-serif;
}
.ft_bg .ft_info .ft_info_right .ft_number a {
  font-size: 16px;
  color: #ffa216;
  text-decoration: none;
}
.ft_bg .ft_info .nav_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
  background-color: #fff;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 40px;
}
@media screen and (max-width: 415px) {
  .ft_bg .ft_info .nav_bg .ft_nav .nav_list {
    gap: 0px 20px;
  }
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li {
  display: flex;
  flex-direction: row;
  position: relative;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li::before {
  content: "";
  width: 1px;
  height: 1em;
  position: absolute;
  top: 1.3em;
  left: -20px;
  background-color: #4e4e4e;
}
@media screen and (max-width: 415px) {
  .ft_bg .ft_info .nav_bg .ft_nav .nav_list > li::before {
    top: 0.2em;
    left: -10px;
  }
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li:last-child::after {
  content: "";
  width: 1px;
  height: 1em;
  position: absolute;
  top: 1.3em;
  right: -20px;
  background-color: #4e4e4e;
}
@media screen and (max-width: 415px) {
  .ft_bg .ft_info .nav_bg .ft_nav .nav_list > li:last-child::after {
    top: 0.2em;
    right: -10px;
  }
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li > a {
  font-size: 16px;
  color: #4e4e4e;
  font-weight: bold;
  display: block;
  padding: 1em 0em 1.5em;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 415px) {
  .ft_bg .ft_info .nav_bg .ft_nav .nav_list > li > a {
    font-size: 16px;
    padding: 0;
  }
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li > a:hover, .ft_bg .ft_info .nav_bg .ft_nav .nav_list > li > a.current {
  color: #ffa216;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li > a img {
  display: none;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .child_wrap_btn {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
  background-color: #fff;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .child_wrap_btn:hover {
  background-color: #ffa216;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .child_wrap_btn:hover::before, .ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .child_wrap_btn:hover::after {
  background-color: #fff;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .child_wrap_btn::before, .ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #ffa216;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li > .nav_title {
  display: flex;
  gap: 10px;
  width: 130px;
  font-weight: bold;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li > .child_wrap {
  display: none;
  position: absolute;
  bottom: 3em;
  left: -20px;
  width: 140px;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li {
  position: relative;
  list-style-type: none;
  margin: 0;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li > a {
  background-color: rgba(255, 162, 22, 0.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: #fff;
  display: block;
  font-size: 14px;
  height: 50px;
  min-width: 140px;
  padding: 1em 0em 1em;
  text-align: center;
  text-decoration: none;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li > a:hover, .ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li > a.current {
  color: #ffa216;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li > .nav_title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 162, 22, 0.7);
  gap: 10px;
  height: 50px;
  min-width: 140px;
  text-align: center;
  background-color: rgba(255, 162, 22, 0.7);
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li > .nav_title a {
  color: #fff;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li > .nav_title .child_wrap_btn {
  display: none;
  background-color: #fff;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li > .nav_title .child_wrap_btn:hover::before, .ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li > .nav_title .child_wrap_btn:hover::after {
  background-color: rgba(255, 162, 22, 0.7);
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li > .child_wrap {
  display: none;
  position: absolute;
  bottom: 0em;
  left: 140px;
  width: 100%;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li .nav_glist > li > a {
  background-color: rgba(255, 162, 22, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: #fff;
  display: block;
  font-size: 14px;
  height: 50px;
  min-width: 140px;
  padding: 1em 0em 1em;
  text-align: center;
  text-decoration: none;
}
.ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li .nav_glist > li > a:hover, .ft_bg .ft_info .nav_bg .ft_nav .nav_list > li .nav_clist > li .nav_glist > li > a.current {
  background-color: #ffa216;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.ft_bg .ft_info .nav_bg .ft_nav .sp_nav_info {
  display: flex;
  flex-direction: column;
  padding: 30px 10%;
  width: 100%;
}
.ft_bg .ft_info .nav_bg .ft_nav .sp_nav_info .sp_nav_logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s;
}
.ft_bg .ft_info .nav_bg .ft_nav .sp_nav_info .sp_nav_logo a:hover {
  opacity: 0.7;
}
.ft_bg .ft_info .nav_bg .ft_nav .sp_nav_info .sp_nav_logo a img {
  width: 50px;
  height: auto;
}
.ft_bg .ft_info .nav_bg .ft_nav .sp_nav_info .sp_nav_logo a p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.ft_bg .ft_info .nav_bg .ft_nav .sp_nav_info .sp_nav_logo a p span {
  font-size: 12px;
  font-weight: normal;
}
.ft_bg .ft_info .nav_bg .ft_nav .sp_nav_info .sp_nav_number {
  text-align: center;
}
.ft_bg .ft_info .nav_bg .ft_nav .sp_nav_info .sp_nav_number p {
  font-size: 14px;
  color: #969697;
}
.ft_bg .ft_info .nav_bg .ft_nav .sp_nav_info .sp_nav_number a {
  font-size: 20px;
  color: #ffa216;
  text-decoration: none;
}
.ft_bg .ft {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  background-color: #afafae;
}
.ft_bg .ft .ft_copy {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ffa216;
  border-radius: 50%;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  position: relative;
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  transform: rotate(45deg);
}
.pt .pt_btn::before, .pt .pt_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #fff;
}
.pt .pt_btn::before {
  bottom: 0;
  width: 5px;
}
.pt .pt_btn::after {
  right: 0;
  height: 5px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider {
  margin-top: 50px;
}
.index_slider img {
  aspect-ratio: 2/1;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_slider .index_slide {
  margin-bottom: 20px;
}

.index_main {
  margin-bottom: 20px;
}

.index_greet {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  gap: 20px;
  height: auto;
}
.index_greet .greet_img {
  width: 100vw;
}
.index_greet .greet_img img {
  width: 100%;
}
.index_greet .greet_content {
  writing-mode: horizontal-tb;
  min-width: auto;
  padding: 20px 15px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.index_greet .greet_content h2 {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
  padding-left: 1em;
}
@media screen and (max-width: 415px) {
  .index_greet .greet_content h2 {
    font-size: 18px;
    line-height: 1.5;
    padding-left: 1em;
  }
}
.index_greet .greet_content p {
  font-size: 18px;
  line-height: 2.5;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 415px) {
  .index_greet .greet_content p {
    font-size: 12px;
    line-height: 2;
  }
}

.index_features {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 50px;
}
.index_features .feature_content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 50px 20px 20px;
  font-family: "Noto Sans JP", sans-serif;
}
.index_features .feature_content p {
  font-size: 18px;
}
@media screen and (max-width: 415px) {
  .index_features .feature_content p {
    font-size: 12px;
  }
}
.index_features .feature_img {
  display: flex;
  width: 100vw;
  margin-left: -10px;
}
.index_features .feature_img img {
  width: 50%;
}

.index_news {
  display: flex;
  padding: 50px 20px 50px;
}
.index_news .news_img img {
  display: none;
}
.index_news h2 {
  font-weight: 500;
  margin-bottom: 20px;
}

.news_content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.news_content .news_title {
  display: contents;
  position: relative;
}
.news_content .news_title .link_btn-horizon {
  bottom: -30px;
  order: 3;
}

.index_news_scrl {
  max-height: 500px;
  overflow: auto;
}

.index_news_item {
  border-top: 1px solid #d8d8d8;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  padding: 20px 0;
  width: 100%;
}
.index_news_item:last-child {
  border-bottom: 1px solid #d8d8d8;
}

.index_news_item_date {
  width: 100%;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
}

.index_news_item_ttl {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}
@media screen and (max-width: 415px) {
  .index_news_item_ttl {
    font-size: 12px;
  }
}

.index_news_item_icon_new {
  display: inline-block;
  font-size: 12px;
  color: #4e4e4e;
  text-align: center;
  width: 60px;
  height: 18px;
  border-radius: 12px;
  margin-right: 1em;
  background-color: #ffe3b9;
}
.index_news_item_icon_new:before {
  content: "NEW";
}

/*----------------------------------------------------------------------------
******************************************************************************
** pages
******************************************************************************
----------------------------------------------------------------------------*/
.page_header {
  width: 100%;
}
.page_header img {
  width: 100%;
}

.page_main .h2_horizon {
  width: 100%;
}
@media screen and (max-width: 415px) {
  .page_main .h2_horizon {
    padding: 20px 0 10px 40px;
  }
}
.page_main .h2_horizon::before {
  font-size: 62px;
  letter-spacing: 0.1em;
  padding: 0;
}
@media screen and (max-width: 415px) {
  .page_main .h2_horizon::before {
    font-size: 36px;
  }
}
.page_main .h2_horizon::after {
  top: 20%;
}
@media screen and (max-width: 415px) {
  .page_main .h2_horizon::after {
    left: -2%;
  }
}
.page_main .page_content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 30px;
}
.page_main .page_content .page_item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 415px) {
  .page_main .page_content .page_item {
    flex-direction: column;
  }
}
.page_main .page_content .page_item img {
  width: 40%;
}
@media screen and (max-width: 415px) {
  .page_main .page_content .page_item img {
    width: 100%;
  }
}
.page_main .page_content .page_item .page_text {
  position: relative;
}
.page_main .page_content .page_item .page_text p {
  width: 100%;
}
.page_main .page_contents .page_item {
  position: relative;
}
.page_main .page_contents .page_item h5 {
  text-align: center;
}
.page_main .page_contents .page_item p {
  width: 100%;
}
.page_main .page_contents .page_item {
  /*--------staff スタッフ--------*/
}
.page_main .page_contents .page_item figure.staff-image img {
  width: 100%;
  margin-left: 0px;
}
.page_main .page_contents .page_item {
  /*--------recruit 採用情報・見学--------*/
}
.page_main .page_contents .page_item .recruit-btn_wrap {
  margin: 30px 0 0;
  text-align: center;
}
.page_main .page_contents .page_item .recruit-btn_wrap .recruit-btn {
  background-color: #2e9c24;
  color: #fff;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1em;
  border-radius: 10px;
}
.page_main .page_contents .page_item .recruit-btn_wrap .recruit-btn:hover {
  color: #fff;
  opacity: 0.8;
}
.page_main .page_contents img {
  max-width: 100vw;
  margin-left: -10px;
}
.page_main .page_contents {
  /*--------about--------*/
}
.page_main .page_contents .about-zokusei-age,
.page_main .page_contents .about-zokusei-gender,
.page_main .page_contents .about-zokusei-univ {
  margin-bottom: 20px;
}
.page_main .page_contents .about-zokusei-age h5,
.page_main .page_contents .about-zokusei-gender h5,
.page_main .page_contents .about-zokusei-univ h5 {
  color: #ffffff;
  padding: 6px 14px 6px 10px;
  display: inline-block;
  line-height: 1.3;
  border-radius: 25px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0;
}
.page_main .page_contents .about-zokusei-age h5:before,
.page_main .page_contents .about-zokusei-gender h5:before,
.page_main .page_contents .about-zokusei-univ h5:before {
  content: "●";
  color: #ffffff;
  margin-right: 6px;
}
.page_main .page_contents .about-zokusei-age .waku,
.page_main .page_contents .about-zokusei-gender .waku,
.page_main .page_contents .about-zokusei-univ .waku {
  margin-top: -19px;
  padding: 25px 10px 15px 15px;
  border-radius: 6px;
}
.page_main .page_contents .about-zokusei-age h5 {
  background: #ff6c6c;
}
.page_main .page_contents .about-zokusei-age .waku {
  border: 3px solid #ff6c6c;
  background: #ffefef;
}
.page_main .page_contents .about-zokusei-gender h5 {
  background: #399431;
}
.page_main .page_contents .about-zokusei-gender .waku {
  border: 3px solid #399431;
  background: #e4ffe1;
}
.page_main .page_contents .about-zokusei-univ h5 {
  background: #454f99;
}
.page_main .page_contents .about-zokusei-univ .waku {
  border: 3px solid #454f99;
  background: #f3f5ff;
}
.page_main .page_contents {
  /*--------pharmacy 調剤室--------*/
}
.page_main .page_contents .two_column {
  flex-direction: column;
}
.page_main .page_contents .two_column figure {
  width: 100%;
}
.page_main .page_contents {
  /*--------pharmacy 調剤室--------*/
}
.page_main .page_contents .table-lab {
  margin: 10px auto 20px;
}
.page_main .page_contents .table-lab tbody tr td {
  background-color: #fff;
  font-weight: normal;
}

.link_btn-horizon {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 0 20px;
  font-size: 12px;
  color: #ffa216;
  text-decoration: none;
  outline: none;
  transition: 0.3s;
}
.link_btn-horizon:hover {
  opacity: 0.7;
}
.link_btn-horizon:hover::before {
  right: -2%;
}
.link_btn-horizon:hover::after {
  right: -11px;
}
.link_btn-horizon::before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -1%;
  width: 120px;
  height: 1px;
  background: #ffa216;
  transition: all 0.3s;
}
.link_btn-horizon::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -6px;
  width: 15px;
  height: 1px;
  background: #ffa216;
  transform: rotate(35deg);
  transition: all 0.3s;
}

.link_btn-vertical {
  display: none;
}

.sp_link_btn-horizon {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 0 20px;
  font-size: 12px;
  color: #ffa216;
  text-decoration: none;
  outline: none;
  transition: 0.3s;
}
.sp_link_btn-horizon:hover {
  opacity: 0.7;
}
.sp_link_btn-horizon:hover::before {
  right: -2%;
}
.sp_link_btn-horizon:hover::after {
  right: -11px;
}
.sp_link_btn-horizon::before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -1%;
  width: 120px;
  height: 1px;
  background: #ffa216;
  transition: all 0.3s;
}
.sp_link_btn-horizon::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -6px;
  width: 15px;
  height: 1px;
  background: #ffa216;
  transform: rotate(35deg);
  transition: all 0.3s;
}

.con {
  line-height: 1.6;
  word-wrap: break-word;
  margin-top: 20px;
  padding: 0 15px;
}
.con a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.con .page_header {
  width: 100vw;
  margin-bottom: 50px;
}
.con .page_header img {
  height: 50px;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  margin-left: -10px;
}
.con .page_header .page_header_logo {
  position: relative;
  width: 100%;
}
.con .page_header .page_header_logo::after {
  position: absolute;
  bottom: -20px;
  right: 5%;
  content: "";
  display: inline-block;
  background-image: url(../images/decoration.png);
  background-size: contain;
  width: 50px;
  height: 50px;
}
.con h1 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.con h1::before {
  display: block;
  content: attr(data-text);
  font-size: 32px;
  font-weight: normal;
  color: #ffa216;
  line-height: 1;
  letter-spacing: 0.2em;
  font-family: "Montserrat", sans-serif;
}
.con h1::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 140px;
  background-color: #ffa216;
}
.con h2 {
  position: relative;
  display: inline-block;
  font-size: 24px;
  min-width: 200px;
  padding: 20px 0 10px 80px;
  margin-bottom: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 415px) {
  .con h2 {
    font-size: 18px;
    line-height: 1.5;
    padding: 20px 0 10px 40px;
  }
}
.con h2::before {
  display: block;
  content: attr(data-text);
  font-size: 14px;
  font-weight: 500;
  color: #ffa216;
  padding-bottom: 0.5em;
  padding-left: 0.5em;
  border-bottom: 2px solid #ffa216;
  font-family: "Montserrat", sans-serif;
}
.con h2::after {
  position: absolute;
  top: 0;
  left: 0px;
  content: "";
  display: inline-block;
  background-image: url(../images/decoration.png);
  background-size: contain;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 415px) {
  .con h2::after {
    top: 15px;
    left: -20px;
    width: 70px;
    height: 70px;
    z-index: -10;
  }
}
.con h2.h2_vertical {
  padding: 0;
  line-height: 1.4;
}
.con h2.h2_vertical::before {
  writing-mode: horizontal-tb;
  border-left: none;
  padding: 0 0 8px 0;
}
.con h2.h2_vertical::after {
  display: none;
}
.con h3 {
  font-size: 1.3em;
  margin-block: 10px 15px;
  padding: 0.2em 0.6em;
  border-top: 2px solid #ffa216;
  border-bottom: 2px solid #ffa216;
}
.con h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 0em 0.5em;
  border-left: 5px solid #ffa216;
  border-bottom: 1px solid #ccc;
  background-color: #fdfdfd;
}
.con h5,
.con h6 {
  margin-bottom: 2px;
  margin-top: 5px;
}
.con hr {
  border: none;
  border-top: 1px dotted #000;
}
.con iframe {
  max-width: 100%;
}
.con img {
  max-width: 100%;
  height: auto;
}
.con ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.con ol li {
  margin-left: 1em;
  margin-bottom: 0.5em;
  padding-left: 0.5em;
}
.con p {
  margin-bottom: 1em;
}
.con ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.con ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.con table {
  width: 100%;
}
.con table th, .con table td {
  border: 1px solid #595959;
  border-collapse: collapse;
  padding: 10px;
}
.con table th {
  background: #f0e6cc;
  text-align: center;
}
.con table td {
  padding: 3px;
  padding: 10px;
  height: 25px;
}
.con table td:first-child {
  background-color: #ffdbae;
  font-weight: 500;
  padding: 5px;
}
.con table .even {
  background: #fbf8f0;
}
.con table .odd {
  background: #fefcf9;
}/*# sourceMappingURL=sp.css.map */