@charset "UTF-8";
/*----------------------------------------------------------------------------******************************************************************************PC******************************************************************************----------------------------------------------------------------------------*/
@media screen and (min-width: 770px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Layout
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* ==== Base === */
  body {
    margin: 0;
    padding: 0;
    background: #eeeeee;
    color: #222;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .wrap {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .hd_bg .hd {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    padding: 0 10px;
  }
  .hd_bg .hd .hd_logo {
    display: flex;
    justify-content: space-between;
    width: 300px;
    line-height: 1.3;
  }
  .hd_bg .hd .hd_logo img {
    width: 60px;
    height: auto;
  }
  .hd_bg .hd .hd_logo a.site_title {
    display: block;
    width: 250px;
    text-decoration: none;
    color: #000;
    padding-left: 5px;
    font-size: 1.2rem;
  }
  .hd_bg .hd .hd_logo a.site_title span {
    font-size: 2rem;
  }
  .hd_bg .hd .hd_info {
    margin-top: -1em;
    text-align: right;
  }
  .hd_bg .hd .hd_info .hd_tel {
    color: #000;
    font-family: "Kosugi", sans-serif;
    font-size: clamp(0.5rem, 0.091rem + 2.05vw, 2rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .hd_bg .hd .hd_info .hd_btn {
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    align-items: center;
    font-family: "Kosugi", sans-serif;
  }
  .hd_bg .hd .hd_info .hd_btn_contact {
    margin-right: 10px;
  }
  .hd_bg .hd .hd_info .hd_btn_contact > a {
    display: flex;
    align-items: center;
    padding: 5px 21px;
    background: #3188cf;
    color: #fff;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.5s ease;
  }
  .hd_bg .hd .hd_info .hd_btn_contact > a:hover {
    opacity: 0.75;
  }
  .hd_bg .hd .hd_info .hd_btn_contact > a:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 14px;
    margin: 0 5px 0 0;
    background: url(../images/icon_contact.png) no-repeat center center;
    background-size: contain;
  }
  .hd_bg .hd .hd_info .hd_btn_access > a {
    display: flex;
    align-items: center;
    padding: 5px 21px;
    background: #434343;
    color: #fff;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.5s ease;
  }
  .hd_bg .hd .hd_info .hd_btn_access > a:hover {
    opacity: 0.75;
  }
  .hd_bg .hd .hd_info .hd_btn_access > a:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 16px;
    margin: 0 5px 0 0;
    background: url(../images/icon_access.png) no-repeat center center;
    background-size: contain;
  }
  .clone-hd {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 143px;
    transition: 0.3s;
    transform: translateY(-100%);
  }
  .hd_bnr_01 img {
    width: 180px;
  }
  .hd_bnr_02 img {
    padding: 5px 10px;
    background: #fff;
    border: solid 1px #999;
    border-radius: 15px;
    height: 50px;
    margin-left: 5px;
  }
  .hd_bnr_03 img {
    width: 160px;
    margin: 10px auto;
    border-radius: 15px;
  }
  .is-show {
    display: none;
    transform: translateY(0);
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .nav_bg {
    display: none;
    /*width: 100%;
    border-top: 2px solid #39af89;*/
  }
  .nav_bg .nav {
    overflow: visible;
  }
  .nav_bg .nav .nav_list {
    display: -ms-flexbox;
    display: block;
    width: 100%;
  }
  .nav_bg .nav .nav_list > li {
    position: relative;
    width: 100%;
    z-index: 1000;
    border-left: 1px solid #eee;
  }
  .nav_bg .nav .nav_list > li:nth-of-type(6n) {
    border-right: 1px solid #eee;
  }
  .nav_bg .nav .nav_list > li > a {
    display: -ms-flexbox;
    display: block;
    justify-content: center;
    align-items: center;
    height: 60px;
    color: #3a3a3a;
    font-family: "Kosugi", sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s ease;
  }
  .nav_bg .nav .nav_list > li > a:hover {
    background: #cf5e31;
    color: #fff;
  }
  .nav_bg .nav .nav_list > li > a.current {
    background: #cf5e31;
    color: #fff;
  }
  .nav_bg .nav .nav_list > li:hover .nav_clist {
    display: block;
    animation: nav_active 1s ease 0s 1 alternate;
  }
  .nav_bg .nav .nav_list .contact {
    display: none;
  }
  .nav_bg .nav .nav_list .access {
    display: none;
  }
  .nav_bg .nav .nav_list .privacy {
    display: none;
  }
  @keyframes nav_active {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .nav_bg .nav .nav_clist {
    display: none;
    transition: All 0.5s ease;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .nav_bg .nav .nav_clist > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
  }
  .nav_bg .nav .nav_clist > li > a {
    background-color: #000;
    color: #fff;
    display: block;
    padding: 10px;
    text-decoration: none;
  }
  .nav_bg .nav .nav_clist > li > a:hover {
    opacity: 0.8;
  }
  .nav_bg .nav .nav_clist > li > a.current {
    opacity: 0.8;
  }
  .nav_bg .nav .nav_clist > li > a:hover .nav_glist {
    display: block;
    animation: nav_active 1s ease 0s 1 alternate;
  }
  .nav_bg .nav .nav_glist {
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
  .nav_bg .nav .nav_glist > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
  }
  .nav_bg .nav .nav_glist > li > a {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: block;
    padding: 10px;
    text-decoration: none;
  }
  .nav_bg .nav .nav_glist > li > a:hover {
    background-color: #000;
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  }
  .nav_bg .nav .nav_glist > li > a.current {
    background-color: #000;
    box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  }
  /*----------------------------------------------------------------------------
    ******************************************************************************
    ** footer
    ******************************************************************************
  ----------------------------------------------------------------------------*/
  #ft {
    margin-top: auto;
    padding-top: 25px;
    text-align: center;
    color: #fff;
  }
  #ft footer {
    width: 100%;
    background: #adadad;
    margin-top: 20px;
    padding: 10px;
  }
  #ft footer p {
    text-align: center;
    color: #fff;
    line-height: 4;
    font-size: 0.8em;
    letter-spacing: 1px;
  }
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** toppage
  ******************************************************************************
