@charset "utf-8";

/*
Theme Name: theme-04
Version: 1.0
Author: groworks
Author URI: https://groworks.jp/
*/

/*-------------------------------------------------------------
  reset
-------------------------------------------------------------*/
html,
body {
    height: 100%;
    font-size: 62.5%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', '游ゴシック体', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
    line-height: 1.7;
    color: #333;
    font-weight: 400;
    position: relative;
    letter-spacing: .06em;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

header,
main,
article,
section,
nav,
footer {
    display: block;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    font-size: 100%;
}

input,
textarea {
    font-family: 'Noto Sans JP', 'Open Sans', sans-serif, "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック";
}

input {
    line-height: 1.7;
    color: #000;
    letter-spacing: .06em;
    border: 0;
    padding: 10px 15px;
    border-radius: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
th,
var {
    font-style: normal;
    font-weight: normal;
}

em {
    font-style: normal;
    font-weight: 500;
}

ol,
ul {
    list-style: none;
}

caption {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

::-webkit-input-placeholder {
    color: #ccc;
}

::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #ccc;
}

input:focus::-webkit-input-placeholder,
input:focus:-moz-placeholder,
input:focus::-moz-placeholder {
    color: transparent;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/*-------------------------------------------------------------
  Page related
-------------------------------------------------------------*/
#wrapper {
    position: relative;
    overflow: hidden;
}

#nojs {
    width: 940px;
    background: #fff;
    color: #f00;
    padding: 25px;
    border: 5px solid #F00;
    text-align: center;
    margin: 20px auto;
}

::selection,
::-moz-selection,
::-webkit-selection {
    background: #31B430;
    color: #fff;
}

.sp_size {
    display: none !important;
}

/*-------------------------------------------------------------
  header
-------------------------------------------------------------*/
#header_wrap {
    width: 100%;
    z-index: 150;
    position: fixed;
    transition: all .3s ease;
}

#header_wrap:after {
    content: "";
    display: block;
    clear: both;
}

#header_wrap.hide {
    transform: translateY(-100%);
}

#header_wrap.smallhead {
    background: #fff !important;
}

#header_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: auto;
    padding: 0 0 0 25px;
    transition: all .3s ease;
    max-height: 175px;
}

#header_wrap.smallhead #header_area {
    padding: 0 0 20px 25px;
}

#logo {
    display: flex;
    align-items: center;
    transition: all .3s;
}

#header_wrap.smallhead #logo {
    padding: 0;
}

#logo a,
#logo img {
    display: block;
    width: auto;
    min-width: 91px;
    height: auto;
    max-width: 30vw;
    transition: all .3s ease;
    position: relative;
    padding-top: 5px;
}

#menu-box {
    position: relative;
    padding: 0 30px 0 20px;
}

#menu {
    margin-top: 50px;
}

.menu_list,
#submenu nav ul {
    display: flex;
    flex-wrap: wrap;
	justify-content: flex-start;
    padding-left: 0;
    margin: 0;
}

.menu_list {
    overflow: visible;
    align-items: center;
}

.menu_item {
    display: inline-block;
    line-height: 1.6;
    margin: 0 20px 12px 0;
    position: relative;
}


.menu_link {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333 !important;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(29, 54, 71, .15);
    white-space: nowrap;
    padding: 0;
    transition: all .3s;
}

#header_wrap.smallhead .menu_link {
    color: #333;
}

.menu_link:hover,
.menu_item.on .menu_link,
#submenu ul li a:hover {
    opacity: .7;
}

.h_sub_list {
    position: absolute;
    right: 0;
    top: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    z-index: 1000;
    overflow: hidden;
    transition: all .3s ease;
    pointer-events: none;
    border-radius: 18px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 10%);
}

.menu_item:hover .h_sub_list {
    opacity: 1;
    z-index: 1010;
    pointer-events: auto;
}

.s_sub_item {
    line-height: 1.6;
    transition: .3s;
    margin: 0;
    list-style: none !important;
}

.h_sub_link {
    display: block;
    padding: 12px 18px;
    background: #fff;
    color: #000;
    white-space: nowrap;
    text-align: center;
    transition: background-color .3s;
    text-decoration: none !important;
}

.h_sub_link:hover {
    background: #FFF7F9;
}

#submenu {
    position: absolute;
    top: 0;
    right: 0;
}

#submenu nav ul li {
    white-space: nowrap;
    list-style: none;
    line-height: 1.6;
    margin: 0 28px 0 0;
}

