@charset "UTF-8";
/*----------------------------------------------------------------------------******************************************************************************PC******************************************************************************----------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Layout
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* ==== Base === */
  .w_22 {
    width: 22% !important;
  }
  .layout {
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
  }
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
  /* PC では SP 用を非表示 */
  .pc-only {
    display: table-row;
  }
  .sp-only {
    display: none;
  }
  /* ==== Backgraund === */
  #wrap {
    background: #fff;
    border-top: 3px solid #222;
  }
  /* ==== Header === */
  #hd {
    height: 100px;
    position: relative;
  }
  #hd header h1 {
    display: flex;
    padding-top: 5px;
  }
  #hd header .en_hd {
    max-width: calc(100% - 100px);
  }
  #hd header h1::before {
    content: "";
    background-image: url(../images/logo.png);
    height: 50px;
    width: 50px;
    display: block;
    margin-right: 10px;
    margin-top: 10px;
  }
  #hd header .lang {
    position: absolute;
    right: 0;
    top: 0;
  }
  #hd header .lang a {
    display: block;
    padding: 40px 20px;
    background: #ddd;
    transition: 0.5s;
    color: #000;
    text-decoration: none;
    font-weight: bold;
  }
  #hd header .lang:hover a {
    background: #000;
    color: #fff;
  }
  /* ==== Navigation === */
  #nav {
    height: 50px;
    overflow: visible;
  }
  #nav .lang_sp {
    display: none;
  }
  .nav_list {
    display: flex;
    width: 100%;
  }
  .nav_list > li {
    width: 25%;
    position: relative;
  }
  .nav_list > li > a {
    color: #222;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    border-top: 1px solid #222;
    transition: All 0.5s ease;
    padding: 15px;
  }
  .nav_list > li > a:hover {
    border-top: 6px solid #222;
    letter-spacing: 0.2em;
  }
  .nav_list > li .nav_clist {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ddd;
    width: 100%;
    max-height: 0; /* 初期状態は非表示 */
    overflow: hidden;
    transition: max-height 1.5s ease;
    opacity: 0;
  }
  .nav_list > li .nav_clist li:first-child {
    border-top: 1px solid #4d4d4d;
  }
  .nav_list > li .nav_clist a {
    width: 100%;
    color: #222;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    border-bottom: 1px solid #4d4d4d;
    border-right: 1px solid #4d4d4d;
    border-left: 1px solid #4d4d4d;
    transition: All 0.5s ease;
    padding: 15px;
  }
  .nav_list > li .nav_clist a:hover {
    background: #000;
    color: #fff;
  }
  .nav_list > li:hover .nav_clist {
    visibility: visible;
    max-height: 500px;
    opacity: 1;
    z-index: 1000;
  }
  .current {
    border-top: 6px solid #222 !important;
    letter-spacing: 0.2em;
  }
  #menu {
    display: none;
  }
  /* ==== Content === */
  #con {
    margin-top: 20px;
  }
  #con .index_slider_bg .index_slider .slider_slick img {
    width: 100%;
  }
  #sidenav {
    width: 23%;
    max-width: 220px;
    float: left;
    margin-top: 20px;
    border: 1px solid #222;
  }
  #sidenav ul {
    padding: 0px;
  }
  #sidenav li a {
    width: 100%;
    box-sizing: border-box;
    height: auto;
    padding: 12px 5px 5px 23px;
    display: block;
    text-decoration: none;
    background: url(../images/common/sidenav_icon.png) no-repeat 6px 16px;
    font-size: 12px;
    color: #222333;
    border-bottom: dotted 1px #CCC;
  }
  #main {
    width: 75%;
    max-width: 720px;
    float: right;
    margin-top: 20px;
  }
  /* ol,ul */
  #main ol, #main ul {
    padding: 5px 0px 5px 25px;
  }
  #main ul {
    list-style-type: disc;
  }
  #main ol li, #main ul li {
    padding: 5px 0px;
  }
  /* table */
  #main table {
    margin: 10px 0px;
  }
  #main table th, #main table td {
    padding: 5px;
  }
  /* img */
  #main img {
    max-width: 100%;
  }
  #main 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 a img:hover, .shrink:focus, .shrink:active {
    transform: scale(0.9);
  }
  #main .member tr th {
    font-weight: normal;
    padding: 10px;
    border-bottom: 1px solid;
  }
  #main .member tr td {
    padding: 10px;
  }
  /* ==== Footer === */
  #ft {
    margin-top: 20px;
    padding-top: 35px;
    padding-bottom: 35px;
    text-align: center;
    color: #fff;
    background: #222;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Head
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  h1 {
    position: absolute;
    top: 15px;
    left: 0px;
    line-height: 1em;
  }
  h1 a {
    color: #222 !important;
    text-decoration: none;
  }
  h1 span {
    display: block;
    font-size: 0.65em;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Original
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* ==== Index === */
  /*----pagetop----*/
}
@media screen and (min-width: 769px) and (max-width: 910px) {
  h1 span {
    font-size: 0.53em;
  }
}
@media screen and (min-width: 769px) {
  .en_hd a span {
    font-size: 0.5em;
    line-height: 1.3;
  }
  h2 {
    color: #333;
    border-bottom: 4px double #222;
    border-top: 4px double #222;
    font-size: 34px;
    font-weight: normal;
    height: 80px;
    padding: 0.9em 0 0em 0.5em;
  }
  #sidenav h2 {
    color: #fff;
    border: 1px solid #222;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    height: 50px;
    text-shadow: 1px 2px 0px rgb(0, 0, 0), 2px 2px 2px rgba(255, 255, 255, 0.5);
    background: url(../images/nav_bag.png) top center #222;
  }
  h3 {
    margin: 1.5em 0 0.4em 0;
    font-size: 1.4em;
    font-weight: normal;
    padding: 0.6em 0 0.6em 0.8em;
    border-left: 8px double #666;
    background: #222;
    color: #fff;
  }
  h4 {
    font-size: 1.2em;
    font-weight: normal;
    padding: 0em 0 0em 0.4em;
    border-left: 5px double #222;
    margin: 1em 0 0.4em 0;
  }
  h5 {
    font-size: 1.1em;
    border-bottom: 1px solid;
    margin: 0.8em 0 0.2em 0;
  }
  h6 {
    font-size: 1em;
    margin: 0.4em 0 0.1em 0;
  }
  h1.img, h2.img, h3.img, h4.img, h5.img, h6.img {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
  }
  #i_img img {
    width: 100%;
  }
  #i_main {
    width: 100%;
    max-width: 960px;
    float: left;
    margin-top: 20px;
  }
  #i_news {
    height: 300px;
    overflow: auto;
    border: none;
  }
  #i_news table td {
    vertical-align: top;
    font-size: 0.8em;
    padding: 10px;
  }
  #i_news table tr {
    border-bottom: 1px dotted #CCC;
  }
  #i_news table td.date {
    width: 150px;
    background: url(../images/common/news_icon.gif) 4px 14px no-repeat;
    padding-left: 20px;
  }
  #i_bnr {
    margin-top: 20px;
    width: 23%;
    max-width: 220px;
    float: right;
  }
  #i_bnr li {
    float: left;
    margin-bottom: 4px;
    width: 100%;
  }
  #i_bnr li a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #222;
    padding: 15px 0 15px 30px;
    border-bottom: 1px solid #222;
    background: url(../images/common/bnr_bg.png) 8px center no-repeat;
    transition: All 0.5s ease;
  }
  #i_bnr li a:hover {
    color: #fff;
    background: url(../images/common/bnr_bg_hover.png) 8px center no-repeat #222;
    border-radius: 6px;
  }
  #page-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    font-size: 77%;
  }
  #page-top a {
    background: #222;
    border: #fff 1px solid;
    text-decoration: none;
    color: #fff;
    width: 120px;
    padding: 20px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
  }
  #page-top a:hover {
    text-decoration: none;
  }
}
.r_img {
  max-height: 170px;
}

