@charset "utf-8";

/**
 *
 *  サイト共通
 *
 */

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,
sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
ol,ul{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
ins{background-color:#ff9;color:#000;text-decoration:none;}
img{border:0;vertical-align:top;}
em{font-style:italic;}
del{text-decoration:line-through;}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help;}
table{border-collapse:collapse;border-spacing:0;}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:0;padding:0;}
input,select,textarea{font-family:inherit;font-style:inherit;font-weight:inherit;font-size:100%;margin:0;padding:0;vertical-align:middle;}
input:focus,textarea:focus,select:focus{outline:none;}
address{font-style:normal;}

/* Firefox, Opera, Safari */
@font-face {
    font-family: 'josefinsans';
    src: url('./font/josefinsans-regular.ttf') format('truetype');
}
@font-face {
    font-family: 'josefinsans-bold';
    src: url('./font/josefinsans-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'oswald';
    src: url('./font/oswald-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'oswald-bold';
    src: url('./font/oswald-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'yugo';
    src: url('./font/yugothR.ttf') format('truetype');
}
@font-face {
    font-family: 'yugo-bold';
    src: url('./font/yugothB.ttf') format('truetype');
}


/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/

html {
    font-size: 62.5%;
}


/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/

body {
    box-sizing: border-box;
    color:  #4e4e4e;
    font-family: "游ゴシック", YuGothic, sans-serif;
    font-size: 1.6rem;
}


/*--------------------------------------------------------------------------
   p
---------------------------------------------------------------------------*/

p {
    font-weight: 500;
}


/*--------------------------------------------------------------------------
   共通パーツ：リンク
---------------------------------------------------------------------------*/

.green-link {
    border: 1px solid #81c577;
    box-sizing: border-box;
    color: #81c577;
    display: inline-block;
    font-size: 1.4rem;
    line-height: 100%;
    max-width: 240px;
    padding: 17px 0 16px;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100%;
    z-index: 0;
}
.green-link::after {
    content: '→';
    position: absolute;
    right: 10px;
}

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

    .green-link {
        font-size: 1.5rem;
    }
    .green-link::before {
        background-image: linear-gradient(to right, #81c577, #7dc9b0);
        content: '';
        height: 100%;
        left: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        width: 0;
        z-index: -1;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .green-link:hover {
        color: #fff;
    }
    .green-link:hover::before {
        opacity: 1;
        width: 100%;
    }
}


/*--------------------------------------------------------------------------
   共通パーツ：グリーンライン見出し
---------------------------------------------------------------------------*/

.green-headline {
    display: block;
    font-size: 3.6rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: normal;
    letter-spacing: 1.7px;
    position: relative;
    text-align: center;
    z-index: 0;
}
.green-headline span {
    display: inline-block;
}
.green-headline span::before {
    content: '';
    background-image: linear-gradient(to right, #81c577, #7dc9b0);
    bottom: -30px;
    display: block;
    height: 4px;
    opacity: .8;
    position: relative;
    z-index: -1;
}
.green-headline-ruby {
    font-size: 1rem;
    margin-top: 3px;
    text-align: center;
}

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

    .green-headline {
        font-size: 4.4rem;
        letter-spacing: 1.7px;
    }
    .green-headline span::before {
        content: '';
        bottom: -38px;
        height: 10px;
    }
    .green-headline-ruby {
        font-size: 1.3rem;
        margin-top: 10px;
    }
}


/*--------------------------------------------------------------------------
   共通パーツ：APIエラーメッセージ
---------------------------------------------------------------------------*/

.li-api-error {
    color: #808080;
    text-align: center;
    width: 100%;
}


/*--------------------------------------------------------------------------
   共通：IE11
---------------------------------------------------------------------------*/
select::-ms-expand {
    display: none;
}


/*--------------------------------------------------------------------------
   共通：固定ページ下層
---------------------------------------------------------------------------*/
.container .subSection {
    display: none;
}


/*--------------------------------------------------------------------------
   パンくずリスト
---------------------------------------------------------------------------*/

.breadSection,.page-header {
    display: none;
}


/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/

.header-wrapper {
    align-items: center;
    background-color: #fff;
    display: flex;
    height: 49px;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 100;
}
.header-wrapper-box {
    line-height: 100%;
}
.header-wrapper-logo {
    margin-left: 20px;
}
.header-wrapper-logo img {
    width: 100px;
}
nav.header-wrapper-box.is-active {
    left: 0;
    position: fixed;
    top: 0;
}
nav.header-wrapper-box .logo {
    display: none;
    margin-left: 20px;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}
nav.header-wrapper-box.is-active .logo {
    display: inline-block;
}
.header-wrapper-box.is-active {
    display: inline-block;
}
nav.header-wrapper-box .bg {
    opacity: 0;
}
nav.header-wrapper-box.is-active .bg {
    -ms-animation: sp-menu .8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s forwards;
    animation: sp-menu .8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s forwards;
    background-color: #333;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    transform: scale(.9);
    width: 100%;
    z-index: 0;
}
.header-wrapper-box__links {
    display: none;
    left: 50%;
    position: absolute;
    top: 39%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}
nav.header-wrapper-box.is-active .header-wrapper-box__links {
    display: inline-block;
}
.header-wrapper-box__item {
    opacity: 0;
    position: relative;
    text-align: left;
}
.header-wrapper-box__item + .header-wrapper-box__item {
    margin-top: 30px;
}
nav.header-wrapper-box.is-active .header-wrapper-box__item:nth-of-type(1) {
    -ms-animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .28s forwards;
    animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .28s forwards;
}
nav.header-wrapper-box.is-active .header-wrapper-box__item:nth-of-type(2) {
    -ms-animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .32s forwards;
    animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .32s forwards;
}
nav.header-wrapper-box.is-active .header-wrapper-box__item:nth-of-type(3) {
    -ms-animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .36s forwards;
    animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .36s forwards;
}
nav.header-wrapper-box.is-active .header-wrapper-box__item:nth-of-type(4) {
    -ms-animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .4s forwards;
    animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .4s forwards;
}
nav.header-wrapper-box.is-active .header-wrapper-box__item:nth-of-type(5) {
    -ms-animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .44s forwards;
    animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .44s forwards;
}
nav.header-wrapper-box.is-active .header-wrapper-box__item:nth-of-type(6) {
    -ms-animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .48s forwards;
    animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .48s forwards;
}
nav.header-wrapper-box.is-active .header-wrapper-box__item:nth-of-type(7) {
    -ms-animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .52s forwards;
    animation: sp-menu-list 0.6s cubic-bezier(0.19, 1, 0.22, 1) .52s forwards;
}
.header-wrapper-box__link {
    color: #fff;
    text-decoration: none;
}


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

    .header-wrapper {
        box-sizing: border-box;
        height: 80px;
        justify-content: space-between;
        padding: 0 25px;
        position: absolute;
        width: 100%;
        z-index: 100;
    }
    .header-wrapper-box {
        align-self: center;
    }
    .header-wrapper-logo {
        display: inline-block;
    }
    .header-wrapper-logo img {
        width: 150px;
    }
    nav.header-wrapper-box .bg {
        opacity: 1;
    }
    .header-wrapper-box__links {
        display: block;
        font-size: 0;
        left: auto;
        list-style: none;
        position: static;
        top: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    .header-wrapper-box__item {
        display: inline-block;
        opacity: 1;
    }
    .header-wrapper-box__item:first-child {
        display: none;
    }
    .header-wrapper-box__item + .header-wrapper-box__item {
        margin-left: 30px;
        margin-top: 0;
    }
    .header-wrapper-box__link {
        color: #4e4e4e;
        font-size: 1.4rem;
        font-weight: bold;
        text-decoration: none; 
    }
    .header-wrapper-box__link:hover {
        color: #81c577;
    }
}

@media screen and (min-width: 900px) {
    .header-wrapper-box__item:first-child {
        display: inline-block;
    }
}

@media screen and (min-width: 1080px) {
    .header-wrapper {
        padding: 0 100px;
    }
    .header-wrapper-box__item + .header-wrapper-box__item {
        margin-left: 40px;
        margin-top: 0;
    }
}

@keyframes sp-menu {
    0%   {
        opacity: 0;
        transform: scale(.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes sp-menu-list {
    0%   {
        opacity: 0;
        top: -15px;
        transform: scale(1.15);
    }
    100% {
        opacity: 1;
        top: 0;
        transform: scale(1);
    }
}


/*--------------------------------------------------------------------------
   page-head
---------------------------------------------------------------------------*/

.page-head {
    margin-top: 50px;
}
.page-head .page-head-mainvisual {
    color: #fff;
    padding: 26px 0 25px;
    text-align: center;
    width: 100%;
}
.page-head .page-head-mainvisual .page-head-ttl {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 3rem;
    letter-spacing: 3.5px;
}
.page-head .page-head-mainvisual .page-head-ruby {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 9px;
}

.page-head .page-head-localnav {
    background-color: #fafafa;
    padding: 13px 0 12px;
    text-align: center;
    width: 100%;
}

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

    .page-head {
        margin-top: 0;
    }
    .page-head .page-head-mainvisual {
        padding: 68px 0 45px;
    }
    .page-head .page-head-mainvisual .page-head-ttl {
        font-size: 6rem;
    }
    .page-head .page-head-mainvisual .page-head-ruby {
        font-size: 1.4rem;
        font-weight: normal;
        margin-top: 6px;
    }
    .page-head .page-head-ttl {
        font-family: 'Josefin Sans', sans-serif;
        letter-spacing: 3px;
        text-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
    }
} 


/*--------------------------------------------------------------------------
   local nav
---------------------------------------------------------------------------*/

.page-head-localnav-list {
    display: flex;
    justify-content: space-around;
}
.page-head-localnav-list__item {
    line-height: 100%;
}
.page-head-localnav-list__link {
    color: #4e4e4e;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}
.page-head .page-head-localnav-list__item p {
    border-bottom: 1px solid #81c577;
    color: #81c577;
    font-size: 1.2rem;
    font-weight: bold;
    padding-bottom: 2px;
}

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

    .page-head .page-head-localnav {
        background-color: #fafafa;
        padding: 28px 0 23px;
        text-align: center;
        width: 100%;
    }
    .page-head .page-head-localnav-list {
        display: inline-block;
    }
    .page-head .page-head-localnav-list__item {
        display: inline-block;
    }
    .page-head-localnav-list__item + .page-head-localnav-list__item {
        margin-left: 100px;
    }
    .page-head .page-head-localnav-list__item p {
        color: #81c577;
        font-size: 1.4rem;
        font-weight: bold;
        padding-bottom: 8px;
    }
    .page-head .page-head-localnav-list__link {
        color: #4e4e4e;
        font-size: 1.4rem;
        text-decoration: none;
    }
    .page-head .page-head-localnav-list__link:hover {
        color: #81c577;
    }
}


/*--------------------------------------------------------------------------
   head
---------------------------------------------------------------------------*/

.section-head  {
    margin-top: 60px;
    position: relative;
    text-align: center;
}
.section-head .section-head-ttl {
    display: inline-block;
    font-size: 3.6rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: normal;
    letter-spacing: 1.7px;
    position: relative;
    z-index: 0;
}
.section-head .section-head-ttl::before {
    content: '';
    background-image: linear-gradient(to right, #81c577, #7dc9b0);
    bottom: -30px;
    display: block;
    height: 4px;
    opacity: .8;
    position: relative;
    z-index: -1;
}
.section-head-ruby {
    font-size: 1rem;
    margin-top: 3px;
}

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

    .section-head  {
        margin-top: 80px;
    }
    .section-head .section-head-ttl {
        font-size: 4.4rem;
        letter-spacing: 4px;
    }
    .section-head .section-head-ttl::before {
        content: '';
        bottom: -40px;
        height: 10px;
    }
    .section-head-ruby {
        font-size: 1.3rem;
        margin-top: 13px;
    }
}


/*--------------------------------------------------------------------------
   main
---------------------------------------------------------------------------*/

main {
    display: block;
    margin-bottom: 60px;
}

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

    main {
        margin-bottom: 0;
        margin-top: 80px;
    }
    main#Top {
        margin-top: 0;
    }
}


/*--------------------------------------------------------------------------
   SPハンバーガーメニュー
---------------------------------------------------------------------------*/

@media screen and (max-width: 767px) {

    .icon-animation {
        height: 48px;
        position: fixed;
        right: 0;
        top: 0;
        width: 48px;
        z-index: 1;
    }
    .icon-animation span {
        background: #000;
        display: block;
        height: 2px;
        left: 50%;
        margin-left: -9px;
        position: absolute;
        top: 50%;
        width: 18px;
    }
    nav.header-wrapper-box.is-active .icon-animation span {
        background: #fff;
    }
    .type-1 .top {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    .type-1 span {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .type-1 .bottom {
        -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
        transform: translateY(5px);
    }
}


/*--------------------------------------------------------------------------
   footer
---------------------------------------------------------------------------*/

footer {
    background-color: #2d2d2d;
    box-sizing: border-box;
    color: #fff;
    padding: 30px 40px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.footer-nav {
    margin-top: 60px;
}
.footer-nav-box + .footer-nav-box {
    margin-top: 30px;
}
.footer-nav-box__item {
    margin-left: 20px;
    margin-top: 20px;
}
.footer-nav-box__item:first-child {
    margin-top: 30px;
}
.footer-nav-box__item:last-child {
    margin-bottom: 30px;
}

.footer-nav-box__title {
    color: #fff;
    font-size: 1.3rem;
    position: relative;
}
.footer-nav-box__title.is-disabled::after {
    content: '';
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    height: 5px;
    position: absolute;
    top: 4px;
    right: 2px;
    width: 5px;
    -webkit-transform: rotateX(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
.footer-nav-box__title::after {
    content: '';
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    height: 5px;
    position: absolute;
    top: 9px;
    right: 2px;
    width: 5px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
}
.footer-nav-box__title.is-disabled + .footer-nav-box__sublinks {
    display: none;
}

.footer-nav-box__link {
    color: #fafafa;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
}

.footer-aside {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 60px;
}
.footer-aside-logo {
    position: absolute;
    top: 30px;
    width: 60px;
}
.footer-aside-box__link {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
}
.footer-aside-box__link:first-child {
    padding-right: 10px;
}
.footer-aside-box__link + .footer-aside-box__link {
    border-left: 1px solid #fafafa;
    padding-left: 10px;
}
.footer-aside-copyright {
    margin-top: 20px;
}
.footer-aside-copyright small {
    font-size: 1rem;
}

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

    footer {
        background-color: #2d2d2d;
        color: #fff;
        padding: 130px 40px 32px;
        width: 100%;
    }
    .footer-breadcrumb {
        background-color: #fafafa;
        padding: 15px 0;
        width: 100%;
    }
    .footer-breadcrumb-list {
        margin: 0 auto;
        max-width: 1080px;
        width: 100%;
    }
    .footer-breadcrumb-list__item {
        color: #4e4e4e;
        display: inline-block;
        font-size: 1.2rem;
        margin-left: 20px;
    }
    .footer-breadcrumb-list__item:first-child {
        margin-left: 0;
    }
    .footer-breadcrumb-list__item::before {
        content: '>';
        color: #ccc;
        left: -10px;
        position: relative;
    }
    .footer-breadcrumb-list__item:first-child::before {
        content: '';
    }
    .footer-breadcrumb-list__link {
        color: #4e4e4e;
        font-weight: bold;
        text-decoration: none;
    }
    .footer-nav {
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 1080px;
        width: 100%;
    }
    .footer-nav-box + .footer-nav-box {
        margin-top: 0;
    }
    .footer-nav-box__title {
        color: #ccc;
        font-size: 1.6rem;
        text-decoration: none;
    }
    .footer-nav-box__title::after {
        border: none;
    }
    .footer-nav-box__title.is-disabled::after {
        border: none;
    }

    .footer-nav-box__sublinks {
        list-style: none;
    }
    .footer-nav-box__title.is-disabled + .footer-nav-box__sublinks {
        display: inline-block;
    }
    .footer-nav-box__item {
        margin-left: 0;
    }
    .footer-nav-box__item:last-child {
        margin-bottom: 0;
    }
    .footer-nav-box__link {
        color: #fff;
        font-size: 1.4rem;
        text-decoration: none;
    }
    .footer-nav-box__link.blank {
        position: relative;
    }
    .footer-nav-box__link.blank::after {
        content: '';
        background-image: url(/wp-content/uploads/2018/06/ic_web_link.svg);
        filter: brightness(0) invert(0.9);
        height: 9px;
        position: absolute;
        right: -20px;
        top: 2px;
        width: 9px;
    }

    .footer-nav-box__link.blank:hover::after {
        filter: brightness(1) invert(0);
    }
    .footer-nav-box__link:hover {
        color: #81c577;
    }

    /* logo • copyright
    -----------------------------------------------------------------*/

    .footer-aside {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin: 0 auto;
        padding: 130px 0 0;
        max-width: 1080px;
        width: 100%;
    }
    .footer-aside-box {
        align-items: center;
        display: flex;
    }
    .footer-aside-logo {
        display: inline-block;
        position: static;
        top: auto;
        width: auto;
    }
    .footer-aside-copyright {
        color: #fff;
        display: inline-block;
        margin: 0 0 0 20px;
    }
    .footer-aside-copyright small {
        font-size: 1.2rem;
    }
    .footer-aside-box__link {
        color: #fff;
        font-size: 1.2rem;
        text-decoration: none;
    }
    .footer-aside-box__link:hover {
        color: #81c577;
    }
    .footer-aside-box__link + .footer-aside-box__link {
        border-left: none;
        margin-left: 40px;
        padding-left: 0;
    }
}


/*--------------------------------------------------------------------------
   TOP
---------------------------------------------------------------------------*/


/*  ヒーローヘッダー
--------------------------------------*/
.section-hero {
    background-color: #e6eaf3;
    min-height: 475px;
    position: relative;
}
.section-hero__image .wallpaper.sp .pc {
    display: none;
}
.section-hero__image li {
    display: none;
}
.section-hero__image li:first-child {
    display: block;
}
.section-hero__text {
    padding: 0 20px;
    position: absolute;
    bottom: 20px;
}
.section-hero__ttl {
    color: #333;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 120%;
}
.section-hero__lead {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 4.8px;
    margin-top: 8px;
}


/*  About
--------------------------------------*/
.section-head.top-about .top-about__whitebox {
    padding: 0 20px;
}
.section-head.top-about .top-about__image {
    margin-top: 30px;
    padding: 0 20px;
    position: relative;
}
.section-head.top-about .top-about__image::before {
    content: '';
    background-color: #f5f5fa;
    height: 150px;
    right: 0;
    position: absolute;
    top: 125px;
    width: 150px;
    z-index: -1;
}
.section-head.top-about .top-about__image img {
    width: 100%;
}
.section-head.top-about .top-about__whitebox {
    margin-top: 40px;
}
.section-head.top-about .top-about__ttl {
    font-size: 2rem;
    font-weight: bold;
    line-height: 160%;
    text-align: left;
}
.section-head.top-about .top-about__ttl span {
    color: #81c577;
}
.section-head.top-about .top-about__lead {
    font-size: 1.5rem;
    line-height: 230%;
    margin-top: 20px;
    text-align: left;
}
.section-head.top-about .top-about__lead span {
    display: block;
    margin-top: 20px;
}
.section-head.top-about .top-about__link {
    margin-top: 33px;
}


/*  サービス
--------------------------------------*/
.section-head.top-service .top-service__image {
    margin-top: 30px;
}
.section-head.top-service .top-service__image::before {
    content: '';
    background-color: #f5f5fa;
    height: 150px;
    left: 0;
    position: absolute;
    top: 156px;
    width: 100%;
    z-index: -1;
}
.section-head.top-service .top-service__image img {
    padding-bottom: 10px;
}
.section-head.top-service .top-service__whitebox {
    margin-top: 40px;
    padding: 0 20px;
}
.section-head.top-service .top-service__ttl {
    font-size: 2rem;
    line-height: 160%;
    text-align: left;
}
.section-head.top-service .top-service__ttl span {
    color: #81c577;
}
.section-head.top-service .top-service__ttl small {
    font-size: 1rem;
}
.section-head.top-service .top-service__lead {
    font-size: 1.5rem;
    line-height: 230%;
    margin-top: 20px;
    text-align: left;
}
.section-head.top-service .top-service__link {
    margin-top: 33px;
}


/*  採用情報
--------------------------------------*/
.top-recruit__conteiner {
    margin: 0 20px;
}
.section-head.top-recruit .top-recruit__image {
    height: 200px;
    overflow: hidden;
    margin-top: 30px;
}
.section-head.top-recruit .top-recruit__image::before {
    content: '';
    background-color: #f5f5fa;
    height: 180px;
    left: 0;
    position: absolute;
    top: 180px;
    width: 180px;
    z-index: -1;
}
.section-head.top-recruit .top-recruit__image img {
    height: 200px;
}
.section-head.top-recruit .top-recruit__whitebox {
    margin-top: 40px;
}
.section-head.top-recruit .top-recruit__ttl {
    font-size: 2rem;
    line-height: 100%;
    text-align: left;
}
.section-head.top-recruit .top-recruit__ttl span {
    color: #81c577;
}
.section-head.top-recruit .top-recruit__lead {
    font-size: 1.5rem;
    line-height: 230%;
    margin-top: 20px;
    text-align: left;
}
.section-head.top-recruit .top-recruit__lead span {
    display: inline;
}
.section-head.top-recruit .top-recruit__link {
    margin-top: 35px;
}


/*  ニュース
--------------------------------------*/
.section-head.top-news .top-news-list {
    margin-top: 30px;
    text-align: left;
}
.section-head.top-news .top-news-item {
    border-top: 1px solid #e0e0e0;
    padding: 20px 40px;
}
.section-head.top-news .top-news-item:last-child {
    border-bottom: 1px solid #e0e0e0;
}
.section-head.top-news .top-news-item .top-news__tag {
    color: #fff;
    display: inline-block;
    font-size: 1rem;
    max-width: 80px;
    text-align: center;
    width: 100%;
}
.section-head.top-news .top-news-item .top-news__time {
    color: #808080;
    font-size: 1rem;
    margin-left: 8px;
}
.section-head.top-news .top-news-item .top-news__tag.info {
    background-color: #81c577;
}
.section-head.top-news .top-news-item .top-news__tag.press {
    background-color: #943ce1;
}
.section-head.top-news .top-news-item .top-news__tag.media {
    background-color: #37bbcc;
}
.section-head.top-news .top-news__link {
    color: #4e4e4e;
    display: block;
    font-size: 1.4rem;
    max-height: 45px;
    margin-top: 5px;
    overflow: hidden;
    text-decoration: none;
}
.top-news-more {
    margin-top: 30px;
}

@media screen and (min-width: 360px) {
    .section-head.top-about .top-about__whitebox {
    padding: 0 40px;
    }
    .section-head.top-service .top-service__whitebox {
        padding: 0 40px;
    }
    .section-head.top-recruit .top-recruit__conteiner {
        margin: 0 40px;
    }
}

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

    /*  ヒーローヘッダー
    --------------------------------------*/
    .section-hero {
        background-color: transparent;
        box-sizing: border-box;
        height: calc(100vh - 80px);
        max-width: 1440px;
        margin: 80px auto 0;
        min-height: auto;
        padding-bottom: 90px;
        padding-left: 350px;
        padding-top: 30px;
        width: 100%;
    }
    .section-hero__text {
        background-color: transparent;
        bottom: auto;
        box-sizing: border-box;
        letter-spacing: 5.5px;
        left: 100px;
        padding: 0;
        top: 50%;
        z-index: 10;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .section-hero__image {
        -ms-animation: hero-first 1s ease 1.2s forwards;
        animation: hero-first 1s ease 1.2s forwards;
        bottom: 0;
        float: right;
        height: 100%;
        max-height: 600px;
        max-width: 855px;
        opacity: 0;
        position: relative;
        width: 100%;
    }
    .section-hero__image::before {
        content: '';
        background-color: #f5f5fa;
        top: 140px;
        height: 100%;
        left: -100px;
        max-height: 550px;
        max-width: 875px;
        position: absolute;
        width: 100%;
        z-index: 0;
    }
    .section-hero__image-hide {
        height: 100%;
        max-height: 600px;
        max-width: 855px;
        overflow: hidden;
        position: relative;
        width: 100%;
    }
    .section-hero__image-anim {
        -ms-animation: hero-img-bg1 .2s linear .1.6s forwards, hero-img-bg2 1.2s cubic-bezier(0.075, 0.82, 0.165, 1) 1.8s forwards;
        animation: hero-img-bg1 .2s linear 1.6s forwards, hero-img-bg2 1.2s cubic-bezier(0.075, 0.82, 0.165, 1) 1.8s forwards;
        background: linear-gradient(to right, #81c577, #7dc9b0);
        top: 100%;
        height: 100%;
        position: absolute;
        width: 100%;
        z-index: 10;
    }
    .section-hero__image.is-active::after {
        width: 100%;
    }
    .section-hero__image .wallpaper.sp .pc {
        display: inline;
    }
    .section-hero__image .wallpaper.sp .sp {
        display: none;
    }
    .section-hero__image li {
        display: inline;
    }
    .section-hero__ttl {
        -ms-animation: hero-text 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) .6s forwards;
        animation: hero-text 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) .6s forwards;
        font-size: 7rem;
        opacity: 0;
        position: relative;
        top: 30px;
        transform: translate3d(0,0,0);
    }
    .section-hero__lead {
        -ms-animation: hero-text 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
        animation: hero-text 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
        font-size: 1.8rem;
        letter-spacing: 7.2px;
        line-height: 193%;
        margin-top: 30px;
        opacity: 0;
        position: relative;
        top: 30px;
        transform: translate3d(0,0,0);
    }


    /*  About
    --------------------------------------*/
    .section-head.top-about {
        margin-top: 140px;
        opacity: 0;
    }
    .section-head.top-about::before {
        content: 'About us';
        color: #e1e1eb;
        font-family: 'Josefin Sans', sans-serif;
        font-size: 20rem;
        letter-spacing: 10px;
        line-height: 100%;
        opacity: .2;
        position: absolute;
        left: -90px;
        top: -100px;
        z-index: -2;
        -webkit-transition: all .5s .3s;
        -moz-transition: all .5s .3s;
        -ms-transition: all .5s .3s;
        -o-transition: all .5s .3s;
        transition: all .5s .3s;
    }
    .section-head.top-about.is-active {
        -ms-animation: top-about 1.5s ease 0s forwards;
        animation: top-about 1.5s ease 0s forwards;
    }
    .section-head.top-about.is-active::before {
        left: -45px;
    }
    .section-head.top-about .top-about__header {
        opacity: 0;
        position: relative;
    }
    .section-head.top-about.is-active .top-about__header {
        -ms-animation: top-about-header .5s ease .5s forwards;
        animation: top-about-header .5s ease .5s forwards;
    }
    .section-head.top-about .top-about__conteiner {
        height: 760px;
        overflow: hidden;
        position: relative;
    }
    .section-head.top-about .top-about__image {
        left: calc(50% - 540px);
        height: 100%;
        margin: 0;
        max-height: 525px;
        max-width: 800px;
        overflow: hidden;
        padding: 0;
        position: relative;
        top:  60px;
        width: 100%;
    }
    .section-head.top-about .top-about__image::before {
        background: transparent;
    }
    .section-head.top-about .top-about__image img {
        top: 100%;
        left: 0;
        position: absolute;
    }
    .section-head.top-about.is-active .top-about__image img {
        animation: top-about-image 1s cubic-bezier(.075,.8,.165,1) .7s forwards;
    }
    .section-head.top-about .top-about__designtile {
        background-color: #f5f5fa;
        left: calc(50% + 117px);
        height: 330px;
        opacity: 0;
        position: absolute;
        top: 120px;
        width: 500px;
        z-index: -1;
    }
    .section-head.top-about.is-active .top-about__designtile {
        -ms-animation: top-about-designtile .5s ease .7s forwards;
        animation: top-about-designtile .5s ease .7s forwards;
    }
    .section-head.top-about.is-active .top-about__image-anim {
        -ms-animation: hero-img-bg1 .2s linear .7s forwards, hero-img-bg2 1.2s cubic-bezier(0.075, 0.82, 0.165, 1) .9s forwards;
        animation: hero-img-bg1 .2s linear .7s forwards, hero-img-bg2 1.2s cubic-bezier(0.075, 0.82, 0.165, 1) .9s forwards;
        background: linear-gradient(to right, #81c577, #7dc9b0);
        top: 100%;
        height: 100%;
        position: absolute;
        width: 100%;
        z-index: 10;
    }
    .section-head.top-about .top-about__text {
        left: 50%;
        position: absolute;
        top: 164px;
        text-align: right;
    }
    .section-head.top-about .top-about__whitebox {
        background-color: rgba(255,255,255,1);
        box-shadow: 0px 8px 30px 0 rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
        margin: 0;
        max-height: 488px;
        max-width: 577px;
        opacity: 0;
        padding: 60px;
        position: relative;
        top: 0;
        width: 100%;
    }
    .section-head.top-about.is-active .top-about__whitebox {
        -ms-animation: top-about-whitebox .5s ease 1.1s forwards;
        animation: top-about-whitebox .5s ease 1.1s forwards;
    }
    .section-head.top-about .top-about__ttl {
        font-size: 2.4rem;
        opacity: 0;
        position: relative;
        text-align: left;
    }
    .section-head.top-about.is-active .top-about__ttl {
        -ms-animation: top-about-conteiner .5s ease 1.3s forwards;
        animation: top-about-conteiner .5s ease 1.3s forwards;
    }
    .section-head.top-about .top-about__lead {
        opacity: 0;
        position: relative;
    }
    .section-head.top-about.is-active .top-about__lead {
        -ms-animation: top-about-conteiner .5s ease 1.5s forwards;
        animation: top-about-conteiner .5s ease 1.5s forwards;
    }
    .section-head.top-about .top-about__lead span {
        display: inline;
    }
    .section-head.top-about .top-about__link {
        margin-top: 50px;
    }


    /*  サービス
    --------------------------------------*/
    .section-head.top-service {
        margin-top: 150px;
        opacity: 0;
        overflow: hidden;
    }
    .section-head.top-service.is-active {
        -ms-animation: top-about 1.5s ease 0s forwards;
        animation: top-about 1.5s ease 0s forwards;
    }
    .section-head.top-service::before {
        content: 'Service';
        color: #e1e1eb;
        font-family: 'Josefin Sans', sans-serif;
        font-size: 20rem;
        letter-spacing: 10px;
        line-height: 100%;
        opacity: .2;
        position: absolute;
        right: -35px;
        top: 10px;
        z-index: -2;
        -webkit-transition: all .5s .3s;
        -moz-transition: all .5s .3s;
        -ms-transition: all .5s .3s;
        -o-transition: all .5s .3s;
        transition: all .5s .3s;
    }
    .section-head.top-service.is-active::before {
        right: 10px;
    }
    .section-head.top-service .top-service__header {
        opacity: 0;
        position: relative;
    }
    .section-head.top-service.is-active .top-service__header {
        -ms-animation: top-about-header .5s ease .5s forwards;
        animation: top-about-header .5s ease .5s forwards;
    }
    .section-head.top-service .top-service__conteiner {
        height: 810px;
        max-width: none;
        overflow: hidden;
        position: relative;
        width: 100%;
    }
    .section-head.top-service .top-service__image {
        height: 100vh;
        left: calc(50% + 56px);
        margin-top: 0;
        max-height: 455px;
        max-width: 520px;
        overflow: hidden;
        position: relative;
        top: 212px;
        z-index: 1;
    }
    .section-head.top-service .top-service__image::before {
        background: transparent;
    }
    .section-head.top-service .top-service__image img {
        left: 0;
        max-width: 520px;
        opacity: 0;
        position: absolute;
        top: 100%;
        width: 100%;
    }
    .section-head.top-service.is-active .top-service__image img {
        -ms-animation: top-about-whitebox .5s ease .7s forwards;
        animation: top-about-whitebox .5s ease .7s forwards;
    }
    .section-head.top-service .top-service__designtile {
        background-color: #f5f5fa;
        height: 100vh;
        max-height: 550px;
        opacity: 0;
        position: absolute;
        left: calc(50% - 250px);
        top: 147px;
        width: 100vw;
        z-index: 0;
    }
    .section-head.top-service.is-active .top-service__designtile {
        -ms-animation: top-service-designtile .5s ease .5s forwards;
        animation: top-service-designtile .5s ease .5s forwards;
    }
    .section-head.top-service .top-service__text {
        left: calc(50% - 540px);
        position: absolute;
        text-align: left;
        top: 60px;
        z-index: 1;
    }
    .section-head.top-service .top-service__whitebox {
        background-color: rgba(255,255,255,1);
        box-shadow: 0px 10px 30px 0 rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
        margin-top: 0;
        max-width: 540px;
        opacity: 0;
        padding: 60px;
        position: relative;
    }
    .section-head.top-service.is-active .top-service__whitebox {
        -ms-animation: top-about-whitebox .5s ease .9s forwards;
        animation: top-about-whitebox .5s ease .9s forwards;
    }
    .section-head.top-service .top-service__ttl {
        font-size: 2.4rem;
        font-weight: bold;
        opacity: 0;
        position: relative;
        text-align: left;
    }
    .section-head.top-service.is-active .top-service__ttl {
        -ms-animation: top-about-conteiner .5s ease 1.2s forwards;
        animation: top-about-conteiner .5s ease 1.2s forwards;
    }
    .section-head.top-service .top-service__ttl small {
        font-size: .8rem;
    }
    .section-head.top-service .top-service__lead {
        font-size: 1.4rem;
        line-height: 200%;
        margin-top: 27px;
        opacity: 0;
        position: relative;
        text-align: left;
    }
    .section-head.top-service.is-active .top-service__lead {
        -ms-animation: top-about-conteiner .5s ease 1.4s forwards;
        animation: top-about-conteiner .5s ease 1.4s forwards;
    }
    .section-head.top-service .top-service__link {
        margin-top: 50px;
    }


    /*  採用情報
    --------------------------------------*/
    .section-head.top-recruit {
        background: url(/wp-content/uploads/2018/07/img_top_recruit.jpg) no-repeat center top;
        background-size: cover;
        margin-top: 0;
        padding: 100px 0 88px;
        position: relative;
        z-index: 2;
    }
    .section-head.top-recruit .top-recruit__header {
        opacity: 0;
        position: relative;
    }
    .section-head.top-recruit.is-active .top-recruit__header {
        -ms-animation: top-about-header .5s ease .5s forwards;
        animation: top-about-header .5s ease .5s forwards;
    }
    .section-head.top-recruit .top-recruit__conteiner {
        opacity: 0;
        position: relative;
    }
    .section-head.top-recruit.is-active .top-recruit__conteiner {
        -ms-animation: top-about-header .5s ease .7s forwards;
        animation: top-about-header .5s ease .7s forwards;
    }
    .section-head.top-recruit .top-recruit__ttl {
        font-size: 2.4rem;
        font-weight: bold;
        opacity: 0;
        position: relative;
        text-align: center;
    }
    .section-head.top-recruit.is-active .top-recruit__ttl {
        -ms-animation: top-about-conteiner .5s ease .9s forwards;
        animation: top-about-conteiner .5s ease .9s forwards;
    }
    .section-head.top-recruit .top-recruit__lead{
        line-height: 193%;
        opacity: 0;
        position: relative;
        text-align: center;
    }
    .section-head.top-recruit.is-active .top-recruit__lead {
        -ms-animation: top-about-conteiner .5s ease 1.1s forwards;
        animation: top-about-conteiner .5s ease 1.1s forwards;
    }
    .section-head.top-recruit .top-recruit__image {
        display: none;
    }
    .section-head.top-recruit .top-recruit__whitebox {
        background-color: rgba(255,255,255,0.8);
        box-shadow: 0px 10px 30px 0 rgba(0, 0, 0, 0.2);
        max-width: 450px;
        margin: 60px auto 0;
        padding: 50px;
        width: 100%;
    }
    .section-head.top-recruit .top-recruit__lead span {
        display: block;
    }


    /*  ニュース
    --------------------------------------*/
    .section-head.top-news {
        margin-top: 0;
        overflow: hidden;
    }
    .section-head.top-news .top-news__bg {
        opacity: 0;
        padding-top: 100px;
        padding-bottom: 100px;
        position: relative;
        -ms-transform: rotate(-3.5deg) scale(1.17);
        transform: rotate(-3.5deg) scale(1.17);
        z-index: 1;
    }
    .section-head.top-news .top-news__bg::before {
        content: '';
        background-image: url(/wp-content/uploads/2018/07/bg_top_news_left.png);
        background-repeat: no-repeat;
        background-size: contain;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }
    .section-head.top-news .top-news__bg::after {
        content: '';
        background: url(/wp-content/uploads/2018/07/bg_top_news_right.png) no-repeat right/contain;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        z-index: -1;
    }
    .section-head.top-news.is-active .top-news__bg {
        -ms-animation: top-news 1s ease 0s forwards;
        animation: top-news 1s ease 0s forwards;
    }
    .section-head.top-news .bg {
        opacity: 0;
    }
    .section-head.top-news .top-news__atention::before {
        content: 'News';
        color: #e1e1eb;
        font-family: 'Josefin Sans', sans-serif;
        font-size: 20rem;
        letter-spacing: 8px;
        line-height: 100%;
        opacity: 0;
        position: absolute;
        left: -55px;
        top: 70px;
        z-index: -2;
        -webkit-transition: all .8s .4s;
        -moz-transition: all .8s .4s;
        -ms-transition: all .8s .4s;
        -o-transition: all .8s .4s;
        transition: all .8s .4s;
    }
    .section-head.top-news.is-active .top-news__atention::before {
        left: -100px;
        opacity: .2;
    }
    .section-head.top-news .top-news__header {
        opacity: 0;
        position: relative;
    }
    .section-head.top-news.is-active .top-news__header {
        -ms-animation: top-about-header .5s ease .6s forwards;
        animation: top-about-header .5s ease .6s forwards;
    }
    .section-head.top-news .top-news__conteiner {
        opacity: 0;
        position: relative;
    }
    .section-head.top-news.is-active .top-news__conteiner {
        -ms-animation: top-about-header .5s ease .8s forwards;
        animation: top-about-header .5s ease .8s forwards;
    }
    .section-head.top-news .top-news-list {
        font-size: 0;
        margin-top: 80px;
        margin-left: auto;
        margin-right: auto;
        max-width: 800px;
    }
    .section-head.top-news .top-news-item {
        align-items: center;
        border: none;
        display: flex;
        padding: 0;
    }
    .section-head.top-news .top-news-item:last-child {
        border: none;
    }
    .section-head.top-news .top-news-item + .top-news-item {
        margin-top: 55px;
    }
    .section-head.top-news .top-news-item .top-news__tag {
        font-size: 1.2rem;
        max-width: 100px;
        width: 100px;
    }
    .section-head.top-news .top-news-item .top-news__time {
        font-size: 1.4rem;
        margin-left: 20px;
    }
    .section-head.top-news .top-news-item .top-news__link {
        cursor: pointer;
        margin-left: 20px;
        margin-top: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 600px;
    }
    .section-head.top-news .top-news-item .top-news__link:hover {
        color: #81c577;
    }
    .section-head.top-news .top-news-more {
        margin-top: 80px;
        text-align: center;
    }
}


@keyframes hero-first {
    0%   {
        bottom: -10%;
        opacity: 0;
    }
    100% {
        bottom: 0;
        opacity: 1;
    }
}
@keyframes hero-img {
    0%   {
        bottom: -100%;
    }
    100% {
        bottom: 0;
    }
}
@keyframes hero-img-bg1 {
    0%   {
        top: 100%;
    }
    100% {
        top: 0%;
    }
}
@keyframes hero-img-bg2 {
    0%   {
        top: 0%;
    }
    100% {
        top: -100%;
    }
}
@keyframes hero-text {
    0%   {
        opacity: 0;
        top: 60px;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        top: 0;
        transform: scale(1);
    }
}
@keyframes top-about {
    0%   {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes top-about-header {
    0%   {
        bottom: -30px;
        opacity: 0;
    }
    100% {
        bottom: 0;
        opacity: 1;
    }
}
@keyframes top-about-conteiner {
    0%   {
        bottom: -30px;
        opacity: 0;
    }
    100% {
        bottom: 0;
        opacity: 1;
    }
}
@keyframes top-about-image {
    0%   {
        top: 100%;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}
@keyframes top-about-designtile {
    0%   {
        top: 150px;
        opacity: 0;
    }
    100% {
        top: 120px;
        opacity: 1;
    }
}
@keyframes top-about-whitebox {
    0%   {
        top: 30px;
        opacity: 0;
    }
    100% {
        top: 0px;
        opacity: 1;
    }
}
@keyframes top-news {
    0%   {
        opacity: 0;
        -ms-transform: rotate(-3.5deg) scale(1.17);
        transform: rotate(-3.5deg) scale(1.17);
    }
    100% {
        opacity: 1;
        -ms-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }
}
@keyframes top-service-designtile {
    0%   {
        opacity: 0;
        left: calc(50% - 220px);
    }
    100% {
        opacity: 1;
        left: calc(50% - 250px);
    }
}


/*--------------------------------------------------------------------------
    企業情報
---------------------------------------------------------------------------*/

/*  共通
--------------------------------------*/
#Vision {
    margin-bottom: 50px;
}


/*  ビジョン
--------------------------------------*/
.section-vision {
    padding-top: 50px;
}
.section-vision-image {
    margin-top: 50px;
    max-height: 200px;
    overflow: hidden;
    position:relative;
    width: 100%;
}
.section-vision-image img {
    width: 100%;
}

.section-vision-message__ttl {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0 auto 20px;
    max-width: 320px;
    padding: 50px 0 20px 0;
    position: relative;
    text-align: left;
}
.section-vision .section-vision-message__ttl::before {
    color: #e0e0e0;
    content: '“';
    font-family: sans-serif;
    font-size: 3em;
    left: -10px;
    position: absolute;
    top: 0;
}
.section-vision .section-vision-message__ttl::after {
    bottom: 0;
    color: #e0e0e0;
    content: '”';
    font-family: sans-serif;
    font-size: 3em;
    line-height: 0;
    position: absolute;
    right: -10px;
}
.section-vision-message {
    background-color: #f5f5fa;
    padding: 40px 20px 50px;
}
.section-vision-message__text,
.section-vision-mission__text {
    font-size: 1.5rem;
    line-height: 230%;
    text-align: left;
}


/*  ミッション
--------------------------------------*/
.section-mission {
    display: flex;
    flex-direction: column;
    padding: 50px 20px;
}
.section-mission .section-mission-message__ttl {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 10px auto 20px;
    max-width: 320px;
    padding: 50px 0 30px;
    position: relative;
    text-align: left;
}
.section-mission .section-mission-message__ttl::before {
    color: #e0e0e0;
    content: '“';
    font-family: sans-serif;
    font-size: 3em;
    left: -10px;
    position: absolute;
    top: 0;
}
.section-mission .section-mission-message__ttl::after {
    bottom: 0;
    color: #e0e0e0;
    content: '”';
    font-family: sans-serif;
    font-size: 3em;
    line-height: 0;
    position: absolute;
    right: -10px;
}
.section-mission-message__text {
    font-size: 1.5rem;
    line-height: 230%;
}


/*  価値観
--------------------------------------*/
.section-values {
    background-color: #f5f5fa;
    padding: 50px 20px 44px;
}
.section-values-list {
    margin-top: 95px;
    text-align: left;
}
.section-values-list__item {
    counter-increment: serial;
    margin: 0 auto;
    max-width: 450px;
    position: relative;
    width: 100%;
    z-index: 0;
}
.section-values-list__item + .section-values-list__item {
    margin-top: 117px;
}
.section-values-list__item::before {
    content: counter(serial, decimal-leading-zero);
    color: rgba(219, 219, 219, .3);
    left: -27px;
    font-family: 'oswald';
    font-size: 14rem;
    letter-spacing: 14px;
    position: absolute;
    top: -120px;
    margin-left: 20px;
    z-index: -1;
}
.section-values-list__ttl {
    color: #81c577;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    z-index: 0;
}
.section-values-list__text {
    font-size: 1.5rem;
    line-height: 230%;
    margin-top: 18px;
}
.section-values-list__text span {
    display: block;
}
.section-values-list__text span.reverse {
    display: inline;
}


/*  回遊リンク
--------------------------------------*/
.section-head.excursion {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}
.section-head + .section-head.excursion {
    margin-top: 0;
}
.section-head.excursion a {
    box-sizing: border-box;
    color: #fff;
    font-family: 'JosefinSans';
    font-size: 2.5rem;
    max-width: 295px;
    padding: 48px 0 47px 20px;
    position: relative;
    text-align: left;
    text-decoration: none;
    width: 100%;
}
.section-head.excursion a::after {
    content: '→';
    color: #fff;
    font-size: 2.5rem;
    position: absolute;
    top: 43px;
    right: 20px;
}
.section-head.excursion a + a {
    margin-top: 40px;
}
.section-head.excursion a span {
    bottom: 28px;
    color: #fff;
    font-size: 1.2rem;
    left: 20px;
    position: absolute;
}
.section-head.excursion a.message {
    background: url(/wp-content/uploads/2018/07/img_about_message_link-min.jpg) no-repeat top/cover;
}
.section-head.excursion a.vision {
    background: url(/wp-content/uploads/2018/07/img_about_vision_link-min.jpg) no-repeat top/cover;
}
.section-head.excursion a.company {
    background: url(/wp-content/uploads/2018/07/img_about_company_link-min.jpg) no-repeat top/cover;
}

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

    .section-vision-message {
        padding: 20px 40px 50px;
    }
    .section-vision::before {
        left: -40px;
    }
    .section-mission {
        padding-left: 40px;
        padding-right: 40px;
    }


    /*  価値観
    --------------------------------------*/
    .section-values {
        padding: 50px 40px 44px;
    }
    .section-values-list__item::before {
        margin-left: 0;
    }


    /*  回遊リンク
    --------------------------------------*/
    .section-head.excursion {
        padding: 0 40px;
    }
    
}

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

    /*  ビジョン
    --------------------------------------*/
    #Vision {
        margin-bottom: 0;
    }
    .section-vision {
        max-height: 797px;
        padding-top: 100px;
        position: relative;
    }
    .section-vision-image {
        margin-top: 220px;
        max-height: 493px;
    }
    .section-vision-message {
        background-color: #fff;
        box-sizing: border-box;
        box-shadow: 0px 10px 30px 0 rgba(0, 0, 0, 0.1);
        margin: 0 auto;
        max-width: 800px;
        padding: 60px 100px;
        position: relative;
        top: -660px;
        width: 100%;
    }
    .section-vision-message__ttl {
        font-size: 2.4rem;
        letter-spacing: 6px;
        margin: 0 auto 40px;
        padding: 40px 0 30px;
        max-width: 600px;
        width: 100%;
        text-align: center;
    }
    .section-vision .section-vision-message__ttl::before {
        left: -10px;
    }
    .section-vision .section-vision-message__ttl::after {
        right: -10px;
    }
    .section-vision-message__text,
    .section-vision-mission__text {
        font-size: 1.6rem;
        line-height: 230%;
        text-align: left;
    }


    /*  ミッション
    --------------------------------------*/
    .section-mission {
        display: flex;
        flex-direction: column;
        padding: 200px 40px;
    }
    .section-mission-message {
        margin: 0 auto;
        max-width: 600px;
        width: 100%;
    }
    .section-mission-message__text {
        font-size: 1.6rem;
        line-height: 230%;
    }
    .section-mission .section-mission-message__ttl {
        font-size: 2.4rem;
        letter-spacing: 6px;
        margin: 10px auto 40px;
        padding: 50px 0 30px;
        max-width: 600px;
        text-align: center;
        width: 100%;
    }


    /*  価値観
    --------------------------------------*/
    .section-values {
        padding: 100px 40px;
    }
    .section-values-list {
        margin-top: 60px;
    }
    .section-values-list__item {
        background-color: #fff;
        box-sizing: border-box;
        box-shadow: 0px 10px 30px 0 rgba(0, 0, 0, 0.1);
        padding: 50px;
        max-width: 800px;
    }
    .section-values-list__item::before {
        font-size: 12rem;
        left: 30px;
        line-height: 100%;
        top: 25px;
        z-index: -1;
    }
    .section-values-list__item + .section-values-list__item {
        margin-top: 80px;
    }
    .section-values .section-values-list__ttl {
        font-size: 2.4rem;
        line-height: 100%;
        text-align: center;
    }
    .section-values .section-values-list__text {
        font-size: 1.6rem;
        margin: 40px auto 0;
        max-width: 700px;
    
        text-align: center;
    }
    .section-values .section-values-list__text span {
        display: inline;
    }
    .section-values .section-values-list__text span.reverse {
        display: block; 
    }


    /*  回遊リンク
    --------------------------------------*/
    .section-head.excursion {
        flex-direction: row;
        margin-top: 0;
        padding: 200px 40px;
        justify-content: center;
    }
    .section-head.excursion a {
        font-size: 4rem;
        font-weight: bold;
        letter-spacing: 4px;
        max-width: 515px;
        padding: 120px 0 140px 60px;
        z-index: 0;
    }
    .section-head.excursion a::before {
        background-image: linear-gradient(to right, #81c577, #7dc9b0);
        content: '';
        height: 100%;
        left: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        width: 0;
        z-index: -1;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .section-head.excursion a::after {
        content: '';
        font-size: 4rem;
        font-weight: bold;
        letter-spacing: 4px;
        right: 61px;
        opacity: 0;
        top: 111px;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .section-head.excursion a:hover::before {
        opacity: 1;
        width: 100%;
    }
    .section-head.excursion a:hover::after {
        content: '→';
        opacity: 1;
        top: 111px;
    }
    .section-head.excursion a + a {
        margin-top: 0;
        margin-left: 50px;
    }
    .section-head.excursion a span {
        color: #fff;
        font-size: 1.4rem;
        font-weight: normal;
        letter-spacing: 3px;
        position: absolute;
        left: 62px;
        bottom: 104px;
    }
}


/*--------------------------------------------------------------------------
   企業情報：代表メッセージ
---------------------------------------------------------------------------*/

.section-message {
    margin-bottom: 100px;
    margin-top: 30px;
}


/*  鈴木さん
--------------------------------------*/
.section-message-image {
    min-height: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.section-message-image img {
    margin-left: -80px;
    width: 144%;
}


/*  白いBOX
--------------------------------------*/
.section-message-caption {
    background-color: #fff;
    box-shadow: 0px 4px 10px 0 rgba(0, 0, 0, 0.1);
    margin: 0 20px;
    padding: 30px;
    position: relative;
    text-align: center;
    top: -50px;
}
.section-message-caption__ttl {
    font-size: 2rem;
    letter-spacing: 4px;
    font-weight: bold;
    color: #333;
}
.section-message-caption__ttl span {
    display: block;
}
.section-message-caption__translation {
    color: #333;
    font-family: 'josefinsans-bold';
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-top: 12px;
}
.section-message-caption__lead {
    font-size: 1.2rem;
    line-height: 230%;
    margin-top: 20px;
    text-align: left;
}


/*  本文
--------------------------------------*/
.section-message-sentence {
    padding: 0 20px;
}
.section-message-caption + .section-message-sentence {
    margin-top: 20px;
}
.section-message-sentence h3 {
    color: #81c577;
    font-size: 2rem;
    font-weight: bold;
}
.section-message-sentence h3 span {
    display: block;
}
.section-message-sentence h3 + p {
    margin-top: 20px;
}
.section-message-sentence p {
    font-size: 1.5rem;
    line-height: 230%;
}
.section-message-sentence p + p {
    margin-top: 26px;
}
.section-message-sentence + .section-message-sentence {
    margin-top: 60px;
}
.section-message-sign {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 40px;
    padding: 0 20px;
    text-align: right;
}

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

    .section-message-caption {
        margin: 0 40px;
    }
    .section-message-sentence {
        padding: 0 40px;
    }
    .section-message-sign {
        padding: 0 40px;
    }
}

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

    .section-message {
        box-sizing: border-box;
        margin: 60px auto 0;
        max-width: 1080px;
        width: 100%;
    }


    /*  鈴木さん
    --------------------------------------*/
    .section-message-image {
        max-height: 400px;
        overflow: hidden;
        position: relative;
        width: 100%;
    }
    .section-message-image img {
        margin-left: auto;
        width: 100%;
    }


    /*  白いBOX
    --------------------------------------*/
    .section-message-caption {
        box-sizing: border-box;
        min-height: 265px;
        margin: 0 auto;
        max-width: 835px;
        padding: 60px 50px;
        top: -60px;
    }
    .section-message-caption__ttl {
        font-size: 3.5rem;
            color: #333;
            font-weight: bold;
        letter-spacing: 8px;
    }
    .section-message-caption__ttl span {
        display: inline;
    }
    .section-message-caption__translation {
        font-size: 2rem;
            letter-spacing: 5px;
        margin-top: 20px;
    }
    .section-message-caption__lead {
        font-size: 1.6rem;
        margin-top: 50px;
        text-align: center;
    }


    /*  本文
    --------------------------------------*/
    .section-message-sentence {
        padding: 0;
    }
    .section-message-sentence h3 {
        font-size: 2.4rem;
    }
    .section-message-sentence h3 span {
        display: inline-block;
    }
    .section-message-sentence p {
        font-size: 1.6rem;
    }
    .section-message-sentence p + p {
        margin-top: 18px;
    }
    .section-message-sentence + .section-message-sentence {
        margin-top: 65px;
    }
    .section-message-sign {
        font-size: 1.8rem;
        margin-top: 60px;
        padding: 0;
    }
}


/*--------------------------------------------------------------------------
   企業情報：会社概要
---------------------------------------------------------------------------*/

.page-head-mainvisual.company {
    background: url(/wp-content/uploads/2018/07/img_head_about.jpg) no-repeat bottom/cover;
}
.section-company {
    margin: 50px 0 0;
    padding: 0 20px;
}
.section-company-table {
    box-sizing: border-box;
    width: 100%;
}
.section-company-table tr {
    display: block;
    padding: 20px 0;
}
.section-company-table tr:first-child {
    padding-top: 0;
}
.section-company-table tr + tr {
    border-top: 1px solid #e0e0e0;
}
.section-company-table tr:last-child {
    border-bottom: 1px solid #e0e0e0;
}
.section-company-table tr th {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
}
.section-company-table tr td {
    display: block;
    font-size: 1.6rem;
    padding-top: 10px;
}
.section-company-table tr td p {
    line-height: 180%;
}
.section-company-table tr td p span {
    font-weight: bold;
}
.section-company-table tr td dl {
    display: block;
}
.section-company-table tr td dl + dl {
    margin-top: 5px;
}
.section-company-table tr td dt {
    display: inline-block;
    width: 160px;
}
.section-company-table tr td dd {
    display: inline-block;
}
.section-company-table .section-company-address {
    color: #4e4e4e;
}
.section-company-table .section-company-address:hover {
    text-decoration: none;
}

@media screen and (min-width: 360px) {
    .section-company {
        padding: 0 40px;
    }
}

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

    .section-company {
        margin-top: 60px;
    }
    .section-company-table {
        border: none;
        box-sizing: border-box;
        margin: 0 auto;
        max-width: 800px;
        width: 100%;
    }
    .section-company-table tr {
        border-top: 1px solid #ccc;
        padding: 0;
    }
    .section-company-table tr th {
        display: table-cell;
        font-size: 1.6rem;
        padding: 40px 60px 40px 0;
        text-align: left;
        width: 150px;
    }
    .section-company-table tr td {
        display: table-cell;
        font-size: 1.6rem;
        padding: 40px 0;
    }
    .section-company-table tr td dt {
        width: 175px;
    }
}


/*--------------------------------------------------------------------------
   サービス
---------------------------------------------------------------------------*/

.page-head-mainvisual.service {
    background: url(/wp-content/uploads/2018/07/img_head_service.jpg) no-repeat bottom/cover;
}

.service-page-lead {
    margin: 48px 32px 0;
}
.service-page-lead__ttl {
    color: #333;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}
.service-page-lead__description {
    color: #333;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 16px;
    text-align: left;
}

/*  メインサービス
--------------------------------------*/
.section-mainservice {
    padding-top:  48px;
}
.section-mainservice-bg {
    background-color: #f5f5fa;
    padding: 40px;
}
.section-mainservice__ttl {
    display: none;
}
.section-mainservice__image {
    display: none;
}
.mainservice-logo {
    width: 150px;
}
.sp-mainservice-image {
    margin-top: 24px;
}
.mainservice-ttl {
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.8;
    margin-top: 16px;
}
.mainservice-description {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 10px;
}

/*  その他サービス
--------------------------------------*/
.section-service {
    margin: 50px 0 60px;
    overflow: hidden;
    padding: 0 40px;
}
.section-service + .section-service {
    margin-bottom: 0;
    margin-top: 95px;
}
.section-service__ttl {
    color: #4e4e4e;
    font-size: 1.7rem;
}
.sp-service-image {
    margin-top: 24px;
}
.service-logo {
    height: 34px;
}
.section-service-list {
    margin-top: 30px;
}
.section-service-list__item + .section-service-list__item {
    padding-top: 80px;
}
.section-service-list__image {
    display: none;
    position: relative;
}
.section-service-list__description h2 img {
    width: 130px;
}
.section-service-list__lead {
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.71;
    margin-top: 30px;
}
.section-service-list__text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 20px;
}   
.section-service-list__link {
    display: block;
    margin: 30px auto 0;
    max-width: none;
    width: 200px;
}
.section-service-list__link::after {
    content: '';
    background-image: url(/wp-content/uploads/2018/06/ic_web_link.svg);
    height: 11px;
    position: absolute;
    right: 10px;
    top: 18px;
    width: 11px;
}
.hrlab-logo {
    height: 32px;
    width: auto;
}

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

    .section-service {
        padding: 0 40px;
    }
    .section-service-list__image::before {
        left: -40px;
    }
}

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

    .service-page-lead {
        margin: 100px 16px 0;
    }
    .service-page-lead__ttl {
        color: #333;
        font-size: 3.2rem;
        font-weight: bold;
        letter-spacing: 2px;
        text-align: center;
    }
    .service-page-lead__description {
        color: #333;
        font-size: 1.6rem;
        margin-top: 30px;
        text-align: center;
    }
    .service-page-lead__description span {
        display: block;
    }

    /*  メインサービス
    --------------------------------------*/
    .section-mainservice {
        padding: 0;
    }
    .section-mainservice-bg {
        background-color: transparent;
        padding: 60px 0 0 0;
        position: relative;
    }
    .section-mainservice-bg::before {
        content: '';
        background-color: #f5f5fa;
        height: calc(100% - 60px);
        left: 0;
        position: absolute;
        max-width: 968px;
        width: 100%;
    }
    .section-mainservice-info {
        align-items: center;
        box-sizing: border-box;
        display: flex;
        margin: 0 auto;
        max-width: 1160px;
        padding: 80px 40px 60px;
        position: relative;
        justify-content: space-between;
    }
    .mainservice-logo {
        width: 200px;
    }
    .section-service__ttl {
        font-size: 2.4rem;
    }
    .sp-mainservice-image {
        display: none;
    }
    .mainservice-ttl {
        font-size: 2.4rem;
        margin-top: 40px;
    }
    .mainservice-description {
        max-width: 535px;
    }
    .section-mainservice__image {
        display: inline-block;
        padding-left: 40px;
        position: relative;
        top: 20px;
        width: 450px;
    }
    .section-mainservice__image img {
        min-width: 400px;
        max-width: 500px;
    }

    /*  その他サービス
    --------------------------------------*/
    .section-service {
        box-sizing: border-box;
        margin: 50px auto 120px;
        max-width: 1160px;
        padding-top: 50px;
    }
    .service-logo {
        height: auto;
        width: 333px;
    }
    .section-service:last-of-type {
        margin-bottom: 100px;
    }
    .section-service-list__item {
        display: flex;
        justify-content: space-between;
    }
    .section-service-list__item + .section-service-list__item {
        margin-top: 0;
        padding-top: 115px;
    }
    .sp-service-image {
        display: none;
    }
    .section-service-list__image {
        display: block;
        flex-basis: 50%;
        max-width: 430px;
    }
    .section-service-list__image::before {
        background-color: transparent;
    }
    .section-service-list__description {
        flex-basis: 50%;
        max-width: 470px;
        padding-left: 40px;
    }
    .section-service-list__description h2 img {
        width: 195px;
    }
    .section-service-list__lead {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    .section-service-list__text {
        margin-top: 10px;
    }
    .section-service-list__text.lab {
        margin-top: 20px;
    }
    .section-service-list__lead span {
        display: inline;
    }
    .section-service-list__link {
        font-size: 1.5rem;
        max-width: 240px;
        margin: 30px 0 0;
        padding: 18px 0 15px;
        position:relative;
    }
    .section-service-list__link::after {
        top: 19px;
    }
    .section-service-list__link:hover::after {
        filter: brightness(0) invert(1);
    }
    .hrlab-logo {
        height: 50px;
        width: auto;
    }
}

@media screen and (min-width: 1000px) {
    .section-service-list__lead span {
        display: block;
    }
}

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

    .section-mainservice::before {
        width: calc(100% - 296px);
    }
}


/*--------------------------------------------------------------------------
   採用情報：募集職種
---------------------------------------------------------------------------*/

.page-head-mainvisual.recruit {
    background: url(/wp-content/uploads/2018/07/img_head_recruit.jpg) no-repeat bottom/cover;
}
.section-proverb {
    margin-top: 50px;
    position: relative;
}


/*  メッセージ
--------------------------------------*/
.section-proverb-bg {
    background: url(/wp-content/uploads/2018/07/img_recruit_detail1.jpg) no-repeat bottom/cover;
    height: 100vh;
    max-height: 400px;
}
.section-proverb__ttl {
    color: #fff;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 110%;
    letter-spacing: 4px;
    padding-top: 50px;
    text-align: center;
}
.section-proverb__ttl span {
    display: block;
    font-size: 1.8rem;
}
.section-proverb__lead {
    color: #fff;
    font-size: 1.6rem;
    font-weight: normal;
    margin-top: 20px;
    text-align: center;
}
.section-proverb__lead span {
    display: block;
}
.section-proverb-messagebox {
    background-color: #fff;
    bottom: 155px;
    box-shadow: 0px 8px 30px 0 rgba(0, 0, 0, 0.1);
    margin: 0 20px;
    padding: 30px 20px;
    position: relative;
}
.section-proverb-messagebox__text {
    font-size: 1.6rem;
    line-height: 230%;
    text-align: left;
}
.section-proverb-messagebox__text span {
    display: block;
}
.section-proverb-messagebox__text span + span {
    margin-top: 22px;
}
.section-proverb-messagebox__text span:last-child {
    margin-top: 0;
}
.section-proverb-messagebox__link {
    margin-top: 30px;
    width: 100%;
    max-width: none;
}


/*  採用職種
--------------------------------------*/
.section-proverb + .section-head {
    margin-top: -55px;
}
.section-positions {
    box-sizing: border-box;
    margin: 50px 0;
    padding: 0 20px;
}
.section-positions-list {
    margin-top: 32px;
}
.section-positions-list__item + .section-positions-list__item {
    margin-top: 40px;
}
.section-positions-list__link {
    max-width: 100%;
}
.section-positions-list__link::after {
    content: '';
    background-image: url(/wp-content/uploads/2018/06/ic_web_link.svg);
    height: 11px;
    position: absolute;
    right: 10px;
    top: 19px;
    width: 11px;
}

@media screen and (min-width: 360px) {
    .section-positions {
        padding: 0 40px;
    }
}

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

    #Positions {
        margin-bottom: 200px;
    }
    .section-proverb-messagebox__link {
        max-width: 240px;
    }

    /*  メッセージ
    --------------------------------------*/
    .section-proverb {
        margin-top: 100px;
        min-height: 400px;
    }
    .section-proverb__ttl {
        font-size: 4.5rem;
        padding-top: 133px;
    }
    .section-proverb__ttl span {
        display: inline-block;
        font-size: 2.6rem;
    }
    .section-proverb__lead {
        font-size: 1.8rem;
        line-height: 100%;
    }
    .section-proverb__lead span {
        display: inline-block;
    }
    .section-proverb-messagebox {
        bottom: 100px;
        margin: 0 auto;
        max-width: 800px;
        padding: 60px 77px;
        text-align: center;
        width: 100%;
    }
    .section-proverb-messagebox__text {
        text-align: center;
    }
    .section-proverb-messagebox__text span + span {
        margin: 0;
    }
    .section-proverb-messagebox__link {
        margin-top: 40px;
    }


    /*  採用職種
    --------------------------------------*/
    .section-proverb + .section-head {
        margin-top: 55px;
    }
    .section-positions {
        margin: 80px auto 0;
        max-width: 1110px;
        padding: 0 15px;
    }
    .section-positions p {
        font-size: 1.6rem;
        text-align: center;
    }
    .section-positions-list {
        font-size: 0;
        display: flex;
        flex-wrap: wrap;
        margin-top: 0;
    }
    .section-positions-list__item {
        box-sizing: border-box;
        margin-top: 40px;
        padding: 0 20px;
        width: 33.3%;
    }
    .section-positions-list__link:hover::after {
        filter: brightness(0) invert(1);
    }
}


/*--------------------------------------------------------------------------
   ニュース
---------------------------------------------------------------------------*/

#News {
    margin-bottom: 100px;
}
.page-head-mainvisual.news {
    background: url(/wp-content/uploads/2018/07/img_head_news.jpg) no-repeat top/cover;
}


/*  絞り込み
--------------------------------------*/
.section-news-search {
    display: flex;
    padding: 30px 40px;
}
.section-news-search-item {
    flex-basis: 50%;
}
.section-news-search-item.pc {
    display: none;
}
.section-news-search-item label {
    display: block;
    position: relative;
}
.section-news-search-item label::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 0;
    height: 0;
    margin: -2px 0 0 0;
    border: 5px solid transparent;
    border-top: 5px solid #333;
}
.section-news-search__label span {
    display: none;
}

.section-news-search-item.sp + .section-news-search-item {
    margin-left: 10px;
}
.section-news-search__select {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    height: 40px;
    padding-left: 10px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
}
.section-news-search__select::after {
    content: 'aaa';
}


/*  リスト
--------------------------------------*/
.section-news-list-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 40px;
}
.section-news-list-item:first-of-type {
    border-top: 1px solid #e0e0e0;
}
.section-news-list__tag {
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    min-width: 106px;
    padding: 0 11px;
    text-align: center;
}
.section-news-list-item.info .section-news-list__tag {
    background-color: #81c577;
}
.section-news-list-item.press .section-news-list__tag {
    background-color: #943ce1;
}
.section-news-list-item.media .section-news-list__tag {
    background-color: #37bbcc;
}
.section-news-list__date {
    font-size: 1.3rem;
    margin-left: 10px;
}
.section-news-list__link {
    color: #4e4e4e;
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 19px;
    text-decoration: none;
}

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

    #News {
        margin-bottom: 200px;
    }
    .page-head-mainvisual.news {
        background: url(/wp-content/uploads/2018/07/img_head_news.jpg) no-repeat center top;
    }


    /*  絞り込み
    --------------------------------------*/
    .section-news-search {
        margin: 80px auto 50px;
        max-width: 800px;
        justify-content: space-between;
        width: 100%;
    }
    .section-news-search-item {
        flex-basis: auto;
    }
    .section-news-search-item + .section-news-search-item {
        margin-left: 40px;
    }
    .section-news-search__radio {
        display: none;
    }
    .section-news-search__list {
        max-width: 540px;
        width: 100%;
    }
    .section-news-search__list li {
        display: inline-block;
        width: 133px;
    }
    .section-news-search__list li p {
        border-bottom: 2px solid #e0e0e0;
        cursor: pointer;
        display: block;
        font-size: 1.6rem;
        padding: 20px 0;
        text-align: center;
    }
    .section-news-search__list li input[type="radio"]:checked + p {
        border-bottom: 2px solid #81c577;
         color: #81c577;
        font-weight: bold;
    }
    .section-news-search__list li lable {
        display:  block;
    }
    .section-news-search-item.pc {
        display: block;
    }
    .section-news-search-item.sp {
        display: none;
    }
    .section-news-search-item label::before {
        border: none;
    }
    .section-news-search-item.common label::before {
        border: 5px solid transparent;
        border-top: 5px solid #333;
        top: 70%;
    }
    .section-news-search-item.pc .section-news-search__label,
    .section-news-search__label span {
        display: block;
        font-family: 'josefinsans-bold';
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    .section-news-search__select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 2px;
        margin-top: 11px;
        padding: 0 0 0 10px;
        width: 220px;
    }


    /*  リスト
    --------------------------------------*/
    .section-news-list {
        margin: 0 auto;
        width: 800px;
    }
    .section-news-list-item {
        padding: 30px 0 26px;
    }
    .section-news-list-item:last-child {
        border-bottom: 1px solid #e0e0e0;
    }
    .section-news-list__date {
        margin-left: 22px;
    }
    .section-news-list__tag {
        box-sizing: border-box;
        color: #fff;
        display: inline-block;
        font-size: 1.2rem;
        font-weight: bold;
        line-height: 100%;
        margin-left: 0;
        padding: 3px;
        text-align: center;
        width: 106px;
    }
    .section-news-list__link {
        color: #4e4e4e;
        display: block;
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 190%;
        margin-top: 16px;
        text-decoration: none;
    }
    .section-news-list__link:hover {
        text-decoration: underline;
    }
}


