@charset "UTF-8";
/* ==========================================================================
   apseeds Theme
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #343434;
}

html {
    font-size: 62.5%;
}

body{
    font-family: "Noto Sans JP", "Lato", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px; font-size: 1.6rem;
    line-height: 1.6;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

img{
    max-width: 100%;
    vertical-align: middle;
    border: 0;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

ul,ol,li,dl,dt,dd{
    margin: 0;
    padding: 0;
    list-style: none;
}

a{
    color: #60B91D;
}

p{
    margin: 0;
}

/* ===================
    ALL:
   =================== */

.pc{
    display: none;
}

.mt10{ margin-top: 10px; }
.mt20{ margin-top: 20px; }

.mb10{ margin-bottom: 10px; }
.mb20{ margin-bottom: 20px; }
.mb30{ margin-bottom: 30px; }
.mb40{ margin-bottom: 40px; }
.mb60{ margin-bottom: 60px; }

.mtb20{ margin: 20px 0; }

.right{ text-align: right; }
.center{ text-align: center; }
.left{ text-align: left; }

.f-right{ float: right; }
.f-left{ float: left; }

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.txt-red,
.txt-red a{
    color: #D83500;
}

/*2022 renewal*/

.wrapper{
    margin: 0 16px;
}

.txt{
    margin: 0 0 20px;
}

.bold{ font-weight: bold;}

/* ==============
    MOBILE: Header
   ============== */

#header-container{
    position: relative;
    height: 60px;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
    z-index: 1000;
}

.logo-box{
    position: relative;
}

.sp-mynavi{
    position: absolute;
    top: 10px;
    right: 67px;
    display: block;
}

#header-container .logo{
    display: block;
    margin: 0;
    padding: 10px 0;
}

#header-container .logo a{
    display: block;
    overflow: hidden;
    width:119px;
    height: 0;
    margin: 0;
    padding: 40px 0 0;
    background: url(../images/common/logo.png) no-repeat left top;
    background-size: 119px 40px;
}

#header-container .mynavi{
    display: none;
}

#nav-container{
    position: relative;
    margin: 0 -10px;
    border-top: 1px solid #d8d8d8;
}

#g-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -5000px;
    background: #fff;
    width: 100%;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    z-index: 99999;
}

.li-hdr-sp {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    padding: 0 16px;
    font-size: 14px;
}
.li-hdr-sp li {
    float: none;
    position: static;
}
.li-hdr-sp li a {
    width: 100%;
    display: block;
    color: #343434;
    height: 45px;
    line-height: 45px;
    text-decoration: none;
}

/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}
.open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
}
/* #global-nav スライドアニメーション */
.open #g-nav {
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateY(5000px);
    -webkit-transform: translateY(5000px);
    transform: translateY(5000px);
}

/* Toggle Button */
#nav-toggle {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 55px;
    height: 60px;
    padding: 18px 16px;
    box-sizing: border-box;
    background: #66cc1f;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 61px; /* 固定の高さを設定 */
    padding: 0 15px;
    background-color: white;
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
    transition: opacity 0.3s ease;
}

/* モバイルではメインナビゲーションを非表示 */
.nav-menu {
    display: none;
}

/* モバイルでは右メニューを非表示 */
.right-menu {
    display: none;
}

/* モバイルメニュートグル表示 */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #6eb92b;
}

/* モバイルメニュー - ヘッダー直下に表示 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px; /* ヘッダーの高さに合わせて固定値で指定 */
    left: 0;
    width: 100%;
    max-height: calc(100vh - 60px);
    background-color: white;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-list li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-list a {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
    color: #333;
    text-decoration: none;
    font-size: 12px; font-size: 1.2rem;
    font-family: "Lato", sans-serif;
}

.mobile-menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-item-has-children > a::after {
    content: "＋";
    color: #6eb92b;
    font-size: 20px; font-size: 2.0rem;
    text-align: center;
}

.mobile-menu-item-has-children.active > a::after {
    content: "−";
    position: relative;
    right: 4px;
}

.mobile-submenu {
    display: none;
    list-style: none;
    background-color: #f9f9f9;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li {
    border-top: 1px solid #eee;
    border-bottom: none;
}

.mobile-submenu a {
    padding-left: 30px;
}

/* サブメニューのモバイルスタイル */
.mega-dropdown {
    position: fixed;
    top: 61px; /* ヘッダーの高さに合わせて調整 */
    left: 0;
    width: 100%;
    background-color: white;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    display: none;
    z-index: 999;
}

.submenu-content {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
    padding: 0;
}

.submenu-brand {
    background-color: white;
    padding: 20px 15px;
}

.submenu-brand h2 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: normal;
}

.submenu-brand p {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.submenu-brand h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.submenu-categories {
    display: grid;
    grid-template-columns: 1fr;
    background-color: white;
    padding: 0;
}

.category {
    padding: 15px;
    border-top: 1px solid #f0f0f0;
    border-left: none;
}

.category h4 {
    color: #333;
    font-size: 14px; font-size: 1.4rem;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: normal;
}

.category-links {
    list-style: none;
}

.category-links li {
    margin: 8px 0;
}

.category-links a {
    position: relative;
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 14px; font-size: 1.4rem;
    font-weight: normal;
    transition: color 0.3s;
    padding-right: 1.5em;
}

.category-links a:hover {
    color: #6eb92b;
}

.category-links a::after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "chevron_right";
    line-height: 1;
    margin: -0.5em 0 0;
    color: #000;
    font-weight: bold;
    font-family: "Material Icons";
}

