@charset "UTF-8";

/*--------------------------------

>>> Base Style

---------------------------------*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}
*:active,
*:focus,
*:hover {
    outline: none;
}
html {
    height: 100%;
    font-size: 15px !important;
}
body {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
}
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;  /* 背景カラー */
  z-index: 9999;  /* 一番手前に */
  pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;  /* 初期値 : 透過状態 */
  -webkit-transition: opacity .8s ease;  /* アニメーション時間は 0.8秒 */
  transition: opacity .8s ease;
}
body.trans_fadeout::after {
  opacity: 1;
}

@media (max-width: 520px) {
    body {
        padding-top: 75px;
    }
    html {
        font-size: 3.3vw !important;
    }
}
a {
    color: #000;
    text-decoration: none;
    transition:ALL .5s ease;
    -webkit-transition:ALL .5s ease;
    -moz-transition:ALL .5s ease;
    -o-transition:ALL .5s ease;
}
h2 {
    line-height: 1.4;
    letter-spacing: .05em;
}
p {
    line-height: 1.8;
    word-break: break-all;
    line-break: normal;
    letter-spacing: .05em;
}
img {
    display: block;
    width: 100%;
    height: auto;
}

.clear {
    clear: both;
}
.clear hr {
    display: none;
}
.wrap {
    width: 1100px;
    margin: 0 auto;
}
.wrap800 {
    width: 800px;
    margin: 0 auto;
}
@media (max-width: 520px) {
    .wrap {
        width: 100%;
    }
    .wrap800 {
        width: 100%;
    }
}

.sp_hide {
    display: block;
}
.pc_hide {
    display: none;
}
br.sp {
    display: none;
}
br.pc {
    display: inline;
}

@media (max-width: 520px) {
    .sp_hide {
        display: none !important;
    }
    .pc_hide {
        display: block;
    }
    br.sp {
        display: inline;
    }
    br.pc {
        display: none;
    }
}

/*--------------------------------

>>> Share Style

---------------------------------*/
.base_mov {
    position: relative;
    top: 30px;
    opacity: 0;
    transition:ALL .8s ease;
    -webkit-transition:ALL .8s ease;
    -moz-transition:ALL .8s ease;
    -o-transition:ALL .5s ease;
}
.base_mov.started {
    top: 0;
    opacity: 1;
}

h2.base {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #66cdaa;
    text-align: center;
    font-size: 2rem;
    position: relative;
}
h2.base::before {
    content: "";
    width: 200px;
    height: 100px;
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    transform: translate(0px,-40px);
    margin: auto;
    background: url('../img/share/hl_obj.png') center center/contain no-repeat;
}
h2.base span {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    color: #838383;
    font-size: .8em;
    font-weight: 400;
}
@media (max-width: 520px) {
        h2.base {
            font-size: 1.6rem;
        }
        h2.base::before {
            width: 150px;
            height: 60px;
            top: -30px;
        }
}

.btn01 {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 50px;
    border: 3px solid #66cdaa;
    color: #66cdaa;
    letter-spacing: .05em;
    font-weight: 500;
}
.btn01:hover {
    color: #fff;
    background-color: #66cdaa;
}

.arrow_link {
    font-size: 1.26rem;
}
.arrow_link:hover {
    opacity: 0.5;
}
.arrow_link span {
    position: relative;
}
.arrow_link span::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 10px);
    width: 28px;
    height: 28px;
    background: url('../img/share/arrow.png') center center/contain no-repeat;
}
/*navigation*/
.navigation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.navigation .navigation_btn {
}
@media (max-width: 520px) {
    .navigation .navigation_btn {
        width: 20%;
    }
}
.navigation .navigation_btn a {
    display: block;
    width: 45px;
    height: 45px;
    color: transparent;
    background: url('../img/share/arrow.png') center center/contain no-repeat;
    padding: 15px 0;
    text-decoration: none;
    text-align: center;
}.navigation .navigation_btn_pre {
    transform: rotate(180deg);
}
.navigation .navigation_btn a:hover {
    opacity: 0.5;
}