/*--------------------------------------------------------------------------
   ブログリスト
---------------------------------------------------------------------------*/

#Blog {
    margin-bottom: 0;
}
.page-head-mainvisual.blog {
    background: url(/wp-content/uploads/2020/03/img_blog_head.jpg) no-repeat top/cover;
    background-position: 0 -15px;
}
.page-head .page-head-mainvisual.blog .page-head-ttl {
    font-size: 1.6rem;
    font-weight: bold;
}
.section-blog {
    padding: 50px 0;
}
.section-blog-list {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1160px;
    padding: 0 20px;
    width: 100%;
}
.section-blog-item {
    box-sizing: border-box;
    margin-bottom: 55px;
    position: relative;
    text-align: center;
}
.section-blog-item:last-child {
    margin-bottom: 0;
}
.section-blog-item__link {
    display: block;
    text-decoration: none;
}
.section-blog-item__link:hover .section-blog-item__image {
    opacity: .8;
}
.section-blog-item__image {
    max-width: 360px;
    height: 200px;
    overflow: hidden;
}
.section-blog-item__image img {
    width: 100%;
}
.section-blog-item__date {
    color: #4e4e4e;
    display: block;
    font-size: 1.4rem;
    padding: 20px 0 15px;
    text-align: left;
}
.section-blog-item__text {
    color: #4e4e4e;
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    height: 53px;
    overflow: hidden;
    text-align: left;
}
.section-blog-item__link:hover .section-blog-item__text {
    color: #81c577;
}