/* オーバーレイ */
.page-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background-color: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
}

.body-with-dropdown .page-overlay {
    display: block;
}

.body-with-dropdown .mega-dropdown {
    display: block;
}


/* ==============
    MOBILE: Main
   ============== */

#main-container{

}

#main-container #about,
#main-container #error,
#main-container #inquiry{
    margin: 0 0 85px;
}

.main-visual{
    border-top: 1px solid #E5E5E5;
}

#main-nav{
    margin: 0 -10px;
    padding: 20px 10px 65px;
    background: #60B91D;
}

#main-nav li{
    height: 42px;
    line-height: 42px;
    margin: 0 0 -1px;
    border: 1px solid #F2F2F2;
    color: #FFF;
    font-size: 14px; font-size: 1.4rem;
}

#main-nav li.active{
    position: relative;
    padding: 0 20px;
}

#main-nav li a{
    position: relative;
    display: block;
    padding: 0 20px;
    background: #FFF;
    color: #343434;
    text-decoration: none;
}

#main-nav li a:after{
    position: absolute;
    content: '\f054';
    top: 0;
    right: 10px;
    font-family: 'FontAwesome';
    color: #807375;
    font-size: 16px; font-size: 1.6rem;
}

#main-nav li:first-child{
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -o-border-radius: 4px 4px 0 0;
    -ms-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    font-size: 16px; font-size: 1.6rem;
}
#main-nav li:first-child a{
    padding: 0 10px;
}

#main-nav li.active:first-child{
    padding: 0 10px;
}

#main-nav li:last-child{
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -o-border-radius: 0 0 4px 4px;
    -ms-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}

.ttl-main{
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 5px;
    border-bottom: 1px solid #E5E5E5;
    font-weight: normal;
    font-size: 24px; font-size: 2.4rem;
}

.ttl-main:after{
    position: absolute;
    content: ' ';
    left: 0;
    bottom: 0;
    width: 120px;
    height: 1px;
    background: #60B91D;
}

.ttl-sub{
    height: auto;
    line-height: 1.4;
    margin: 0 0 20px;
    font-size: 20px; font-size: 2.0rem;
    font-weight: normal;
    color: #60B91D;
}

.ttl-circle{
    margin: 0 0 20px;
    padding: 10px 0 10px 23px;
    border-bottom: 1px solid #E5E5E5;
    background: url(../img/hx_circle@2x.png) no-repeat left center;
    background: url(../img/hx_circle.png) no-repeat left center;
    background: url(../img/hx_circle.png) no-repeat left center;
    background-size: 18px;
    font-size: 20px; font-size: 2.0rem;
    font-weight: normal;
    color: #176E11;
}

.hx-num{
    margin: 0 0 20px;
    padding: 0 0 10px;
    border-bottom: 1px solid #E5E5E5;
    color: #176E11;
    font-weight: normal;
    font-size: 20px; font-size: 2.0rem;
}

#main-container .table-gray{
    background: #F2F2F2;
}

#main-container .table-gray dt{
    position: relative;
    height: 30px;
    line-height: 30px;
    margin: -1px 0 0;
    padding: 0 10px;
    border: 1px solid #E5E5E5;
    background: #F2F2F2;
    font-size: 14px; font-size: 1.4rem;
}

#main-container .table-gray dd{
    position: relative;
    margin: -1px 0 0;
    padding: 10px;
    border: 1px solid #E5E5E5;
    background: #fff;
}

#main-container .title-open,
#main-container .title-close {
    position: relative;
    height: auto;
    line-height: 1.4;
    margin: -1px 0 0;
    padding: 8px 30px 8px 10px;
    border: 1px solid #E5E5E5;
    background: #F2F2F2;
    z-index: 1;
    font-weight: normal;
    font-size: 14px; font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
}

#main-container .title-open:after,
#main-container .title-close:after {
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 18px;
    height:42px;
    line-height: 42px;
    margin-top: -21px;
}

#main-container .title-open:after {
    content: '\f056';
    font-family: 'FontAwesome';
    color: #7F7273;
    font-size: 18px; font-size: 1.8rem;
}

#main-container .title-close:after {
    content: '\f055';
    font-family: 'FontAwesome';
    color: #7F7273;
    font-size: 18px; font-size: 1.8rem;
}

#main-container .title-close.first,
#main-container .title-open.first{
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -o-border-radius: 3px 3px 0 0;
    -ms-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

#main-container .title-close.last,
#main-container .title-open.last{
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    -o-border-radius: 0 0 3px 3px;
    -ms-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

#main-container .open-content{
    margin-top: -1px;
    padding: 10px;
    border: 1px solid #E5E5E5;
}

#main-container .li-link li{
    position: relative;
    margin: 0;
    border-bottom: 1px dotte #E5E5E5;
}

#main-container .li-link a{
    display: block;
    height: auto;
    line-height: 1.4;
    padding: 10px;
    border-bottom: 1px dotted #E5E5E5;
    text-decoration: none;
}

#main-container .li-link .ico-flat{
    float: left;
    display: inline;
    width: 80px;
    margin-right: 10px;
}