/*--------------------------------

>>>Header Style

---------------------------------*/
header {
    width: 100%;
    padding: 10px 0;
    background-color: #fff;
    position: relative;
    transition:ALL .5s ease;
    -webkit-transition:ALL .5s ease;
    -moz-transition:ALL .5s ease;
    -o-transition:ALL .5s ease;
}
header #logo {
    width: 250px;
    margin: 0 auto;
}
@media (max-width: 520px) {
    header {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    header #logo {
        width: 30%;
    }
}
header #site_description {
    text-align: center;
    margin: 5px 0;
}
@media (max-width: 520px) {
    header #site_description {
        display: none;
    }
}
header .contact_btn {
    width: 135px;
    position: absolute;
    top: 0;
    right: 25px;
}
header .contact_btn img {
    transition:ALL .5s ease;
    -webkit-transition:ALL .5s ease;
    -moz-transition:ALL .5s ease;
    -o-transition:ALL .5s ease;
}
header .contact_btn a:hover img {
    opacity: 0.5;
}
@media (max-width: 520px) {
    header .contact_btn {
        display: none;
    }
    
}

.g_nav {
}
.g_nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 55px;
}
.g_nav ul li {
    letter-spacing: .1em;
    text-align: center;
}
.g_nav ul li + li {
    margin-left: 50px;
}
.g_nav ul li a {
    color: #000;
    font-weight: 500;
    text-align: center;
}
.g_nav ul li a span {
    display: block;
    color: #66cdaa;
    margin-top: 10px;
    font-weight: 500;
    font-size: .7em;
    transition: ALL .5s ease;
    -webkit-transition: ALL .5s ease;
    -moz-transition: ALL .5s ease;
    -o-transition: ALL .5s ease;
}
.g_nav ul li.current a span,
.g_nav ul li a:hover span {
    color: #f08080;
}
@media (max-width: 520px) {
    .g_nav {
        width: 100%;
        height: 100vh;
        height: -webkit-fill-available;
        position: fixed;
        top: 0;
        right: 100%;
        z-index: 1000;
        background-color: #fff;
        transition: ALL 0.3s ease;
        -webkit-transition: ALL 0.3s ease;
        -moz-transition: ALL 0.3s ease;
        -o-transition: ALL 0.3s ease;
    }
    .g_nav ul {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
    .g_nav ul li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .g_nav ul li + li {
        margin-left: 0;
    }
    .g_nav ul li.in_contact_btn {
        text-align: center;
    }
    .g_nav ul li.in_contact_btn img {
        width: 60%;
        margin:0 auto;
    }
    .g_nav.active {
        right: 0;
    }
}
.sc_nav {
    width: 100%;
    position: fixed;
    top: -150px;
    left: 0;
    background-color: #fff;
    padding: 35px 50px;
    z-index: 1000;
    transition: ALL .5s ease;
    -webkit-transition: ALL .5s ease;
    -moz-transition: ALL .5s ease;
    -o-transition: ALL .5s ease;
}
.sc_nav .sc_logo {
    width: 200px;
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    left: 50px;
}
.sc_nav.sc_action {
    top: 0;
}
.sc_nav ul {
    display: flex;
    justify-content: flex-end;
}
.sc_nav ul li {
    letter-spacing: .1em;
    text-align: center;
}
.sc_nav ul li + li {
    margin-left: 50px;
}
.sc_nav ul li a {
    color: #000;
    font-weight: 500;
    text-align: center;
}
.sc_nav ul li a span {
    display: block;
    color: #66cdaa;
    margin-top: 10px;
    font-weight: 500;
    font-size: .7em;
    transition: ALL .5s ease;
    -webkit-transition: ALL .5s ease;
    -moz-transition: ALL .5s ease;
    -o-transition: ALL .5s ease;
}
.sc_nav ul li a:hover span {
    color: #f08080;
}

.header_overray {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 999;
    display: none;
}
.header_overray.active {
    display: block;
}

/*バーガーメニュー PC非表示*/
.menu_trigger {
    display: none;
    z-index: 1000;
}

@media (max-width: 520px) {
    .menu_trigger,
    .menu_trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }
    .menu_trigger {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 10px;
        width: 30px;
        height: 20px;
    }
    .menu_trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #000;
        border-radius: 4px;
    }
    .menu_trigger span:nth-of-type(1) {
        top: 0;
    }
    .menu_trigger span:nth-of-type(2) {
        top: 9px;
    }
    .menu_trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .menu_trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        transform: translateY(10px) rotate(-45deg);
    }
    .menu_trigger.active span:nth-of-type(2) {
        left: -20px;
        opacity: 0;
    }
    .menu_trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
    }
}