.section-blog-other {
    background-color: #fafafa;
    padding: 50px 0 100px;
}
.section-blog-other-content {
    margin: 0 auto;
    max-width: 1080px;
    padding: 0 20px;
}
.section-blog-other__ttl {
    border-left: 5px solid #81c577;
    box-sizing: border-box;
    font-size: 1.6rem;
    padding-left: 20px;
    margin: 0 auto;
}
.section-blog-other__list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 50px auto 0;
}
.section-blog-other__item {
    box-sizing: border-box;
}
.section-blog-other__item + .section-blog-other__item {
    margin-top: 40px;
}
.section-blog-other__item-link {
    background-color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    max-width: 100%;
    padding: 26px 0 25px 15px;
    text-align: left;
}
.section-blog-other__item-link::after {
    content: '';
    background-image: url(/wp-content/uploads/2018/06/ic_web_link.svg);
    height: 12px;
    position: absolute;
    right: 15px;
    top: calc(50% - 6px);
    width: 12px;
}
.section-blog-other__item-link:hover::after {
    filter: brightness(0) invert(1);
}
.section-blog-other__item-link span {
    color: #808080;
    display: block;
    font-size: 1.3rem;
    font-weight: normal;
    padding-top: 15px;
}
.section-blog-other__item-link:hover span {
    color: #fff;
}