#main-container .li-link dl{
    float: left;
    display: inline;
    width: auto;
}

#main-container .li-link dt{
    margin: 0 0 10px;
    font-size: 16px;
    color: #176E11;
}

#main-container .li-link dd{
    font-size: 14px;
    color: #343434;
}

input[type="text"],
input[type="tel"],
input[type="email"]{
    height: 36px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea{
    margin: 0;
    padding: 0 10px;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #C0C0C0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 1px 1px 1px rgba(192,192,192,0.3) inset;
    -moz-box-shadow: 1px 1px 1px rgba(192,192,192,0.3) inset;
    -o-box-shadow: 1px 1px 1px rgba(192,192,192,0.3) inset;
    -ms-box-shadow: 1px 1px 1px rgba(192,192,192,0.3) inset;
    box-shadow: 1px 1px 1px rgba(192,192,192,0.3) inset;
    color: #3F3F47;
    cursor: pointer;
    resize: none;
}

input[type="checkbox"]{
    margin-right: 5px;
    font-size: 14px; font-size: 1.4rem;
}

select {
    display: block;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 35px;
    line-height: 35px;
    padding-left:10px;
    padding-right:0;
    -moz-appearance:button;
    -webkit-appearance:button;
    -o-appearance:button;
    -ms-appearance:button;
    border:1px solid #E5E5E5;
    border-radius: 4px;
    background-color:transparent;
    background-image: linear-gradient(top, #FFFFFF 0%, #F2F2F2 100%);
    background-image: -o-linear-gradient(top, #FFFFFF 0%, #F2F2F2 100%);
    background-image: -moz-linear-gradient(top, #FFFFFF 0%, #F2F2F2 100%);
    background-image: -webkit-linear-gradient(top, #FFFFFF 0%, #F2F2F2 100%);
    background-image: -ms-linear-gradient(top, #FFFFFF 0%, #F2F2F2 100%);
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #FFFFFF),
        color-stop(1, #F2F2F2)
    );
    background-repeat: repeat;
    background-position: 0 0;
    cursor: pointer;
    text-shadow:1px 1px 0 #fff;
    text-indent: .01px; /*Firefox用*/
    text-overflow: ""; /*Firefox用*/
}

select::-ms-expand {
  display: none;
}

.styled-select{
    position: relative;
}

/*.styled-select:after{
    content: '\f13a';
    position: absolute;
    display: block;
    top: 0;
    right: 10px;
    width: 16px;
    height: 36px;
    line-height: 36px;
    font-family: 'FontAwesome';
    color: #7F7273;
    font-size: 16px; font-size: 1.6rem;
}*/

textarea{
    width: 100%;
    height: 120px;
    padding: 10px;
}

.one-set{
    width: 100%;
}

.two-set{
    width: 48%;
}

.two-set.left{
    margin-right: 4%;
}

.btn-area{
    width: 80%;
    margin: 0 auto 20px;
}

.btn-green{
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    background: #176E11;
    color: #fff;
    cursor: pointer;
    font-size: 18px; font-size: 1.8rem;
    text-decoration: none;
    text-align: center;
}

.btn-gray{
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    box-sizing: border-box;
    background: #999;
    color: #fff;
    cursor: pointer;
    font-size: 18px; font-size: 1.8rem;
    text-decoration: none;
    text-align: center;
}

.btn-lightgreen{
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    background: #60B91D;
    color: #fff;
    font-size: 18px; font-size: 1.8rem;
    text-decoration: none;
    text-align: center;
    margin-top: 20px;
}
.btn-lightgreen.orange {
    background: #F6AC00;
}
.btn-lightgreen:hover{
    background: #4CA509;
}
.btn-lightgreen.orange:hover {
    background: #dd9a00;
}
.li-dot li{
    margin: 0 0 10px;
    padding: 0 0 0 11px;
    background: url(../img/ico_li@3x.png) no-repeat left 10px;
    background: url(../img/ico_li6x6.png) no-repeat left 10px\9;
    background-size: 6px;
}


.ttl-box{
    padding: 10px;
    border: 1px solid #E5E5E7;
    background: #EBEDEF;
    font-size: 16px; font-size: 1.6rem;
    font-weight: normal;
    color:#4860A8;
}

.ttl-box span{
    display: block;
    margin: 10px 0 0;
    font-size: 14px; font-size: 1.4rem;
    color: #3F3F47;
}

#main-container .li-num{
    margin: 0 0 10px;
    padding: 0;
}

#main-container .li-num li span{
    display: inline-block;
    display: inline;
    zoom: 1;
    width: 16px;
    height: 16px;
    line-height: 16px;
    margin: 0 5px 0 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    background: #4860A8;
    color: #fff;
    font-size: 14px; font-size: 1.4rem;
    text-align: center;
}

/*2022 renewal*/

#main-container{
    margin: 0 0 60px;
}

.wrapper{
    margin: 0 16px;
}

.breadcrumb-box{
    width: 100%;
    margin: 16px 0;
}

.breadcrumb li{
    display: inline-flex;
    align-items: center;
    margin: 0 0 0 8px;
    font-size: 12px; font-size: 1.2rem;
}

.breadcrumb li:first-child{
    margin: 0;
}

.breadcrumb li a{
    color: #343434;
}

.breadcrumb li .material-icons{
    margin: 0 0 0 8px;
    font-size: 12px; font-size: 1.2rem;
}

.hx-ttl{
    position: relative;
    margin: 0 -16px 40px;
    padding: 0 0 0 16px;
    font-size: 28px; font-size: 2.8rem;
    font-weight: bold;
}

.hx-ttl:before{
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 4px;
    margin: -2px 0 0;
    border-radius: 0 2px 2px 0;
    background: #66cc1f;
}

.hx-bdr-marker{
    margin: 0 0 40px;
    font-size: 18px; font-size: 1.8rem;
    color: #176E11;
}

.hx-bdr-marker span{
    background:linear-gradient(transparent 60%, #CDFCB3 60%);
}

.hx-bb{
    margin: 0 0 20px;
    font-size: 18px; font-size: 1.8rem;
    font-weight: bold;
}

.btn-box{
    margin: 0 auto 60px;
    text-align: center;
}

.btn-box.contact{
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 -20px 60px;
}

.btn-box.contact li{
    padding: 0 20px;
    box-sizing: border-box;
}

.btn-box.contact li:last-child{
    flex: 1;
}

.btn{
    display: inline-block;
    min-width: 230px;
    line-height: 45px;
    height: 45px;
    padding: 0 16px;
    border: none;
    border-radius: 23px;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    outline: none;
    appearance: none;
}

.btn-green-gradient{
    background-image: -webkit-gradient(linear, left top, right top, from(#66CC1F), to(#15BE22));
    background-image: -webkit-linear-gradient(left, #66CC1F 0%, #15BE22 100%);
    background-image: linear-gradient(90deg, #66CC1F 0%, #15BE22 100%);
    color: #fff;
}

.btn-green-gradient:hover{
    -webkit-transform: translate(0, -1px);
    transform: translate(0, -1px);
    color: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .2);
}

.btn-bdr-green{
    border: 1px solid #66CC1F;
    background: #fff;
    color: #66cc1f;
}

.btn-green-3gradient{
    display: inline-block;
    min-width: 210px;
    height: 45px;
    line-height: 45px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(to top right, #006c00, #00cd00 80%, #00ffd1);
    color: #fff;
    font-size: 16px; font-size: 1.6rem;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    outline: none;
    appearance: none;
    transition: all .3s;
}

.btn-green-3gradient:hover{
    opacity: 0.5;
}

#header-container .tag,
#footer-container .tag,
.dl-service .tag,
.li-leaf .tag{
    display: inline-block;
    line-height: 1;
    margin: 0 0 0 8px;
    padding: 2px 4px;
    border-radius: 2px;
    background: #F6B318;
    color: #fff;
    font-size: 12px; font-size: 1.2rem;
    vertical-align: middle;
}

.li-leaf .tag{
    font-size:14px; font-size: 1.4rem;
}

.li-check{
    margin: 0 0 20px;
}

.li-check li{
    position: relative;
    margin: 0 0 10px;
    padding: 0 0 0 24px;
}

.li-check li::before{
    position: absolute;
    top: 5px;
    left: 0;
    line-height: 1;
    content: "\e876";
    font-family: "Material Icons";
    font-size: 16px; font-size: 1.6rem;
    font-weight: bold;
    color: #66cc1f;
}

.tbl{
    width: 100%;
}

.tbl-privacy th,
.tbl-privacy td{
    padding: 5px;
    border: 1px solid #d8d8d8;
    font-size: 14px; font-size: 1.4rem;
}


/* ==============
    MOBILE: Footer
   ============== */

#footer-container{
    margin: 0;
    padding: 40px 0 0;
    background: #f0f0f0;
    font-size: 12px; font-size: 1.2rem;
}

#footer-container .wrapper{
    position: relative;
    margin: 0 16px;
}

.dl-contact{
    margin: 0 0 30px;
}

.dl-contact dt{
    margin: 0 0 40px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 25px; font-size: 2.5rem;
    text-align: center;
}

.dl-contact dd ul li{
    width: 240px;
    margin: 0 auto 20px;
}

.dl-contact dd ul li a{
    display: block;
}

.ftr-menu-box{
    padding: 0 0 115px;
}

.ftr-menu-category{
    position: relative;
    margin: 20px 0 10px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 20px; font-size: 2.0rem;
}

.ftr-menu-category a{
    position: absolute;
    top: 50%;
    right: 0;
    margin: -0.5em 0 0;
    font-size: 12px; font-size: 1.2rem;
    color: #000;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
}

.ftr-menu{
    font-size: 12px; font-size: 1.2rem;
}

.ftr-menu dt{
    position: relative;
    height: 36px;
    line-height: 36px;
    padding: 0 24px 0 0;
    border-bottom: 1px solid #231815;
    cursor: pointer;
    font-weight: 400;
}

.ftr-menu dt .toggle-btn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    height: 24px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 50%;
}

.ftr-menu dt .toggle-btn:before,
.ftr-menu dt .toggle-btn:after {
    display: block;
    content: '';
    background-color: #343434;
    position: absolute;
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ftr-menu dt .toggle-btn:before {
    width: 2px;
    height: 14px;
}

.ftr-menu dt.selected .toggle-btn:before {
    content: normal;
}

.ftr-menu dd {
    display: none;
    border-bottom: 1px solid #231815;
    padding: 8px 0;
    font-weight: 400;
}

#header-container .tag-new,
.ftr-menu dd .tag-new{
    display: inline-block;
    line-height: 1;
    margin: 0 0 0 8px;
    padding: 3px 5px;
    border-radius: 4px;
    background-color:hsla(22,100%,50%,1);
    background-image: radial-gradient(at 84% 87%, hsla(300,100%,70%,1) 0px, transparent 50%),
                      radial-gradient(at 93% 1%, hsla(54,100%,50%,1) 0px, transparent 50%);
    color: #fff;
    font-family: "Lato", sans-serif;
    font-weight: 900;
}

.ftr-menu dd a,
.ftr-menu-contact a{
    display: block;
    line-height: 30px;
    color: #000;
}

.ftr-menu-contact{
    margin: 20px 0 0;
}

.ftr-logo{
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 134px;
    height: 45px;
    margin: 0 0 0 -67px;
}

.ftr-copy-box{
    padding: 10px 0;
    background: #fff;
}

.ftr-copy-box .ftr-link{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 0 10px;
}

.ftr-copy-box .ftr-link li{
    width: 50%;
    margin: 0;
}

.ftr-copy-box .ftr-link li a{
    display: block;
    padding: 10px 0;
    color: #000;
    text-align: center;
}

.ftr-copy-box .copy{
    line-height: 30px;
    text-align: center;
    font-size: 12px; font-size: 1.2rem;
}

/*

#footer-container .privacy-box{
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: flex-end;
}

#footer-container .privacy-box .isms{
    display: block;
    margin: 0 10px 0 0;
    height: 60px;
}

#footer-container .logo-box .privacy{
    display: block;
    width: 60px;
    height: 60px;
}*/

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (min-width: 768px) {

    .pc{
        display: block;
    }

    .sp{
        display: none;
    }

    .wrapper{
        width: 90%;
        margin: 0 5%;
    }

    .btn-green-3gradient{
        height: 70px;
        line-height: 70px;
        font-size: 17px; font-size: 1.7rem;
    }

/* ============
    WIDE: Header
   ============ */

    #header-container{
        height: 100px;
    }

    .sp-mynavi{
        display: none;
    }

    .dropdown-menu{
        display: none;
    }

    #header-container .logo{
        float: left;
        display: inline;
        width: 137px;
        margin: 20px 0;
        padding: 0;
    }

    #header-container .logo a{
        width:153px;
        padding: 52px 0 0;
        background: url(../images/common/logo.png) no-repeat left top;
        background-size: 153px 52px;
    }

    #header-container .mynavi{
        display: inline;
        float: right;
        margin: 20px 0;
    }

    #header-container .mynavi ul li{
        display: inline-block;
        margin: 0 0 0 20px;
    }

    #header-container .mynavi ul li a{
        text-decoration: none;
        color: #1179a1;
    }

    #header-container .mynavi ul li a span{
        display: block;
        font-size: 13px; font-size: 1.3rem;
    }

    #header-container .mynavi .mynavi-logo{
        overflow: hidden;
        display: block;
        width: 230px;
        height: 0;
        padding: 50px 0 0;
        background: url(../img/mynavi@3x.png) no-repeat left top;
        background-size: 230px 50px;
    }

    #header-container .mynavi ul li.recruit{
        vertical-align: bottom;
    }

    #header-container .mynavi ul li.recruit img{
        width: 147px;
        height: 53px;
    }

    #nav-container{
        margin: 0;
    }

    .nav{
        width: auto;
        float: right;
    }

    .nav-list{
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: stretch;
    }

    .nav-list li a span,
    .nav-list li .nest span{
        padding: 0 20px;
    }

    .nav-list .nav-item a:hover,
    .nav-list li .nest:hover{
        background: #60B91D;
        color: #fff;
    }

    .nav-item{
        display: inline-block;
        width: auto;
        margin: 0;
        zoom: 1;
        border-bottom: none;
        text-align: center;
        border-right: 1px solid #fff;
        flex: 1;
        background: #F2F2F2;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .nav-item a,
    .nav-item .nest{
        display: block;
        height: 100px;
        line-height: 100px;
        padding: 0;
        background: transparent;
        opacity: 0.9;
        color: #3F3F47;
    }

/*    .nav-item:hover .nav-submenu{
        display: block;
    }

    .nav-submenu{
        position: absolute;
        display: none;
        top: 100px;
        left: 0;
        width: 200px;
        font-size: 14px; font-size: 1.4rem;
        text-align: left;
    }

    .nav-submenu-item{
        border-top: none;
        border-bottom: 1px solid #B2D891;
    }

    .nav-submenu-item:last-child{
        width: 230px;
        border-bottom: none;
    }

    .nav-submenu-item a,
    .nav-submenu-item span{
        height: 50px;
        line-height: 50px;
        padding: 0 10px;
        background: #60B91D;
        opacity: 0.8;
        color: #fff !important;
    }

    .nav-mobile{
        display:none;
    }

    .nav-click{
        display:none;
    }

    .nav-item:hover .nav-submenu{
        display:block;
    }

/*2022 renewal*/

    .wrapper{
        position: relative;
        width: 90%;
        margin: 0 5%;
    }

    #header-container{
        border-bottom: 0;
    }

    #nav-toggle{
        display: none;
    }

    #nav-container{
        border-top: 0;
    }

    #g-nav{
        position: relative;
        top: 0;
        border-bottom: 1px solid #d8d8d8;
    }

    .li-hdr-pc{
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: stretch;
    }

    .li-hdr-pc li{
        display: block;
    }

    .li-hdr-pc li a,
    .li-hdr-pc li .ttl{
        position: relative;
        display: block;
        padding: 16px 8px;
        font-size: 14px; font-size: 1.4rem;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        color: #343434;
        cursor: pointer;
    }

    .li-hdr-pc li .material-icons{
        font-size: 16px; font-size: 1.6rem;
        margin: 0 0 0 8px;
        vertical-align: middle;
        color: #66cc1f;
    }

    .nav-submenu{
        position: absolute;
        min-width: 260px;
        padding: 0 30px 16px;
        box-sizing: border-box;
        box-shadow: 3px 3px 8px rgba(0,0,0,0.1);
        background: #fff;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease-out;
    }

    .li-hdr-pc li.nav-main-menu:hover .nav-submenu{
        opacity: 1;
        visibility: visible;
    }

    .nav-submenu .li-submenu li{
        width: 230px;
    }

    .nav-submenu .li-submenu li .service-group,
    .nav-submenu .li-submenu li a{
        position: relative;
        display: block;
        font-size: 15px; font-size: 1.5rem;
        padding: 16px 24px 16px 0;
    }

    .nav-submenu .li-submenu li .service-group{
        padding: 0;
        line-height: 50px;
        height: 50px;
        color: #66cc1f;
        font-weight: bold;
    }