/*--------------------------------

>>>Footer Style

---------------------------------*/
footer {
    position: relative;
    padding: 190px 0 0;
}
footer::before {
    content: "";
    width: 100%;
    height: 300px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url('../img/share/cloud_green.png') top center/cover no-repeat;
    z-index: -1;
}
footer .f_company {

}
footer .f_company h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1rem;
}
footer .f_company li {
    width: 100%;
    text-align: center;
    font-weight: 500;
    letter-spacing: .1em;
    font-size: 1.3rem;
}
footer .f_company li + li {
    margin-top: 10px;
}

footer .f_logo {
    width: 315px;
    margin: 0 auto;
}
footer .f_info {
    width: 495px;
    margin: 40px auto 0;
}
footer .f_info .tel {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.22rem;
    letter-spacing: .2em;
    font-weight: 600;
    text-align: center;
}
footer .f_info .tel span {
    font-size: 1.2em;
    position: relative;
    top: 8px;
    left: -5px;
}
footer .f_info table {
    width: 100%;
    margin: 40px auto 0;
}
footer .f_info table tr {
    display: block;
}
footer .f_info table tr + tr {
    margin-top: 25px;
}
footer .f_info table td {
    font-size: 1.13rem;
    font-weight: 500;
    display: inline-block;
}
footer .f_info table td:nth-of-type(1) {
    letter-spacing: .2em;
    width: 18%;
}
footer .f_info table td:nth-of-type(2) {
    letter-spacing: .1em;
    width: 82%;
}
footer .lisence {
    margin-top: 200px;
    text-align: center;
    color: #000;
}
footer .lisence li {
    letter-spacing: .1em;
    font-size: .9rem;
}
footer .lisence li + li {
    margin-top: 5px;
}
footer .lisence a {
    color: #fff;
    pointer-events: none;
}
footer .copyright {
    width: 100%;
    margin-top: 20px;
    padding: 0 0 20px;
    font-size: .9rem;
    text-align: center;
    color: #fff;
    letter-spacing: .1em;
}
@media (max-width: 520px) {
    footer .footer_nav {
        width: 100%;
    }
    footer .footer_nav ul li {
        width: 100%;
        text-align: center;
    }
    footer .f_info {
        width: 100%;
        margin: 40px auto 0;
    }
    
    footer .f_info table td {
        font-size: 1.13rem;
        font-weight: 500;
        display: block;
        text-align: center;
    }
    footer .f_info table td:nth-of-type(1) {
        width: 100%;
        padding-bottom: 15px;
    }
    footer .f_info table td:nth-of-type(2) {
        width: 100%;
    }
    footer .lisence li {
        letter-spacing: .1em;
        font-size: .9rem;
        line-height: 1.4;
    }
    footer .lisence li + li {
        margin-top: 10px;
    }
    
    
}

/*--------------------------------

>>>Layout Style

---------------------------------*/
/*Main*/
main {
    width: 100%;
}