.section-blog-pager {
    margin-top: 140px;
}
.section-blog-pager-list {
    display: flex;
    justify-content: center;
}
.section-blog-pager-list__item {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
    height: 44px;
    width: 44px;
}
.section-blog-pager-list__item:last-child {
    border-right: 1px solid #e8e8e8;
}
.section-blog-pager-list__link,
.section-blog-pager-list__display {
    box-sizing: border-box;
    color: #4e4e4e;
    display: block;
    height: 100%;
    padding-top: 10px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.section-blog-pager-list__display.is-active{
    background: linear-gradient(-135deg, #81c577, #7dc9b0);
    color: #fff;
    cursor: default;
}


@media screen and (min-width: 360px) {
    .section-blog-list,
    .section-blog-other-content {
        padding: 0 40px;
    }
}
@media screen and (min-width: 768px) {
    .page-head-mainvisual.blog {
        padding: 58px 0 55px;
    }
    .page-head .page-head-mainvisual.blog .page-head-ttl {
        font-size: 4rem;
    }
    .section-blog {
        padding: 100px 0 90px;
    }
    .section-blog-list {
        flex-direction: row;
    }
    .section-blog-item {
        margin-bottom: 60px;
        text-align: left;
        width: 33.3%;
    }
    .section-blog-item:last-child {
        margin-bottom: 60px;
    }
    .section-blog-item::after {
        content: '';
        border-right: 1px solid #e8e8e8;
        height: 100%;
        position: absolute;
        right: 7px;
        top: 0;
    }
    .section-blog-item:nth-child(3n-1)::after {
        right: -7px;
    }
    .section-blog-item:nth-child(3n)::after,
    .section-blog-item:last-child::after {
        border-right: none;
    }
    .section-blog-item:nth-child(3n-2) {
        padding-right: 30px;
    }
    .section-blog-item:nth-child(3n-1) {
        padding-left: 15px;
        padding-right: 15px;
    }
    .section-blog-item:nth-child(3n) {
        padding-left: 30px;
    }
    .section-blog-item__text {
        font-size: 2rem;
        height: 60px;
    }
    .section-blog-other__list {
        flex-direction: row;
    }
    .section-blog-other__item {
        max-width: 666px;
        padding-left: 10px;
        padding-right: 10px;
        width: 33.3%;
    }
    .section-blog-other__item:first-child {
        padding-left: 0;
        padding-right: 20px;
    }
    .section-blog-other__item:last-child {
        padding-left: 20px;
        padding-right: 0;
    }
    .section-blog-other__item + .section-blog-other__item {
        margin-top: 0;
    }
    .section-blog-other__item-link {
        font-size: 1.6rem;
        max-width: 333px;
    }
    .section-blog-other__item-link span {
        font-size: 1rem;
    }
}
@media screen and (min-width: 980px) {
    .section-blog-other__item-link {
        padding-left: 30px;
    }
    .section-blog-other__item-link::after {
        right: 30px;
    }
    .section-blog-other__item-link span {
        font-size: 1.2rem;
    }
}
@media screen and (min-width: 1080px) {
    .section-blog-item__text {
        font-size: 2.4rem;
        height: 75px;
    }
    .section-blog-other__item-link span {
        font-size: 1.4rem;
    }
}


/*--------------------------------------------------------------------------
   プライバシーポリシー
---------------------------------------------------------------------------*/

.section-privacy {
    margin-top: 50px;
    padding: 40px 20px 0;
}
.section-privacy h1 {
    font-size: 2rem;
    text-align: center;
}
.section-privacy .text {
    font-size: 1.5rem;
    line-height: 200%;
    margin: 30px 0 50px;
}
.section-privacy  dt {
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.8rem;
    padding-bottom: 8px;
}
.section-privacy dt {
    margin-top: 40px;
}
.section-privacy dt:first-child {
    margin-top: 0;
}
.section-privacy dd {
    font-size: 1.4rem;
    line-height: 200%;
    margin-top: 15px;
}
.section-privacy .time {
    font-size: 1.4rem;
    margin-top: 30px;
    text-align: right;
}
.section-privacy .president {
    font-size: 1.4rem;
    margin-top: 15px;
    text-align: right;
}
.section-privacy .inquiry {
    text-align: center;
}
.section-privacy .inquiry p {
    font-size: 1.4rem;
    margin-top: 15px;
    text-align: right;
}
.section-privacy .inquiry a {
    margin-top: 30px;
}

@media screen and (min-width: 360px) {
    .section-privacy {
        padding: 0 40px;
    }
}

@media screen and (min-width: 768px) {
    .section-privacy {
        margin: 0 auto;
        max-width: 800px;
        padding: 50px 40px 100px;
    }
    .section-privacy h1 {
        font-size: 4rem;
    }
    .section-privacy .text {
        font-size: 1.6rem;
        line-height: 200%;
        margin: 40px 0 50px;
    }
    .section-privacy  dt {
        font-size: 2rem;
        padding-bottom: 10px;
    }
    .section-privacy dt {
        margin-top: 50px;
    }
    .section-privacy dd {
        font-size: 1.4rem;
        line-height: 200%;
        margin-top: 15px;
    }
    .section-privacy .president {
        margin-top: 20px;
    }
    .section-privacy .inquiry {
        margin-top: 20px;
    }
}


/*--------------------------------------------------------------------------
   個人情報の取り扱い
---------------------------------------------------------------------------*/
.section-statement {
    margin-top: 50px;
    padding: 40px 20px 0;
}
.section-statement h1 {
    font-size: 2rem;
    text-align: center;
}
.section-statement .text {
    font-size: 1.4rem;
    line-height: 200%;
    margin: 30px 0 50px;
}
.section-statement .text-number {
    font-size: 1.4rem;
    margin-bottom: 5px;
    margin-top: 30px;
}
.section-statement dt {
    font-size: 1.5rem;
    margin-top: 40px;
    padding-bottom: 8px;
}
.section-statement dt:first-child {
    margin-top: 0;
}
.section-statement dd {
    font-size: 1.3rem;
    line-height: 180%;
}

.section-statement table {
    width: 100%;
}
.section-statement th {
    background-color: #f6f6f6;
    border: 1px solid #e0e0e0;
    font-size: 1.3rem;
    padding: 5px;
    text-align: center;
}
.section-statement td {
    border: 1px solid #e0e0e0;
    font-size: 1.3rem;
    padding: 10px;
}
.section-statement td li {
    list-style-type: disc;
    margin-left: 20px;
}
.section-statement .text-notice {
    font-size: 1.2rem;
    margin-top: 5px;
}
.section-statement dd a {
    color: #81c577;
    line-height: 180%;
    text-decoration: underline;
}
.section-statement dd a:hover {
    color: #7dc9b0;
    text-decoration: none;
}
.section-statement > ul > li + li {
    margin-top: 30px;
}

@media screen and (min-width: 360px) {
    .section-statement {
        padding: 0 40px;
    }
}

@media screen and (min-width: 768px) {
    .section-statement {
        margin: 0 auto;
        max-width: 800px;
        padding: 50px 40px 100px;
    }
    .section-statement h1 {
        font-size: 4rem;
    }
    .section-statement .text {
        font-size: 1.6rem;
        line-height: 200%;
        margin: 40px 0 50px;
    }
    .section-statement li {
        line-height: 190%;
    }
    .section-statement > ul > li + li {
        margin-top: 60px;
    }
    .section-statement dt {
        font-size: 1.6rem;
        padding-bottom: 10px;
        margin-top: 50px;
    }
    .section-statement dd {
        font-size: 1.4rem;
    }
    .section-statement th {
        font-size: 1.4rem;
    }
    .section-statement td {
        font-size: 1.4rem;
    }
}


/*--------------------------------------------------------------------------
   記事詳細
---------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------
   フレックスボックス
---------------------------------------------------------------------------*/
.flex {
    display: flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}
.flex--rsp {
    flex-direction: column;
    -webkit-flex-direction: column;
}
.flex--reverse {
    flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
}
.flex--ac {
    justify-content: center;
    -webkit-justify-content: center;
    align-self: center;
}
.flex--ar {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}
.flex__item {
    box-sizing: border-box;
}
.flex__item + .flex__item {
    margin-left: 20px;
}

.flex__item--1-basis  { width: 8.33333%; }
.flex__item--2-basis  { width: 16.66667%; }
.flex__item--3-basis  { width: 25%; }
.flex__item--4-basis  { width: 33.33333%; }
.flex__item--5-basis  { width: 41.66667%; }
.flex__item--6-basis  { width: 50%; }
.flex__item--7-basis  { width: 58.33333%; }
.flex__item--8-basis  { width: 66.66667%; }
.flex__item--9-basis  { width: 75%; }
.flex__item--10-basis { width: 83.33333%; }
.flex__item--11-basis { width: 91.66667%; }
.flex__item--12-basis { width: 100%; }

.flex__item--middle {
    align-self: center;
}

.flex--rsp .flex__item + .flex__item {
    margin-top: 20px;
    margin-left: 0;
}

.flex--rsp .flex__item--1-basis { width: 100%; }
.flex--rsp .flex__item--2-basis { width: 100%; }
.flex--rsp .flex__item--3-basis { width: 100%; }
.flex--rsp .flex__item--4-basis { width: 100%; }
.flex--rsp .flex__item--5-basis { width: 100%; }
.flex--rsp .flex__item--6-basis { width: 100%; }
.flex--rsp .flex__item--7-basis { width: 100%; }
.flex--rsp .flex__item--8-basis { width: 100%; }
.flex--rsp .flex__item--9-basis { width: 100%; }
.flex--rsp .flex__item--10-basis { width: 100%; }
.flex--rsp .flex__item--11-basis { width: 100%; }

@media screen and (min-width: 768px) {
    .flex--rsp {
        flex-direction: row;
        -webkit-flex-direction: row;
    }
    .flex--reverse {
        flex-direction: column;
        -webkit-flex-direction: column;
    }
    .flex--rsp .flex__item--1-basis  { width: 8.33333%; }
    .flex--rsp .flex__item--2-basis  { width: 16.66667%; }
    .flex--rsp .flex__item--3-basis  { width: 25%; }
    .flex--rsp .flex__item--4-basis  { width: 33.33333%; }
    .flex--rsp .flex__item--5-basis  { width: 41.66667%; }
    .flex--rsp .flex__item--6-basis  { width: 50%; }
    .flex--rsp .flex__item--7-basis  { width: 58.33333%; }
    .flex--rsp .flex__item--8-basis  { width: 66.66667%; }
    .flex--rsp .flex__item--9-basis  { width: 75%; }
    .flex--rsp .flex__item--10-basis { width: 83.33333%; }
    .flex--rsp .flex__item--11-basis { width: 91.66667%; }
    .flex--rsp .flex__item--12-basis { width: 100%; }
    .flex--rsp .flex__item + .flex__item {
        margin-top: 0;
        margin-left: 20px;
    }
}

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

#Article {
    margin-top: 50px;
}
#Article .container {
    padding: 20px 20px 100px;
}
#Article .container .mainSection header {
    margin-bottom: 5px;
}
#Article .container .mainSection header .heading-title {
    border-bottom: 1px solid #f2f2f2;
    border-top: 1px solid #f2f2f2;
    padding: 10px 0;
}
#Article .container .mainSection header .article_tag::before {
    content: '｜';
    color: #efefef;
    padding-right: 5px;
}
#Article .container .mainSection header .entry-meta {
    color: #9a9a9a;
    font-size: 1.4rem;
    line-height: 1.8;
}
#Article .container header .bookmarks {
    margin-top: 20px;
}
#Article .container header .bookmark-list {
    display: flex;
    flex-wrap: wrap;
}
#Article .container header .bookmark-item {
    line-height: 100%;
    margin-bottom: 15px;
    margin-right: 15px;
}
#Article .container header .fb-like,
#Article .container header .fb-share-button {
    line-height: 100%;
}
/*-------------------------------------------------------------------------*/
#Article .entry-body .h2-heading {
    background-color: #f1f1f1;
    font-size: 18px;
    margin-bottom: 24px;
    padding: 18px 20px;
}
#Article .entry-body .h3-heading {
    border-left: 5px solid #00bcd5;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 24px;
    padding: 5px 10px;
}
#Article .entry-body p {
    font-size: 1.5rem;
    line-height: 180%;
    margin-top: 20px;
}
#Article .entry-body p:empty {
    display: none;
}
#Article .entry-body .bold {
    font-weight: bold;
}
#Article .entry-body .ac {
    text-align: center;
}
#Article .entry-body .textline {
    text-decoration: underline;
}
#Article .entry-body a {
    color: #81c577;
    line-height: 180%;
    text-decoration: underline;
    word-break: break-all;
}
#Article .entry-body a:hover {
    color: #7dc9b0;
    text-decoration: none;
}
#Article .entry-body a.green-link {
    text-decoration: none;
}
#Article .entry-body a.green-link:hover {
    color: #fff;
}
#Article .entry-body img.designation {
    height: initial;
    width: initial;
}
#Article .entry-body .text-block {
    background-color: #fbfaf8;
    border: 1px solid #d6d5d3;
    border-radius: 3px;
    font-size: 15px;
    margin: 0 0 1.714285714rem;
    padding: 8px 8px 8px 12px;
}
#Article .entry-body figcaption {
    color: #9da0a4;
    font-size: 1rem;
    margin-top: 5px;
}
#Article .entry-body .supplement {
    font-size: 12px;
    margin: 0 !important;
}
#Article .entry-body .blockquote {
    border-left: 4px solid #e0e0e0;
    color: #808080;
    padding-left: 15px;
}
/*-------------------------------------------------------------------------*/
#Article .article-section + .article-section {
    margin-top: 40px;
    margin-bottom: 0;
}
#Article .article-section p {
}
#Article .article-section .flex-table {
    border-collapse: collapse;
    width: 100%;
}
#Article .article-section .flex-table caption {
    margin-bottom: 10px;
    text-align: left;
}
#Article .article-section .flex-table th {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    display: block;
    font-size: 1.4rem;
    padding: 5px;
}
#Article .article-section .flex-table tr:first-child th {
    border-top: 1px solid #ccc;
}
#Article .article-section .flex-table td {
    border: 1px solid #ccc;
    display: block;
    font-size: 1.4rem;
    padding: 7px 10px;
}
#Article .article-section .peress-inquiry-ttl {
    border-bottom: 1px solid #ccc;
    color: #000;
    font-size: 2rem;
    padding-bottom: 5px;
}
#Article .article-section .peress-inquiry-table {
    margin-top: 30px;
}
#Article .article-section .peress-inquiry-table th {
    border: none;
    color: #333;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 2px 0;
    text-align: left;
    width: 40px;
}
#Article .article-section .peress-inquiry-table td {
    border: none;
    color: #333;
    font-size: 1.4rem;
    padding: 0;
}
/*-------------------------------------------------------------------------*/
#Article .article-section .profile-table {
    border-collapse: collapse;
    width: 100%;
}
#Article .article-section .profile-table caption {
    margin-bottom: 10px;
    text-align: left;
}
#Article .article-section .profile-table th {
    display: block;
    font-size: 1.4rem;
    padding: 5px;
}
#Article .article-section .profile-table td {
    display: block;
    font-size: 1.4rem;
    padding: 16px 0 24px;
}
#Article .article-section .profile-table td:first-child {
    padding: 0;
}
#Article .article-section .profile-table tr:last-child td:last-child {
    padding: 16px 0 0;
}
/*-------------------------------------------------------------------------*/
#Article .entry-body .mlr { margin: 0 auto; }
#Article .entry-body .mt0 { margin-top: 0; }
#Article .entry-body .mt5 { margin-top: 5px; }
#Article .entry-body .mt10 { margin-top: 10px; }
#Article .entry-body .mt15 { margin-top: 15px; }
#Article .entry-body .mt20 { margin-top: 20px; }
#Article .entry-body .mt25 { margin-top: 25px; }
#Article .entry-body .mt30 { margin-top: 30px; }
#Article .entry-body .mt35 { margin-top: 35px; }
#Article .entry-body .mt40 { margin-top: 40px; }
#Article .entry-body .mt50 { margin-top: 50px; }
#Article .entry-body .mt60 { margin-top: 60px; }
#Article .entry-body .mt70 { margin-top: 70px; }
#Article .entry-body .mt80 { margin-top: 80px; }
#Article .entry-body .mt90 { margin-top: 90px; }
#Article .entry-body .pt0 { padding-top: 0; }
#Article .entry-body .pt5 { padding-top: 5px; }
#Article .entry-body .pt10 { padding-top: 10px; }
#Article .entry-body .pt15 { padding-top: 15px; }
#Article .entry-body .pt20 { padding-top: 20px; }
#Article .entry-body .pt25 { padding-top: 25px; }
#Article .entry-body .pt30 { padding-top: 30px; }
#Article .entry-body .pt35 { padding-top: 35px; }
#Article .entry-body .pt40 { padding-top: 40px; }
#Article .entry-body .pt50 { padding-top: 50px; }
#Article .entry-body .pt60 { padding-top: 60px; }
#Article .entry-body .pt70 { padding-top: 70px; }
#Article .entry-body .pt80 { padding-top: 80px; }
#Article .entry-body .pt90 { padding-top: 90px; }
#Article .entry-body .pl5 { padding-left: 5px; }
#Article .entry-body .pl10 { padding-left: 10px; }
#Article .entry-body .pl15 { padding-left: 15px; }
#Article .entry-body .pl20 { padding-left: 20px; }
#Article .entry-body .pl25 { padding-left: 25px; }
#Article .entry-body .pl30 { padding-left: 30px; }
#Article .entry-body .pr5 { padding-right: 5px; }
#Article .entry-body .pr10 { padding-right: 10px; }
#Article .entry-body .pr15 { padding-right: 15px; }
#Article .entry-body .pr20 { padding-right: 20px; }
#Article .entry-body .pr25 { padding-right: 25px; }
#Article .entry-body .pr30 { padding-right: 30px; }
#Article .entry-body .pb5 { padding-bottom: 5px; }
#Article .entry-body .pb10 { padding-bottom: 10px; }
#Article .entry-body .pb15 { padding-bottom: 15px; }
#Article .entry-body .pb20 { padding-bottom: 20px; }
#Article .entry-body .pb25 { padding-bottom: 25px; }
#Article .entry-body .pb30 { padding-bottom: 30px; }
#Article .entry-body .h400 { height: 400px; }
#Article .entry-body .w400 { width: 400px; }
/*-------------------------------------------------------------------------*/