/*    .nav-submenu .li-submenu li .service-group{
        height: 48px;
    }*/

    .nav-submenu .li-submenu li a .material-icons{
        position: absolute;
        top: 50%;
        right: 0;
        margin: -0.5em 0 0;
        color: #66cc1f;
        font-size: 18px; font-size: 1.8rem;
    }

    .nav-submenu .li-submenu li a .txt-small{
        display: block;
        font-size: 12px; font-size: 1.2rem;
    }

    .nav-submenu li{
        border-bottom: 1px solid #d8d8d8;
    }

    .nav-submenu li a{
        display: block;
        text-align: left;
    }

    .nav-submenu .ttl-green{
        margin: 20px 0 0;
        font-size: 16px; font-size: 1.6rem;
        font-weight: bold;
        color: #206E10;
    }

    .nav-submenu .li-submenu.flex{
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: space-between;
        justify-content: flex-start;
        align-items: stretch;
        margin: 0 -10px;
    }

    .nav-submenu .li-submenu.flex li{
        width: 230px;
        padding: 0 10px;
        border: 0;
    }

    .nav-submenu .li-submenu.flex li .li-submenu-inner li{
        padding: 0;
        box-sizing: border-box;
        border: 0;
    }

    .nav-submenu .li-submenu-inner li a{
        padding: 8px 24px 8px 0;
        border-bottom: 1px solid #d8d8d8;
        font-size: 14px; font-size: 1.4rem;
    }

    .breadcrumb-box{
        width: 100%;
        margin: 30px 0;
    }


    /*ヘッダー*/
    .header {
        height: 140px;
        padding: 0 40px;
        justify-content: flex-start;
    }

    .page-overlay {
        top: 120px;
        height: calc(100% - 120px);
    }

    .logo img {
        height: 40px;
    }

    .mobile-menu {
        top: 140px; /* デスクトップでのヘッダー高さに合わせる */
    }

    .mega-dropdown {
        top: 140px; /* デスクトップでのヘッダー高さに合わせて調整 */
        position: fixed;
    }

    /* デスクトップではモバイルメニュー非表示 */
    .mobile-menu-toggle {
        display: none;
    }

    /* デスクトップではナビメニューを表示 */
    .nav-menu {
        display: flex;
        align-items: center;
        margin: 0 0 0 55px;
    }

    .main-menu {
        display: flex;
        list-style: none;
    }

    .main-menu li {
        position: relative;
        margin: 0 15px;
    }

    .main-menu a {
        text-decoration: none;
        color: #323232;
        font-weight: 600;
        padding: 10px 0;
        display: block;
        position: relative;
        font-family: "Lato", sans-serif;
        font-weight: 400;
    }

    .main-menu a:hover {
        color: #2e5736;
        font-weight: 700;
    }

    /* デスクトップでは右メニューを表示 */
    .right-menu {
        display: flex;
        align-items: center;
        margin-left: auto;
        padding-left: 30px;
    }

    .right-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        font-size: 16px; font-size: 1.6rem;
    }

    .right-menu img {
        width: 53px;
        height: 53px;
        margin-left: 30px;
        padding-left: 30px;
        border-left: 1px solid #505050;
    }

    /* サブメニューのデスクトップスタイル */
    .submenu-content {
        display: flex;
        max-width: 1400px;
        margin: 90px auto;
    }

    .submenu-brand {
        padding: 30px 40px;
        border-right: 1px solid #231815;
    }

    .submenu-brand .nav-service{
        margin:  0 0 10px;
    }

    .submenu-brand .nav-service img{
        display: block;
        width: 148px;
        margin: 0 auto;
    }

    .submenu-brand .nav-service span{
        display: block;
        color: #1d6b36;
        font-size: 12px; font-size: 1.2rem;
        font-weight: 500;
        text-align: center;
    }

    .submenu-brand p{
        width: 150px;
        font-size: 21px; font-size: 2.1rem;
        font-family: "Lato", sans-serif;
        font-weight: 900;
        text-align: center;
        letter-spacing: 0.5em;
        color: #000;

    }

    .submenu-categories {
        display: block;
        flex: 1;
        background: transparent;
        padding: 0 40px 0 20px;
    }

    .submenu-categories .inner{
        display: flex;
        align-items: stretch;
    }

    .submenu-categories .category-name{
        padding: 0 0 10px;
        border-bottom: 1px solid #231815;
        font-size: 14px; font-size: 1.4rem;
        font-weight: 600;
    }

    .category {
        width: 25%;
        box-sizing: border-box;
        padding: 0 20px;
        border-top: 0;
    }

    .submenu-content .category{
        width: 30%;
    }

    .category .inner{
        display: flex;
    }

    .category:nth-child(n) {
    }

    .category:first-child {
    }