/*Side*/
aside {
    overflow: hidden;
    padding: 0 0 20px;
    margin: 0;
    width: 250px;
}

.side-widget {
    padding: 20px 0 0;
    float: left;
    width: 250px;
    overflow: hidden;
}
.side-widget .widget-title {
    margin: 0;
    font-weight: bold;
}
.side-widget ul {
    margin: 0;
}
.side-widget ul li {
    margin: 0;
    padding: 0 0 0 10px;
}
.side-widget ul li p {
    margin: 0;
}
.side-widget ul li th,
.side-widget ul li .side-widget td {
    padding: 0;
    text-align: center;
}


/*--------------------------------

>>>Index Style

---------------------------------*/
@media (max-width: 520px) {
    .post_index .wrap {
        padding: 0 2.5%;
    }
}
.post_index {
    margin-top: 100px;
}
.post_index .thumb {
    background: center center/cover no-repeat;
}
.post_index .post_item {
    border-bottom: 2px dashed #66cdaa;
    position: relative;
    padding: 0 2.5% 25px;
}
.post_index .post_item + .post_item {
    margin-top: 25px;
}
.post_index .post_item .fl_block {
    display: flex;
}
.post_index .post_item .meta {
    font-size: 1rem;
    letter-spacing: .05em;
    line-height: 1.4;
    padding-right: 50px;
}
.post_index .post_item .meta .status_on {
    width: 150px;
    padding: 5px 0;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    background-color: #66cdaa;
    font-weight: 600;
    border-radius: 100px;
    line-height: 1.4;
}
.post_index .post_item .meta .status_off {
    width: 150px;
    padding: 5px 0;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    background-color: #808080;
    font-weight: 600;
    border-radius: 100px;
    line-height: 1.4;
}
.post_index .post_item h2 {
    font-size: 1rem;
    letter-spacing: .05em;
    line-height: 1.4;
    transition:ALL .5s ease;
    -webkit-transition:ALL .5s ease;
    -moz-transition:ALL .5s ease;
    -o-transition:ALL .5s ease;
}
.post-type-archive-recruit .post_index .post_item h2 {
    margin-top: 4px;
}
.post_index .post_item:hover h2 {
    color: #66cdaa;
}
.post_index .post_item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
@media (max-width: 520px) {
    .post_index {
        margin-top: 100px;
        padding:0 5%;
    }
    .post_index .thumb {
        background: center center/cover no-repeat;
    }
    .post_index .post_item {
        border-bottom: 2px dashed #66cdaa;
        position: relative;
        padding: 0 2.5% 25px;
    }
    .post_index .post_item + .post_item {
        margin-top: 25px;
    }
    .post_index .post_item .fl_block {
        display: flex;
    }
    .post_index .post_item .meta {
        font-size: 1rem;
        letter-spacing: .05em;
        line-height: 1.4;
        padding-right: 10px;
    }
    .post_index .post_item .meta .status_on {
        width: 100px;
        padding: 5px 0;
        text-align: center;
        color: #fff;
        font-size: 1rem;
        background-color: #66cdaa;
        font-weight: 600;
        border-radius: 100px;
        line-height: 1.4;
    }
    .post_index .post_item .meta .status_off {
        width: 150px;
        padding: 5px 0;
        text-align: center;
        color: #fff;
        font-size: 1rem;
        background-color: #808080;
        font-weight: 600;
        border-radius: 100px;
        line-height: 1.4;
    }
    .post_index .post_item h2 {
        font-size: 1rem;
        letter-spacing: .05em;
        line-height: 1.4;
        transition:ALL .5s ease;
        -webkit-transition:ALL .5s ease;
        -moz-transition:ALL .5s ease;
        -o-transition:ALL .5s ease;
    }
    .post-type-archive-recruit .post_index .post_item h2 {
        margin-top: 4px;
    }
    .post_index .post_item:hover h2 {
        color: #66cdaa;
    }
    .post_index .post_item a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
    }
    
}