#submenu nav ul li:last-child {
    margin-right: 0;
}

#submenu nav ul li a {
    position: relative;
    display: block;
    color: #333;
    font-size: 1.3rem;
    letter-spacing: 0;
    line-height: 1.23;
    text-decoration: none;
    padding: 5px 0;
    transition: all .3s;
}

/*-------------------------------------------------------------
  footer
-------------------------------------------------------------*/
#footer_wrap {
    position: relative;
}

#footer_wrap::before {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 40px);
    background: #fff;
    bottom: 0;
    left: 0;
}

#return {
    position: relative;
    z-index: 150;
}

.return_btn {
    display: block;
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: #f4f2f080;
    text-decoration: none;
    transition: background .3s, border-color .3s;
    border-radius: 50px;
}

.return_btn:hover {
    background: #fff;
}

.return_btn::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(-45deg);
    transition: border-color .3s;
}

.return_txt {
    display: none;
}

.footer_area {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', '游ゴシック体', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
    text-align: center;
    max-width: 1740px;
    padding: 0 20px;
    margin: auto;
    position: relative;
}

/* footer top */
.footer_t_box {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 31px;
    position: relative;
}

.footer_t_l,
.footer_t_r {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    text-decoration: none;
    color: #FFF !important;
    height: 180px;
    background: #31B430;
    position: relative;
    transition: all .7s ease;
}

.footer_t_r {
    flex-direction: column;
    margin: 0 auto;
}

.footer_t_l::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #299862;
    opacity: 0;
    transition: all .5s ease;
    pointer-events: none;
}

.footer_t_l strong,
.footer_t_r strong {
    font-size: 1.8rem;
    font-weight: 500;
    position: relative;
}

.footer_t_l strong::before {
    display: block;
    content: attr(data-txt)"";
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: .06em;
    margin-bottom: 11px;
    max-height: 100%;
}

.footer_t_r span {
    position: relative;
    display: block;
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.2;
    margin-top: 5px;
    margin-bottom: 10px;
}

.footer_t_r p {
    position: relative;
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .06em;
}

.footer_t_l:hover::before,
.footer_t_r:hover::before {
    opacity: 1;
}

/* footer middle */
.footer_m {
    margin: 0 0 25px;
}

.f_main_list {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    letter-spacing: 1.8px;
    line-height: 2.7rem;
    padding: 0;
    margin: 0 0 46px;
}

.f_main_item {
    margin: 0 34px 0 0 !important;
    list-style: none;
    position: relative;
}

.f_main_item:last-child {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

.f_main_link,
.f_sub_link {
    position: relative;
    font-size: 1.6rem;
    letter-spacing: .06em;
    line-height: 1.4375;
    color: #333 !important;
    text-decoration: none;
    transition: opacity .3s;
    max-height: 100%;
}

.f_main_link:hover,
.f_sub_link:hover {
    opacity: .7;
}

.f_sub_list {
    display: none;
}

/* footer info */
.f_info {
    color: #31B430;
}

.f_info a {
    display: inline-block;
    margin: 0 0 9px;
}

.f_company_info {
    font-size: 1.4rem;
    line-height: 1.75;
    letter-spacing: 0;
    margin: 0;
    text-align: center;
}

.f_company_info span {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: .06em;
    margin-top: 7px;
}

/* footer bottom */
.footer_b {
    padding: 5px 0 15px;
    position: relative;
}

.footer_b::before {
    position: absolute;
    content: "";
    width: 100vw;
    min-width: 1920px;
    height: 100%;
    top: 0;
    left: 50%;
    background: #FFF;
    transform: translateX(-50%);
    opacity: .3;
}

.footer_b_box {
    display: flex;
    justify-content: center;
    position: relative;
}

.f_b_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.f_b_item {
    line-height: 1.7;
    list-style: none;
    margin: 0 11px 0 0;
}

.f_b_item a[target="_blank"] {
    font-size: 1.3rem;
    text-decoration: none;
    color: #FFF;
    padding-right: 15px;
    background: url(img/popup_w.svg) no-repeat top 2px right 3px;
}

.f_b_item a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 1.5;
    text-align: center;
    color: #818181;
}

[href^="tel:"] {
    color: #fff !important;
    pointer-events: none;
    text-decoration: none !important;
}

#footer_wrap .chip {
    display: inline-block;
    margin: 20px 0 0;
    padding: 2px 10px;
    font-size: 1.6rem;
	font-weight: 600;
    color: #31B430;
    border: 1px solid #31B430;
    border-radius: 20px;
}