/* ============
    WIDE: Main
   ============ */

    #main-nav{
        margin: 0;
        padding: 0;
        background: #fff;
    }

    #main-nav li{
        height: 50px;
        line-height: 50px;
        margin: 0;
        border: none;
        border-bottom: 1px solid #fff;
        color: #FFF;
        background: #f2f2f2;
        font-size: 14px; font-size: 1.4rem;
    }

    #main-nav li.active{
        margin: -1px 0 0;
        padding: 0 20px;
        border-bottom: none;
        background: #66CC1F;
    }

    #main-nav li.active:after{
        position: absolute;
        content: ' ';
        top: 0;
        left: 100%;
        width: 10px;
        height: 50px;
        background: url(../img/arrow_main_nav.png) no-repeat left center;
    }

    #main-nav li a{
        position: relative;
        display: block;
        padding: 0 20px;
        background: transparent;
    }

    .ttl-main{
        margin: 0 0 30px;
        font-size: 36px; font-size: 3.6rem;
    }

    .ttl-main:after{
        position: absolute;
        content: ' ';
        left: 0;
        bottom: 0;
        width: 267px;
        height: 1px;
        background: #60B91D;
    }

    #main-container .table-gray {
        border-left: 1px solid #E5E5E5;
    }

    #main-container .table-gray dt{
        float: left;
        display: inline;
        width: 20%;
        height: auto;
        line-height: 1.6;
        margin: 0;
        padding: 10px 2%;
        border-left: none;
        border-bottom: none;
        font-size: 16px; font-size: 1.6rem;
    }

    #main-container .table-gray dd{
        margin: 0 0 0 24%;
        padding: 10px 2%;
        border-bottom: none;
    }

    #main-container .table-gray{
        border-bottom: 1px solid #E5E5E5;
    }

    #main-container .title-open,
    #main-container .title-close {
        height: auto;
        line-height: 1.6;
        margin: 0 0 10px;
        padding: 0;
        border: none;
        background: none;
        color: #176E11;
        font-weight: normal;
        font-size: 18px; font-size: 1.8rem;
        cursor: pointer;
    }

    #main-container .title-open:after,
    #main-container .title-close:after {
        content: ' ';
    }

    #main-container .open-content{
        margin: 0;
        padding: 0;
        border: none;
    }

    #main-container .m-link,
    #main-container .li-link li{
        border: none;
    }

    #main-container .m-link a,
    #main-container .li-link a{
        height: auto;
        line-height: 1.6;
        margin: 0 0 10px;
        padding: 0;
        font-size: 16px; font-size: 1.6rem;
        color: #D87890;
        text-decoration: underline;
    }

    #main-container .li-link li{
        display: inline-block;
        display: inline;
        zoom: 1;
        margin: 0 10px 0 0;
    }

    .w50{
        width: 60%;
        margin: 0 0 20px;
    }

    .btn-area{
        width: 280px;
    }

