<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 繝倥ャ繝繝ｼ ******************************************************************/
header {
    position: fixed;
    top: 0;
    display: block;
    width: 100%;
    height: 50px;
    text-align: left;
    background: #69BF98;
    z-index: 99;
    font-size: 4vw;
}
header:after {
    content: "";
    display: block;
    clear: both;
}
header .logo_pc {
    display: none;
}
header .logo_sp {
    position: absolute;
    top: 0;
    left: 50%;
    width: 160px;
    transform: translateX(-80px);
}
header .logo_sp img {
    width: 100%;
}
header .logo_menu_sp {
    position: fixed;
    display: block;
    width: 100%;
    z-index: 3;
}
header .menu {
    position: absolute;
    top: 0;
    display: none;
    width: 100%;
    height: 100vh;
    background: #fff;
    overflow-y: scroll;
}
header .menu &gt; ul {
}
header .menu &gt; ul &gt; li {
    position: relative;
    display: block;
    margin: 0 20px;
    padding: 20px 0;
    border-left: none;
    border-bottom: #ccc solid 1px;
    box-sizing: border-box;
}
header .menu &gt; ul &gt; li:first-child {
/*    padding-top: 120px;*/
}

/** &gt;繝｡繝九Η繝ｼ蜷� **/
header .menu &gt; ul &gt; li &gt; .topmenu {
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 10px 0 10px 20px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    box-sizing: border-box;
}
header .menu &gt; ul &gt; li &gt; .topmenu:before {
    position: absolute;
    content: '縲�';
    left: 0;
}

/** 笳九↓�九→繝ｼ **/
header .menu &gt; ul &gt; li &gt; .topmenu:after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    margin: 10px 0 0 0;
    display: inline-block;
    width: 5.2vw;
    height: 5.2vw;
    border: 1px #333 solid;
    border-radius: 50%;
    box-sizing: border-box;
}
header .menu &gt; ul &gt; li &gt; .topmenu span {
    position: relative;
    display: block;
}
header .menu &gt; ul &gt; li &gt; .topmenu span:before {
    display: block;
    content: '';
    position: absolute;
    top: 10px; 
    right: 1vw;
    margin: auto;
    width: 3vw;
    height: 1px;
    background-color: #333;
    transition: .2s;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}
header .menu &gt; ul &gt; li.on &gt; .topmenu span:before {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);}
header .menu &gt; ul &gt; li &gt; .topmenu span:after {
    display: block;
    content: '';
    position: absolute;
    top: 10px; 
    right: 1vw;
    margin: auto;
    width: 3vw;
    height: 1px; 
    background-color: #333;
    transition: .3s;
}
header .menu &gt; ul &gt; li .submenu {
    display: none;
}
header .menu &gt; ul &gt; li.on .submenu {
    display: block;
}
header .menu &gt; ul &gt; li .submenu a {
    display: block;
    padding: 10px 0 10px 20px;
    text-decoration: none;
    color: #333;
}
header .menu &gt; ul &gt; li .submenu a:before {
    content: '-  ';
}
header .menu &gt; ul &gt; li .submenu a:hover {
    background: #eee;
}

/** 繝上Φ繝舌�繧ｬ繝ｼ繝｡繝九Η繝ｼ **/
header .hamburger,
header .hamburger span
{
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
header .hamburger {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 27px;
    z-index: 100;
}
header .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
}
header .hamburger span:nth-of-type(1) {
  top: 0;
}
header .hamburger span:nth-of-type(2) {
  top:12px;
}
header .hamburger span:nth-of-type(3) {
  bottom: 0;
}
header .hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
  transform: translateY(12px) rotate(-45deg);
}
header .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
header .hamburger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
  transform: translateY(-12px) rotate(45deg);
}

/** 繝槭せ繧ｯ */
.menu_mask{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 98;
}







/* 繝輔ャ繧ｿ繝ｼ ******************************************************************/
footer {
    text-align: center;
    font-size: 0;
}

footer img {
    margin: 50px 0;
    width: 50%;
}