/*---------------------------------------------------------
	スクロールエフェクト
---------------------------------------------------------*/

.inview {
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s cubic-bezier(.3, .1, .3, 1);
}

.inview.on {
	opacity: 1;
	transform: translateY(0);
}


@media print {
	.inview {
		opacity: 1 !important;
		transform: translateY(0) !important;
	}
}



/*-------------------------------------------------------------
  Desktop min width
-------------------------------------------------------------*/
@media (min-width: 768px) {
    body {
        min-width: 1240px;
    }
}

/*-------------------------------------------------------------
  <= 1330px
-------------------------------------------------------------*/
@media screen and (max-width:1330px) {
    .footer_access_txt {
        width: 35%;
        padding: 20px 30px;
    }

    .footer_access_map {
        width: 65%;
    }

    .menu_link,
    #submenu nav ul li a {
        font-size: 1.7rem;
    }
}

/*-------------------------------------------------------------
  767px<= 1300px : ハンバーガー表示開始
-------------------------------------------------------------*/
@media screen and (max-width:767px) {

    /* PC横並び -> ドロワー */
    .menu_list,
    #submenu nav ul {
        display: block;
    }

    .menu_item,
    #submenu nav ul li {
        display: block;
        float: none;
        margin: 0;
        width: auto;
        border-bottom: 1px solid #ccc;
        position: relative;
        text-align: center;
        box-shadow: none;
    }

    .menu_link,
    #submenu nav ul li a {
        font-size: 1.4rem;
        line-height: 1.6;
        padding: 13px 15px;
        text-align: center;
        color: #333 !important;
        margin: 0;
        opacity: 1 !important;
    }

    /* トグルボタン */
    #toggle {
        position: relative;
        height: 65px;
        z-index: 9000;
        float: right;
        display: block;
    }

    #toggle a {
        display: block;
        position: relative;
        width: 80px;
        height: 65px;
        background: none;
    }

    /* ハンバーガーの線（通常：緑） */
    #toggle a::before,
    #toggle a span,
    #toggle a::after {
        content: "";
        position: absolute;
        display: block;
        width: 38px;
        height: 3px;
        margin: auto;
        left: 0;
        right: 0;
        background: #31B430 !important;
        transition: all .3s;
        border-radius: 50px;
    }

    #toggle a::before {
        top: 20px;
    }

    #toggle a span {
        top: 30px;
    }

    #toggle a::after {
        top: 40px;
    }

    /* 開いた時は×印を白に */
    #toggle a.open span {
        opacity: 0;
    }

    #toggle a.open::before {
        transform: translateY(12px) rotate(45deg);
        top: 21px;
        background: #fff !important;
    }

    #toggle a.open::after {
        transform: translateY(-12px) rotate(-45deg);
        top: 45px;
        background: #fff !important;
    }

    /* メニュー本体（デフォは閉） */
    #menu-box {
        display: none;
    }

    body.menu-open #menu-box {
        display: block !important;
        position: fixed;
        inset: 0;
        z-index: 8000;
        padding: 80px 20px;
        background: #31B430;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* ヘッダー高さ調整 */
    #header_area {
        height: auto;
        padding: 0 0 0 25px;
    }

    /* 	#toggle.sp_size { 
    display: block !important;
  } */
}