----------------------------------------------------------------------------*/
.main_img {
  position: relative;
}
.main_img p {
  position: absolute;
  writing-mode: vertical-rl;
  top: 50px;
  right: 50px;
  font-size: 1.5em;
  line-height: 2.4;
  font-weight: bold;
}
.main_img img {
  width: 100%;
}

.content {
  display: flex;
  margin: 30px auto 40px;
}
.content .about {
  width: 60%;
  display: flex;
  padding: 2em 0;
  font-weight: bold;
  background: #fff;
  border-radius: 10px;
  margin: 0 0 2em 0;
  border: 1px solid #d5d5d5;
}
.content .about h2 {
  writing-mode: vertical-rl;
  margin: 0 20px 0 30px;
  font-size: 1.8em;
  padding-top: 5px;
  color: #222;
  letter-spacing: 2px;
}
.content .about p {
  line-height: 2;
  font-size: 1.1em;
  padding-right: 20px;
  letter-spacing: 1px;
  color: #222;
}
.content nav {
  width: 40%;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.content nav ul {
  width: 100%;
  display: inline-block;
}
.content nav li {
  width: 20%;
  position: relative;
}
.content nav li::before {
  content: "";
  width: 1px;
  height: 0;
  background-color: #222;
  position: absolute;
  right: 15px;
  transition: all 0.3s;
}
.content nav li a:visited, .content nav li a:link {
  text-decoration: none;
  color: #222;
  display: block;
  width: 100%;
  line-height: 6;
}
.content nav li:hover::before {
  height: 100%;
}
.content nav li:hover {
  font-weight: bold;
}

.line {
  width: 100%;
  height: 1px;
  background: #ccc;
  margin-bottom: 30px;
}

/*----------------------------------------------------------------------------
  ** news
----------------------------------------------------------------------------*/
.news {
  display: flex;
  flex-direction: row-reverse;
  padding: 1em 0 0 0;
  font-weight: bold;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d5d5d5;
}
.news h2 {
  writing-mode: vertical-rl;
  margin: 0 30px 0 20px;
  font-size: 1.8em;
  padding-top: 15px;
  color: #222;
  letter-spacing: 2px;
}
.news .news-list-wrap {
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  margin-left: 10px;
}
.news ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news ul li {
  border-bottom: 1px solid #9d9d9d;
  padding: 12px 10px;
  color: #222;
  display: flex;
  gap: 1em; /* PCでは横並び */
}
.news ul li time::before {
  font-family: FontAwesome;
  content: "\f140";
  font-size: 0.8em;
  margin-right: 5px;
}
.news ul li time {
  white-space: nowrap;
}
.news ul li span {
  flex: 1;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page-contents
  ******************************************************************************
----------------------------------------------------------------------------*/
/* ==== Base === */
.layout {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}

.pc_none {
  display: none;
}

/* ==== Navigation === */
#nav {
  width: 100%;
  overflow: hidden;
}
#nav ul li {
  float: left;
  width: 100%;
  line-height: 50px;
}
#nav ul li a {
  display: block;
  position: relative;
  color: #222;
  text-decoration: none;
  padding-left: 10px;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 2px solid #b2b2b2;
  letter-spacing: 0.1em;
}
#nav ul li a:hover {
  background: #444;
  color: #fff;
}