/*2022 renewal*/

    #main-container{
        margin: 0 0 80px;
    }

    .hx-ttl{
        margin: 0 0 80px;
        padding: 0;
        font-size: 40px; font-size: 4.0rem;
    }

    .hx-ttl:before{
        content: " ";
        position: absolute;
        width: 1000px;
        height: 4px;
        margin: -2px 0 0 -1020px;
    }

    .btn-box{
        -js-display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 0 80px;
    }

    .btn-box li{
        margin: 0 15px;
    }

    .btn-box.contact {
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 0 60px;
    }

    .btn-box.contact li{
        margin: 0 20px;
    }

    .btn-box.contact li:last-child{
        flex: none;
    }

    .btn-box.contact li .btn-green{
        padding: 0 100px;
    }

    .btn-box.contact li input{
        padding: 0 40px;
    }

    .btn{
        height: 50px;
        line-height: 50px;
        padding: 0 40px;
        border-radius: 25px;
    }

    .tbl-privacy th,
    .tbl-privacy td{
        padding: 10px;
        font-size: 16px; font-size: 1.6rem;
    }

/* ============
    WIDE: Footer
   ============ */

    #footer-container{
        margin: 0;
        padding: 106px 0 0;
        font-size: 12px; font-size: 1.2rem;
    }

    #footer-container .wrapper{
        position: relative;
        width: 90%;
        margin: 0 5%;
    }

    .dl-contact{
        margin: 0 0 120px;
    }

    .dl-contact dt{
        margin: 0 0 48px;
        font-size: 50px; font-size: 5.0rem;
    }

    .dl-contact dd ul{
        display: flex;
        /*justify-content: space-between;*/
        justify-content: center;
        align-items: stretch;
        margin: 0 -20px;
    }

    .dl-contact dd ul li{
        width: auto;
        max-width: 400px;
        margin: 0;
        padding: 0 20px;
        flex: 1;
    }

    .dl-contact dd ul li a{
        font-size: 16px; font-size: 1.6rem;
    }

    .ftr-menu-box{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        margin: 0 -24px;
        padding: 0 0 60px;
    }

    .ftr-menu-box .inner{
        flex: 1;
        padding: 0 24px;
        box-sizing: border-box;
    }

    .ftr-menu-box .inner.mt{
        margin: 55px 0 0;
    }

    .ftr-menu-category{
        position: relative;
        height: 40px;
        line-height: 40px;
        margin: 0 0 15px;
        font-size: 25px; font-size: 2.5rem;
    }

    .ftr-menu-category a{
        line-height: 1;
    }

    .ftr-menu dt{
        position: relative;
        height: auto;
        line-height: 1.8;
        margin: 0 0 20px;
        padding: 0 0 8px;
        border-bottom: 1px solid #231815;
        cursor: auto;
        font-weight: 400;
    }

    .ftr-menu dt .toggle-btn {
        display: none;
    }

    .ftr-menu dd {
        display: block;
        border-bottom: none;
        margin: 0 0 40px;
        padding: 0;
    }

    .ftr-menu dd .tag-new{
        font-size: 13px; font-size: 1.3rem;
    }

    .ftr-menu dd li,
    .ftr-menu-contact li{
        margin: 0 0 10px;
    }

    .ftr-menu dd a,
    .ftr-menu-contact a{
        display: block;
        line-height: 1.8;
        color: #000;
        text-decoration: none;
    }

    .ftr-menu dd a:hover,
    .ftr-menu-contact a:hover{
        text-decoration: underline;
    }

    .ftr-menu-contact{
        margin: 20px 0 0;
    }

    .ftr-copy-box{
        padding: 36px 0;
    }

    .ftr-copy-box .inner{
        display: flex;
        justify-content: space-between;
        align-items: stretch;
    }

    .ftr-copy-box .ftr-link{
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        margin: 0;
    }

    .ftr-copy-box .ftr-link li{
        width: auto;
        margin: 0 24px 0 0;
    }

    .ftr-copy-box .ftr-link li a{
        padding: 0;
        text-align: left;
        text-decoration: none;
    }

    .ftr-copy-box .ftr-link li a:hover{
        text-decoration: underline;
    }

    .ftr-logo{
        position: absolute;
        bottom: 100px;
        left: 0;
        width: 161px;
        height: 54px;
        margin: 0;
    }

    .ftr-copy-box .copy{
        line-height: 1;
        text-align: left;
    }


    /*#footer-container .logo-box .privacy-box{
        position: absolute;
        top: 0;
        right: 0;
    }

    #footer-container .logo-box .privacy-box .isms{
        height: 80px;
        margin: 0 15px 0 0;
    }

    #footer-container .logo-box .privacy{
        width: 80px;
        height: 80px;
    }*/

}