@media screen and (max-width: 767px) {
    #Article .entry-body img {
        height: auto;
        width: 100%;
    }
}

@media screen and (min-width: 360px) {
    #Article .container {
        padding: 20px 40px 100px;
    }
}

@media screen and (min-width: 768px) {
    #Article {
        margin-top: 80px;
    }
    #Article .container {
        padding: 60px 0 200px;
    }
    #Article .container .mainSection {
        box-sizing: border-box;
        margin: 0 auto;
        max-width: 880px;
        padding: 0 40px;
        width: 100%;
    }
    #Article .container .mainSection header {
        margin-bottom: 30px;
    }
    #Article .container .mainSection header .entry-title {
        font-size: 2rem;
        line-height: 1.8;
    }
    #Article .container .mainSection header .entry-meta {
        line-height: 1.8;
    }
    #Article .container .mainSection header .article_tag {
        box-sizing: border-box;
        display: inline-block;
        line-height: 100%;
        margin-left: 5px;
    }
    #Article .entry-body p {
        font-size: 1.6rem;
    }
    #Article .article-section p {
        margin-top: 20px;
    }
    #Article .entry-body .ph400 { height: 400px; }
    #Article .entry-body .pw400 { width: 400px; }
    #Article .entry-body figcaption {
        font-size: 1.3rem;
    }
    #Article .article-section + .article-section {
        margin-top: 70px;
    }
    #Article .article-section .flex-table th {
        border: 1px solid #ccc;
        display: table-cell;
        font-size: 1.6rem;
        min-width: 100px;
    }
    #Article .article-section .flex-table td {
        display: table-cell;
        font-size: 1.6rem;
    }
    #Article .article-section .profile-table th {
        display: table-cell;
        font-size: 1.6rem;
        min-width: 100px;
    }
    #Article .article-section .profile-table td {
        display: table-cell;
        font-size: 1.6rem;
        padding: 16px;
    }
    #Article .article-section .profile-table tr:last-child td:last-child {
        padding: 16px;
    }
    #Article .entry-body .pmt0 { margin-top: 0px !important; }
    #Article .entry-body .pmt5 { margin-top: 5px !important; }
    #Article .entry-body .pmt10 { margin-top: 10px !important; }
    #Article .entry-body .pmt15 { margin-top: 15px !important; }
    #Article .entry-body .pmt20 { margin-top: 20px !important; }
    #Article .entry-body .pmt25 { margin-top: 25px !important; }
    #Article .entry-body .pmt30 { margin-top: 30px !important; }
    #Article .entry-body .pmt35 { margin-top: 35px !important; }
    #Article .entry-body .pmt40 { margin-top: 40px !important; }
    #Article .entry-body .pmt50 { margin-top: 50px !important; }
    #Article .entry-body .pmt60 { margin-top: 60px !important; }
    #Article .entry-body .pmt70 { margin-top: 70px !important; }
    #Article .entry-body .pmt80 { margin-top: 80px !important; }
    #Article .entry-body .pmt90 { margin-top: 90px !important; }
    #Article .entry-body .blockquote {
        padding-left: 20px;
    }
}