/* ==== Content === */
#con_bg {
  background: url(../images/common/con_bg.jpg) repeat-x top center;
}

#con {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

#side {
  width: 25%;
  padding-right: 20px;
}

#main {
  width: 75%;
  max-width: 720px;
  /* ol,ul */
  /* table */
  /* ==== menu1 === */
  /* ==== menu2 === */
  /* ==== menu3 === */
  /* ==== menu4 === */
  /* ==== menu5 === */
  /* ==== inquiry === */
  /* ==== access === */
}
#main h2 {
  color: #333;
  border-bottom: 4px double #69615b;
  border-top: 4px double #69615b;
  font-size: 34px;
  font-weight: normal;
  height: 80px;
  padding: 0.5em 0 0em 0.2em;
  background-color: rgba(255, 255, 255, 0.7);
}
#main h3 {
  margin: 0.8em 0 0.4em 0;
  font-size: 1.4em;
  font-weight: normal;
  padding: 0.4em 0 0.4em 0.3em;
  border-left: 8px double #47413c;
  background: #47413c;
  color: #fff;
}
#main p {
  font-size: larger;
  line-height: 30px;
  margin: 10px 0;
  padding: 10px 5px;
  letter-spacing: 1px;
  color: #222;
}
#main ol, #main ul {
  padding: 5px 0px 5px 25px;
}
#main ol li, #main ul li {
  padding: 5px 0px;
}
#main ul {
  list-style-type: disc;
}
#main table {
  margin: 10px 0px;
  /* img */
}
#main table th, #main table td {
  padding: 5px;
}
#main table img {
  max-width: 100%;
  max-height: 335px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center left;
     object-position: center left;
}
#main table a img {
  display: inline-block;
  transition-duration: 0.3s;
  transition-property: transform;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
#main table a img:hover, #main table a img .shrink:focus, #main table a img .shrink:active {
  transform: scale(0.9);
}
#main .menu1 figure img {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
}
#main .menu3 h4 {
  font-size: 1.6rem;
  margin: 10px 0;
}
#main .menu3 .member_box {
  display: flex;
  max-width: 100%;
  margin: 40px 0 60px 0;
}
#main .menu3 .member_img img {
  width: 100%;
  height: 100%;
}
#main .menu3 .member_txt {
  width: 100%;
  font-size: 15px;
}
#main .menu3 .member_txt p {
  font-size: 1.2rem;
  letter-spacing: 0;
  padding: 0;
}
#main .menu4 {
  max-width: none;
  width: 100%;
}
#main .menu4 ul li {
  margin-bottom: 0.5em;
}
#main .inquiry table {
  font-family: FontAwesome;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #222;
}
#main .inquiry table tr th {
  width: 20%;
  font-weight: bold;
  padding: 0.6em 0.5em;
  text-align: center;
  border: 1px solid #222;
  background-color: #d5d5d5;
}
#main .inquiry table tr td {
  width: auto;
  padding: 0.6em 0.5em;
  border: 1px solid #222;
}
#main .access table {
  font-family: FontAwesome;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #222;
}
#main .access table tr th {
  width: 20%;
  font-weight: bold;
  padding: 0.6em 0.5em;
  text-align: center;
  border: 1px solid #222;
  background-color: #d5d5d5;
}
#main .access table tr td {
  width: auto;
  padding: 0.6em 0.5em;
  border: 1px solid #222;
}
#main .access figure img {
  width: 100%;
}/*# sourceMappingURL=style.css.map */