/*-------------------------------------------------------------
  <= 767px
-------------------------------------------------------------*/
@media screen and (max-width:767px) {

    body {
        background: #fff;
        width: auto;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        font-size: 1.3rem;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    input,
    textarea,
    select {
        font-size: 1.4rem;
    }

    #nojs {
        width: auto;
        background: #fff;
        color: #f00;
        padding: 10px;
        border: 5px solid #F00;
        text-align: center;
        margin: 10px auto;
    }

    img {
        width: auto;
        max-width: 100%;
    }

    .pc_size {
        display: none !important;
    }

    .sp_size {
        display: block !important;
    }

    /* header */
    #header_wrap {
        z-index: 10000;
        height: 65px;
    }

    #header_wrap.sp_menu_on {
        border-bottom: none;
    }

    #header_area {
        align-items: center;
        padding: 0 0 0 15px !important;
        height: auto;
    }

    #logo {
        max-width: calc(100% - 80px);
        padding: 0;
        z-index: 100;
    }

    #logo a,
    #logo img {
        min-width: auto;
        max-width: 65%;
        padding-top: 0;
    }

    #toggle {
        display: block;
        position: relative;
        height: 65px;
        top: 0;
        right: 0;
        z-index: 9000;
        float: right;
    }

    #toggle a {
        display: block;
        background: none;
        width: 80px;
        height: 65px;
        position: relative;
    }

    /* モバイルではメニューオーバーレイを白背景に */
    #menu-box {
        float: none;
        position: fixed;
        z-index: 8000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        padding: 65px 20px 80px;
        margin: 0;
        background: #fff;
        box-sizing: border-box;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #menu {
        display: block;
        clear: both;
        background: none;
        position: relative;
        z-index: 10000;
        float: none;
        margin: 0;
    }

    .menu_dis {
        display: none !important;
    }

    .menu_list,
    #submenu nav ul {
        display: block;
    }

    .menu_item,
    #submenu nav ul li {
        display: block;
        float: none;
        margin: 0;
        width: auto;
        border-bottom: 1px solid #fff;
        position: relative;
        text-align: center;
        box-shadow: none;
    }

    .menu_item.top_item {
        padding: 0;
        margin-bottom: 0;
        border-bottom: 1px solid #ccc !important;
    }

    .menu_link,
    #submenu nav ul li a {
        font-size: 1.4rem;
        line-height: 1.6;
        padding: 13px 15px;
        text-align: center;
        color: #fff !important;
        margin: 0;
        opacity: 1 !important;
    }

    .parent_btn::after {
        content: '';
        position: absolute;
        top: 0;
        right: 22px;
        bottom: 0;
        margin: auto;
        width: 10px;
        height: 10px;
        border-right: 2px solid #F18886;
        border-bottom: 2px solid #F18886;
        transform: rotate(45deg);
        transition: all .3s;
        opacity: 1;
        visibility: visible;
    }

    .parent_btn.open::after {
        top: 6px;
        transform: rotate(-135deg);
    }

    .h_sub_list {
        border-top: 1px solid #ccc;
        display: none;
        position: relative;
        width: 100%;
        margin: 0;
        transition: visibility .3s, opacity .3s !important;
        height: auto;
        opacity: 1;
        z-index: 1010;
        pointer-events: auto;
        border-radius: 0;
        box-shadow: none;
    }

    .h_sub_link {
        padding: 10px 30px;
        background: transparent;
        color: #333;
    }

    .s_sub_item {
        margin: 0;
        opacity: 1;
        height: auto;
    }

    #submenu {
        position: relative;
    }

    #submenu nav ul li {
        margin-right: 0;
    }

    /* footer (SP) */
    .footer_t_box {
        display: block;
        margin: 0 0 25px;
    }

    .footer_t_l {
        width: 100%;
        height: 100px;
        padding: 5px 15px;
    }

    .footer_t_r {
        width: 100%;
        height: 150px;
        padding: 10px 15px;
    }

    .footer_t_l strong,
    .footer_t_r strong {
        font-size: 1.5rem;
    }

    .footer_t_l strong::before,
    .footer_t_r strong::before {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }

    .footer_t_r span {
        font-size: 1.3rem;
        margin-top: 3px;
        margin-bottom: 8px;
    }

    .footer_t_r p {
        font-size: 1.8rem;
    }

    .footer_m {
        margin: 0;
    }

    .f_main_list {
        display: block;
        padding: 0 20px;
        margin: 0 0 30px;
    }

    .f_main_item {
        margin: 0 !important;
        border-bottom: 1px solid #ddd;
    }

    .f_main_item:first-child {
        border-top: 1px solid #ddd;
    }

    .f_main_link,
    .f_sub_link {
        display: block;
        font-size: 1.3rem;
        line-height: 1.7;
        padding: 12px 0 11px;
    }

    .f_company_info {
        font-size: 1.3rem;
    }

    .f_company_info span {
        font-size: 1.2rem;
    }

    .footer_b {
        padding: 15px 0;
    }

    .footer_b::before {
        min-width: auto;
    }

    .footer_b_box {
        display: block;
    }

    .f_b_list {
        justify-content: center;
        margin: 0 0 5px;
    }

    .f_b_item {
        list-style: none;
        margin: 0 5px 5px;
    }

    .f_b_item a {
        font-size: 1.2rem;
    }

    .copyright {
        font-size: 1.1rem;
    }

    [href^="tel:"] {
        pointer-events: all;
        text-decoration: underline;
    }
}