@media screen and (max-width: 767px) {
    #Article .entry-body .smt0 { margin-top: 0px; }
    #Article .entry-body .smt10 { margin-top: 10px; }
    #Article .entry-body .smt20 { margin-top: 20px; }
    #Article .entry-body .smt30 { margin-top: 30px; }
    #Article .entry-body .smt40 { margin-top: 40px; }
    #Article .entry-body .smt50 { margin-top: 50px; }
    #Article .entry-body .smt60 { margin-top: 60px; }
    #Article .entry-body .smt70 { margin-top: 70px; }
    #Article .entry-body .smt80 { margin-top: 80px; }
    #Article .entry-body .smt90 { margin-top: 90px; }
    #Article .entry-body .sp-block { display: block }
}


/*--------------------------------------------------------------------------
   スライダーアニメーション
---------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {

    #ImgSlider {
        animation: hero-img .8s cubic-bezier(0.075, 0.82, 0.165, 1) 1.7s forwards;
        bottom: -100%;
        height: 100%;
        max-height: 600px;
        max-width: 855px;
        overflow: hidden;
        position: relative;
        width: 100%;
    }
    #ImgSlider li {
        left: 0;
        position: absolute;
        text-align: center;
        top: 0;
        width: 100%;
    }
    #ImgSlider li:nth-child(1) {
        animation: rotation1 24s ease 2s infinite;
        -ms-animation-delay: 3s;
        animation-delay: 3s;
        z-index: 6;
    }
    #ImgSlider li:nth-child(2) {
        animation: rotation2 24s ease 2s infinite;
        -ms-animation-delay: 3s;
        animation-delay: 3s;
        z-index: 5;
    }
    #ImgSlider li:nth-child(3) {
        animation: rotation3 24s ease 2s infinite;
        -ms-animation-delay: 3s;
        animation-delay: 3s;
        z-index: 4;
    }
    #ImgSlider li:nth-child(4) {
        animation: rotation4 24s ease 2s infinite;
        -ms-animation-delay: 3s;
        animation-delay: 3s;
        z-index: 3;
    }
    #ImgSlider li:nth-child(5) {
        animation: rotation5 24s ease 2s infinite;
        -ms-animation-delay: 3s;
        animation-delay: 3s;
        z-index: 2;
    }
    #ImgSlider li:nth-child(6) {
        animation: rotation6 24s ease 2s infinite;
        -ms-animation-delay: 3s;
        animation-delay: 3s;
        z-index: 1;
    }
    #ImgSlider li img {
        height: 245px;
        width: auto;
    }

    /* PC */
    #ImgSlider li {
        height: 618px;
    }
    #ImgSlider li img {
        height: 600px;
        left: 50%;
        position: absolute;
        -webkit-transform: translate(-50%,0);
        -moz-transform: translate(-50%,0);
        -ms-transform: translate(-50%,0);
        -o-transform: translate(-50%,0);
        transform: translate(-50%,0);
    }
}

@keyframes rotation1 {
    0%   {
        opacity: 1;
    }
    7% {
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    15% {
        opacity: 0;
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes rotation2 {
    0%   {
        opacity: 1;
        transform: scale(1);
    }
    24% {
        transform: scale(1);
        opacity: 1;
    }
    32% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
@keyframes rotation3 {
    0%   {
        opacity: 1;
        transform: scale(1);
    }
    41% {
        transform: scale(1);
        opacity: 1;
    }
    49% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
@keyframes rotation4 {
    0%   {
        opacity: 1;
        transform: scale(1);
    }
    58% {
        transform: scale(1);
        opacity: 1;
    }
    66% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
@keyframes rotation5 {
    0%   {
        opacity: 1;
        transform: scale(1);
    }
    75% {
        transform: scale(1);
        opacity: 1;
    }
    83% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
@keyframes rotation6 {
    0%   {
        opacity: 1;
        transform: scale(1);
    }
    92% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}


/*--------------------------------------------------------------------------
   Youtube
---------------------------------------------------------------------------*/
.youtube-frame {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}
.youtube-frame.youtube-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}