#main .img_max {
  max-width: 400px;
}

.message {
  vertical-align: middle;
}

.to_s {
  border-top: dotted 3px #222;
  border-bottom: dotted 3px #222;
  margin: 10px 0 30px;
}
.to_s h2 {
  font-size: 15px;
  font-weight: bold;
  border: none;
  text-align: center;
  height: auto;
}
.to_s p {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
}

/*----------------------------------------------------------------------------******************************************************************************スマートフォン******************************************************************************----------------------------------------------------------------------------*/
@media screen and (max-width: 769px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Layout
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* ==== Base === */
  body {
    background: url(../images/body_bg.jpg);
    width: 99%;
    margin: 0 0.5%;
  }
  .layout {
    width: 100%;
    overflow: hidden;
  }
  p {
    margin: 0;
    padding: 5px 10px;
  }
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: table-row;
  }
  /* ==== Backgraund === */
  #wrap {
    background: #fff;
    border-top: 3px solid #222;
  }
  /* ==== Header === */
  #hd {
    height: 70px;
    position: relative;
    background: url(../images/hd_bg.jpg) no-repeat;
  }
  #hd header h1 {
    display: flex;
    align-items: center;
    padding-left: 10px;
  }
  #hd header .en_hd a {
    font-size: 0.9em;
  }
  #hd header .en_hd a span {
    font-size: 0.6em;
    line-height: 1.3;
  }
  #hd header h1::before {
    content: "";
    background-image: url(../images/logo.png);
    height: 50px;
    width: 50px;
    display: block;
    padding-right: 5px;
    background-repeat: no-repeat;
  }
  #hd header .lang {
    display: none;
  }
  /* ==== Navigation === */
  #nav {
    position: fixed;
    top: 0px;
    right: -200px;
    height: 100%;
    z-index: 100;
    width: 200px;
    overflow-x: none;
    overflow-y: auto;
    font-size: 16px;
    background: url(../images/common/nav_bg.png) top center #adadad;
    color: #fff;
  }
  #nav ul {
    display: block;
    margin: 0 0 15px;
    padding: 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #4d4d4d;
  }
  #nav ul li {
    display: block;
    margin: 0;
    line-height: 48px;
    border-top: 1px solid #4d4d4d;
    border-bottom: 1px solid #1a1a1a;
  }
  #nav ul li img {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
  }
  #nav ul li:hover {
    border-top: none;
    line-height: 49px;
  }
  .nav_list > li:hover > a {
    background-color: #444;
  }
  #nav ul li a {
    padding: 0 15px;
    display: block;
    text-decoration: none;
    color: #fff;
    text-shadow: 1px 1px 0 rgb(0, 0, 0);
  }
  #nav ul li ul {
    border-bottom: none;
    margin: 0;
  }
  #nav ul li ul li {
    line-height: 20px;
    font-size: 13px;
    padding: 10px;
  }
  #nav ul li ul li:last-child {
    border-bottom: none;
  }
  .nav_list > li {
    position: relative;
  }
  .nav_list > li > a {
    position: relative;
  }
  .nav_list > li .child_wrap_btn {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    z-index: 10;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background-color: #fff;
  }
  .nav_list > li .child_wrap_btn:hover::before, .nav_list > li .child_wrap_btn:hover::after {
    background-color: #222;
  }
  .nav_list > li .child_wrap_btn::before, .nav_list > li .child_wrap_btn::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 1px;
  }
  .nav_list > li .child_wrap_btn::before {
    top: 50%;
    left: 50%;
    transform: rotate(0deg) translateX(-50%);
    background: #222;
  }
  .nav_list > li .child_wrap_btn::after {
    top: 50%;
    left: 0.5em;
    transform: rotate(90deg);
    transition: all 0.3s ease;
    background: #222;
  }
  .nav_list > li .child_wrap_btn.close::after {
    transform: rotate(0deg);
  }
  .nav_list > li > .child_wrap {
    display: none;
    width: 100%;
  }
  .nav_clist li {
    background-color: #4d4d4d;
  }
  .nav_clist li:hover {
    background-color: #000;
  }
  .nav_clist li:hover > a {
    line-height: 20px;
    box-shadow: none;
    color: #fff;
  }
  .lang_sp {
    height: 100%;
  }
  .lang_sp a {
    padding: 10px;
    border: 1px solid #444;
    display: block;
    text-align: center;
    width: 80%;
    margin: auto;
    color: #fff;
    text-decoration: none;
    transition: 0.5s;
    background-color: #444;
  }
  .lang_sp a:hover {
    background: #ddd;
    color: #000;
  }
  #menu {
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
  }
  /* ==== Content === */
  #con .index_slider_bg {
    margin-top: 20px;
  }
  #con .index_slider_bg .index_slider .slider_slick img {
    width: 100%;
  }
  #sidenav {
    width: 220px;
    float: left;
    margin-top: 20px;
    border: 1px solid #222;
    display: none;
  }
  #main {
    width: 100%;
    margin-top: 20px;
  }
  /* ol,ul */
  #main ol, #main ul {
    padding: 5px 0px 5px 25px;
  }
  #main ul {
    list-style-type: disc;
  }
  #main ol li, #main ul li {
    padding: 5px 0px;
  }
  /* table */
  #main table {
    margin: 10px 0px;
  }
  #main table th, #main table td {
    padding: 5px;
  }
  /* img */
  #main img {
    max-width: 100%;
    display: block;
    margin: 5px auto;
    float: none;
  }
  #main .email {
    vertical-align: middle;
    display: initial;
    margin: 0;
    float: none;
  }
  #main 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 a img:hover, .shrink:focus, .shrink:active {
    transform: scale(0.9);
  }
  #main table.member tr th {
    font-weight: normal;
    padding: 10px;
    border-bottom: 1px solid;
  }
  #main table.member tr td {
    padding: 10px;
  }
  #main table.member tr td .memo {
    color: #222;
    font-size: 0.8rem;
    line-height: 1;
  }
  #main table.member .message {
    display: inline;
  }
  .message {
    vertical-align: middle;
  }
  /* ==== Footer === */
  #ft {
    margin-top: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    color: #fff;
    background: #222;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Head
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  h1 {
    position: absolute;
    top: 5px;
    line-height: 1em;
    font-size: 1.4em;
  }
  h1 a {
    color: #222 !important;
    text-decoration: none;
  }
  h1 span {
    display: block;
    font-size: 0.65em;
  }
  h2 {
    color: #222;
    border-bottom: 4px double #222;
    border-top: 4px double #222;
    font-size: 34px;
    font-weight: normal;
    height: 80px;
    padding: 0.9em 0 0em 0.5em;
  }
  #sidenav h2 {
    color: #fff;
    border: 1px solid #222;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    height: 50px;
    text-shadow: 1px 2px 0px rgb(0, 0, 0), 2px 2px 2px rgba(255, 255, 255, 0.5);
    background: url(../images/nav_bag.png) top center #222;
  }
  h3 {
    margin: 0.8em 0 0.4em 0;
    font-size: 1.4em;
    font-weight: normal;
    padding: 0.6em 0 0.6em 0.8em;
    border-left: 8px double #666;
    background: #222;
    color: #fff;
  }
  h4 {
    font-size: 1.2em;
    font-weight: normal;
    padding: 0em 0 0em 0.4em;
    border-left: 5px double #222;
    margin: 0.6em 0 0.6em 0.4em;
  }
  h5 {
    font-size: 1.1em;
    border-bottom: 1px solid;
    margin-top: 0.4em;
  }
  h1.img, h2.img, h3.img, h4.img, h5.img, h6.img {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  Original
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* ==== Index === */
  #i_img img {
    width: 100%;
  }
  #i_main {
    width: 100%;
  }
  #i_news {
    height: 300px;
    overflow-y: auto; /* 上下スクロールのみ */
    overflow-x: hidden; /* 横スクロール禁止 */
    border: none;
  }
  #i_news table {
    width: 100%; /* 余白ゼロ */
    table-layout: fixed; /* 強制的に枠内に収める */
  }
  #i_news table td {
    vertical-align: top;
    font-size: 0.9em;
    padding: 10px;
    display: block;
    word-wrap: break-word; /* 長い英文・URLを折り返し */
    overflow-wrap: break-word; /* 同上（保険） */
  }
  #i_news table tr {
    border-bottom: 1px dotted #CCC;
  }
  #i_news table td.date {
    background: url(../images/common/news_icon.gif) 4px 14px no-repeat;
    padding-left: 20px;
  }
  #i_bnr {
    margin-top: 20px;
    width: 100%;
  }
  #i_bnr li {
    width: 100%;
    margin-bottom: 4px;
  }
  #i_bnr li a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #222;
    padding: 15px 0 15px 30px;
    border: 1px solid #222;
    border-radius: 0px;
    background: url(../images/common/bnr_bg.png) 8px center no-repeat;
    transition: All 0.5s ease;
  }
  #i_bnr li a:hover {
    color: #fff;
    background: url(../images/common/bnr_bg_hover.png) 8px center no-repeat #222;
  }
  /*----pagetop----*/
  #page-top {
    width: 100%;
  }
  #page-top a {
    background: #666;
    border: none;
    text-decoration: none;
    color: #fff;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    display: block;
  }
  #page-top a:hover {
    text-decoration: none;
  }
}/*# sourceMappingURL=style.css.map */