footer .menu &gt; ul {
    font-size: 4vw;
    width: 250px;
    text-align: left;
    margin: 0 auto;
}
footer .menu &gt; ul:nth-child(2) {
    margin: 40px auto 0;
}
footer .menu &gt; ul &gt; li {
    position: relative;
    display: block;
    width: fit-content;
    box-sizing: border-box;
}

/** &gt;繝｡繝九Η繝ｼ蜷� **/
footer .menu &gt; ul &gt; li &gt; .topmenu {
    position: relative;
    display: block;
    /*width: fit-content;*/
    margin: 0 auto;
    padding: 5px 0 5px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    box-sizing: border-box;
}
footer .menu &gt; ul &gt; li &gt; .topmenu:before {
    position: absolute;
    content: '縲�';
    left: 0;
}

footer .menu &gt; ul &gt; li &gt; .topmenu span {
    position: relative;
    display: block;
}
footer .menu &gt; ul &gt; li .submenu {
    display: none;
    width: fit-content;
}
footer .menu &gt; ul &gt; li.on .submenu {
    display: block;
}
footer .menu &gt; ul &gt; li .submenu a {
    display: block;
    width: fit-content;
    padding: 5px 10px 0 20px;
    text-decoration: none;
    color: #fff;
}
footer .menu &gt; ul &gt; li .submenu a:last-child {
    margin-bottom: 5px;
}
footer .menu &gt; ul &gt; li .submenu a:before {
    content: '-  ';
}
footer .menu &gt; ul &gt; li .submenu a:hover {
    background: #eee;
}








/* body ******************************************************************/
body {
    background-color: #69bf98;
    color: #333;
    font-size: 3.2vw;
}

.block_contents img {
    max-width: 100%;
    height: auto;
}





/* information ******************************************************************/
.information {
    text-align: left;
    padding: 10px;
    background: #fff;
}
.information dl {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0 0 0 0;
}
.information dt {
    position: relative;
    margin: 0;
    padding: 5px 0 0 0;
}
.information dd {
    margin: 0;
    padding: 5px 0 15px 0;
}

/*SNS繧ｷ繧ｧ繧｢繝懊ち繝ｳ*******************************************************************/
header .menu &gt; ul.share_list {
    display: none;
}
li.share_button a {
    display: block;
    text-decoration: none;
    height: 35px;
    width: 35px;
    margin: 0 auto;
    cursor: pointer;
}
li.share_button.twitter a {
    background-image: url('../images/sns_x.png');
    background-size: 100% auto;
}
li.share_button.facebook a {
    background-image: url('../images/sns_facebook.png');
    background-size: 100% auto;
}
li.share_button.line a {
    background-image: url('../images/sns_line.png');
    background-size: 100% auto;
}
/*SNS繧ｷ繧ｧ繧｢繝懊ち繝ｳ(繝輔ャ繧ｿ繝ｼ)*/
footer .menu &gt; ul.share_list {
    text-align: center;
    margin: 0;
    display: flex;
    width: auto;
}
footer .menu &gt; ul.share_list &gt; li {
    display: inline-block;
    width: 50px;
    float: none;
}
footer .menu &gt; ul.share_list &gt; li:first-child {
    display: none;
}

footer .site-header{
    position: fixed;
    top: 55px;
    width: 35%;
    right: 10px;
    transition: .5s;
    z-index: 5;
    display: flex;
    justify-content: space-between;
}
footer ul.site-header &gt; li {
    width: calc( 30% - 5px );
}
footer ul.site-header &gt; li:first-child {
    display: none;
}
footer .site-header.hide{
    transform: translateY(-300%);
}
#main-content {
    margin-top: 25px !important;
}
/*繝代Φ縺上★繝ｪ繧ｹ繝医√し繧､繝亥�讀懃ｴ｢縲∬ｨ隱樣∈謚�*/
.pankuzu_list,
.free_search,
footer .select_language,
header .site-header {
    display: none;
}
header .header_function_list {
/*    position: fixed;
    bottom: 0px;
    z-index: 100;
    left: 0px;
    background-color: #69bf98;*/
    width: 100%;
    padding: 10px;
    margin-top: 120px;
    box-sizing: border-box;
/*    display: none;*/
}

header .header_function_list select {
    width:99%;
    box-sizing: border-box;
    font-size: 4.5vw;
    padding: 5px;
}</pre></body></html>