/*--------------------------------

>>>Post Style

---------------------------------*/
.post_details {
    margin-top: 150px;
}
.post_details .cat_name {
    font-size: 2.5rem;
    letter-spacing: .15em;
    color: #66cdaa;
    font-weight: 600;
    margin-bottom: 35px;
}
.post_details h1 {
    letter-spacing: .05em;
    border-bottom: 1px solid #808080;
    padding-bottom: 20px;
}
.post_details .meta {
    text-align: right;
    margin-top: 10px;
}

.post_details h2,
.post_details h3,
.post_details h4,
.post_details p,
.post_details img,
.post_details .thumb {
    margin-top: 35px;
    letter-spacing: .05em;
}

.post_details .thumb {
    margin-top: 50px;
}

.post_details p {
    line-height: 1.5;
}

.post_details .thumb {
    background: center center/cover no-repeat;
}

.post_details .post_body {
    margin-bottom: 50px;
}



/*--------------------------------

>>> Breadcrumb

---------------------------------*/
.contact_design01 form label {
    font-size: 1rem;
    letter-spacing: .1em;
}
.contact_design01 form input{
    width: 100%;
    padding: 10px;
    font-size: 1.1rem !important;
    border: 1px solid #707070;
    letter-spacing: .05em;
    margin-bottom: 25px;
}
.contact_design01 form textarea{
    width:100%;
    padding: 10px;
    font-size: 1.08rem !important;
    border: 1px solid #707070;
    letter-spacing: .05em;
    margin-bottom: 50px;
}
.contact_design01 form .pp_area {
    margin-bottom: 25px;
}
.contact_design01 form .pp_area .pp_ttl {
    font-size: 1.1rem;
    letter-spacing: .2em;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 400;
}
.contact_design01 form .pp_area .pp_box {
    width: 100%;
    height: 300px;
    border: 1px solid #707070;
    font-size: 1.08rem;
    letter-spacing: .05em;
    overflow: scroll;
}
.contact_design01 form.wpcf7-not-valid-tip{
    padding:2px;
    clear:both;
    color:#c00;
}
.contact_design01 form.wpcf7-display-none{
    display:none;
}
.contact_design01 form img.ajax-loader{
    float:right;
    margin-top:-30px;
}
.contact_design01 form.wpcf7-response-output{
    margin:0 0 20px;
    padding:5px;
    text-align:center;
    border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
}
.contact_design01 form.wpcf7-mail-sent-ok{
    background-color:#398f14;
    color:#fff;
}
.contact_design01 form.wpcf7-mail-sent-ng{
    background-color:#ff0000;
    color:#fff;
}
.contact_design01 form.wpcf7-spam-blocked{
    background-color:#ffa500;
    color:#000;
}
.contact_design01 form.wpcf7-validation-errors{
    background-color:#f7e700;
    color:#000;
}
.contact_design01 form input[type = checkbox] {
    width: auto !important;
    padding: 0 !important;
    display: inline !important;
    margin: 0 !important;
}
.contact_design01 form input.wpcf7-submit{
    display:block;
    margin:35px auto 0;
    width:250px;
    text-align: center;
    cursor:pointer;
    padding: 20px 0;
    font-size:13px;
    line-height:20px;
    border-radius:200px;
    -moz-border-radius:200px;
    letter-spacing: .2em;
    border:1px solid #f08080;
    background-color:#f08080;
    color: #fff;
	transition:ALL .5s ease;
	-webkit-transition:ALL .5s ease;
	-moz-transition:ALL .5s ease;
	-o-transition:ALL .5s ease;
}
.contact_design01 form input.wpcf7-submit:hover {
    opacity: 0.5;
}
.contact_design01　.wpcf7-acceptance {
    display: block;
    text-align: center;
}