@media only screen and (min-width: 1140px) {


    .main-col{
        float: right;
        display: inline;
        width: 770px;
    }

    .styled-select{
        width: 60%;
    }

    textarea{
        width: 60%;
        height: 200px;
    }

    .one-set{
        width: 60%;
    }

    .two-set{
        width: 29%;
    }

    .two-set.left{
        margin-right: 2%;
    }




}

/* 20151014 add */

#nav-container{
    margin: 0;
}

@media only screen and (min-width: 768px) {
    #main-container{
        z-index: 0;
    }
    #header-container{
        position: relative;
        height: 140px;
        width: 100%;
        background-color: #fff;
        z-index: 10;
    }
    #header-container .wrapper .note{
        display: block;
        width: 100%;
    }

    #nav-container.nfixed{
        position: fixed;
        height: auto;
        width: 100%;
        z-index: 9;
        top: 0;
        margin-top: 0;
        padding: 0;
        transition: top 0.65s ease-in;
        -webkit-transition: top 0.65s ease-in;
        -moz-transition: top 0.65s ease-in;
    }
    .nav{
        float: none;
    }

}

@media only screen and (min-width: 1180px) {

    .wrapper{
        width: 1100px;
        margin: 0 auto;
    }

    /* ============
        PC: Header
       ============ */

   .main-menu a,
    .right-menu a {
        font-size: 20px; font-size: 2.0rem;
    }

    /* ============
        PC: Footer
       ============ */

    #footer-container{
       font-size: 14px; font-size: 1.4rem;
    }

    #footer-container .wrapper{
       position: relative;
       width: 1100px;
       margin: 0 auto;
    }

    .dl-contact dd ul{
        margin: 0 -45px;
    }

    .dl-contact dd ul li{
        padding: 0 45px;
    }

    .dl-contact dd ul li a{
        font-size: 17px; font-size: 1.7rem;
    }

    .ftr-menu-category a,
    .ftr-menu,
    .ftr-menu-contact{
        font-size: 14px; font-size: 1.4rem;
    }

    .ftr-copy-box .copy{
        font-size: 14px; font-size: 1.4rem;
    }

}