@charset "UTF-8";

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

共通スタイル

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

html {
	font-size: 62.5%;
}

body {
    background-color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    color: #333;
    line-height: 2.0;
}

p {
	text-align: justify;
}

@media (max-width: 870px) {
    body {
        font-size: 1.4rem;
    }
}

p {
    text-align: justify;
}


b {
    font-size: 2.2rem;
}

@media (max-width: 870px) {
    b {
        font-size: 1.8rem;
    }
}

small {
    font-size: 2.4rem;
    margin-left: 20px;
}

@media (max-width: 1200px) {
    small {
        font-size: 1.4rem;
        margin-left: 10px;
    }
}

.small-ttl {
    font-size: 1.8rem;
    margin-left: 0;
}

@media (max-width: 1200px){
    .small-ttl {
        font-size: 1.2rem;
    }
}

a {
    text-decoration: none;
}

.img-unit {
    width: fit-content;
    text-align: right;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
}

.img-label {
    display: inline-block;
    font-size: 1.4rem;
    margin-top: 16px;
}

.letterSpacing {
    letter-spacing: -0.1em;
}

.br__onoff {
    display: none;
}

@media (max-width: 1200px) {
    .br__onoff {
        display: block;
    }
}

.br__onoff.wide {
    display: none;
}

@media (max-width: 1345px) {
    .br__onoff.wide {
        display: block;
    }
}

/* breadcrumbs */
.breadcrumbs {
    background: #FFF;
}

@media (max-width: 870px) {
    .breadcrumbs {
        display: none;
    }
}

.breadcrumbs__inner {
    max-width: 1400px;
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 30px;
}

.breadcrumbs__list {
    display: flex;
}

.breadcrumbs__item {
    display: flex;
    width: auto;
    height: 12px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    line-height: 1.0;
    padding-right: 10px;
}

.breadcrumbs__btn {
    display: block;
    width: 100%;
    height: 100%;
    margin-right: 10px;
    cursor: pointer;
}

.breadcrumbs__btn:hover {
    color: #00649B;
}

/* header */
.okm--h--wrapper--header {
    width:100% !important
}

/* animation */
.fadeIn{
    animation-name:fadeInAnime;
    animation-delay: 0.5s;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }

.fadeDown{
    animation-name:fadeDownAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeDownAnime{
      from {
        opacity: 0;
        transform: translateY(-100px);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

.fadeUp {
        opacity : 0;
        transform : translate(0, 100px);
        transition : all 1s;
    }

@media (max-width: 870px) {
    .fadeUp {
        transform : translate(0, 50px);
    }
}
    
.fadeUp.active {
        opacity : 1;
        transform : translate(0, 0);
    }
    
.fadeRight {
        opacity: 0;
        transform: translate(100px, 0);
        transition : all 1s;
    }
    
.fadeRight.active {
        opacity : 1;
        transform : translate(0, 0);
    }

.fadeLeft {
    opacity: 0;
        transform: translate(-100px, 0);
        transition : all 1s;
    }

.fadeLeft.active {
    opacity : 1;
    transform : translate(0, 0);
    }

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

自治体トップページ

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

/* top */
.top {
    background: #FFF;
}

@media (max-width: 870px) {
    .top {
        margin-top: 65px;
    }
}

.top__inner {
    margin-left: auto;
    margin-right: auto;
}

.top__img {
    width: 100%;
}

.top__img.sp {
    display: none;
}

@media (max-width: 870px) {
    .top__img.pc {
        display: none;
    }

    .top__img.sp {
        display: block;
    }
}

/* Introduction */

.intro {
    width: 100%;
    background-image: url(../img/index/intro__bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation-name: introFadeUp;
    animation-delay: 0.5s;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes introFadeUp{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.intro__inner {
    max-width: 1400px;
    padding-top: 90px;
    padding-bottom: 120px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 870px) {
    .intro__inner{ 
        padding-top: 60px;
        padding-bottom: 80px;
    }
} 

.intro__ttl {
    margin-bottom: -30px;
}

@media (max-width: 870px) {
    .intro__ttl {
        height: 54px;
        margin-bottom: -20px;
    }
}

.intro__ttl-img {
    height: 100%;
}

.intro__body {
    width: 886px;
    background-color: #F4F9FB;
    padding-left: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 80px;
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
}

@media (max-width: 1200px) {
    .intro__body {
        width: 90%;
    }
}

@media (max-width: 870px) {
    .intro__body {
        padding-left: 30px;
        padding-top: 40px;
        padding-bottom: 40px;
        padding-right: 30px;
    }
}

.intro__ttl--jp {
    font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
    font-size: 3.6rem;
    font-weight: 600;
    color: #00649B;
    line-height: 2.0;
}

@media (max-width: 870px) {
    .intro__ttl--jp {
        font-size: 2.0rem;
    }

    .intro__ttl--jp br {
        display: none;
    }
}

.intro__txt {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
    line-height: 2.0;
    margin-top: 40px;
}

@media (max-width: 870px) {
    .intro__txt {
        font-size: 1.6rem;
    }
}

/* interview-listw */
.interview-list {  
    margin-top: 80px;
}

.interview-list__inner {
    background-color: #F4F9FB;
    padding-left: 30px;
    padding-right: 30px;
}

.interview-list__list {
    display: block;
    max-width: 1200px;
    padding-top: 72px;
    padding-bottom: 120px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 870px) {
    .interview-list__list {
        padding-top: 32px;
        padding-bottom: 80px;
    }
}

.interview-list__ttl {
    margin-bottom: -30px;
}

.interview-list__ttl-img {
    height: 100%;
    margin-left: auto;
}

@media (max-width: 870px) {
    .interview-list__ttl {
        height: 54px;
    }    
}

.interview-list__btn {
    display: block;
    width: fit-content;
    padding-top: 48px;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: auto;
    cursor: pointer;
}

.interview-list__btn.even {
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 1200px) {
    .interview-list__btn {
        width: auto;
    }
}

@media (max-width: 870px) {
    .interview-list__btn {
        margin-left: auto;
    }
}

.interview-list__item {
    display: flex;
    overflow: hidden;
    align-items: center;
    padding-top: 20px;
}

.interview-list__item.even {
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
}

@media (max-width: 870px) {
    .interview-list__item {
        display: block;
    }

    .interview-list__item.even {
        display: flex;
        flex-direction: column-reverse;
    }
}

.interview-list__item-imgArea {
    width: 578px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .interview-list__item-imgArea {
        width: 50%;
    }
}

@media (max-width: 870px) {
    .interview-list__item-imgArea {
        width: 100%;
    }
}

.interview-list__item-img {
    display: block;
    width: auto;
    transition: ease .6s;
}

@media (max-width: 870px) {
    .interview-list__item-img {
        width: 100%;
    }
}

.interview-list__btn:hover .interview-list__item-img {
    transform: scale(1.1);
}

.interview-list__item-img.even {
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
}

.interview-list__item-inner {
    display: flex;
    align-items: center;
    width: 578px;
    background-color: #FFF;
    padding-left: 40px;
    padding-top: 70px;
    padding-bottom: 70px;
    padding-right: 40px;
    margin-left: -40px;
    position: relative;
    z-index: 1;
}

.interview-list__item-inner.even {
    margin-left: 0;
    margin-right: -40px;
}

@media (max-width: 1200px) {
    .interview-list__item-inner {
        width: 50%;
        padding-left: 30px;
        padding-right: 30px;
        margin-left: 0;
    }

    .interview-list__item-inner.even{
        margin-right: 0;
    }
}

@media (max-width: 870px) {
    .interview-list__item-inner {
        width: 100%;
        padding-left: 16px;
        padding-top: 36px;
        padding-bottom: 36px;
        padding-right: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .interview-list__item-inner.even {
        margin-left: auto;
        margin-right: auto;
    }
}

.interview-list__tag.blue {
    display: block;
    width: 194px;
    height: 72px;
    position: absolute;
    top: -20px;
}

@media (max-width: 870px) {
    .interview-list__tag.blue {
        width: 120px;
        top: -30px;
    }
}

.interview-list__item-ttl {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 3.2rem;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .interview-list__item-ttl {
        font-size: 2.0rem;
    }
} 

@media (max-width: 870px) {
    .interview-list__item-ttl {
        font-size: 1.8rem;
    }
} 

.interview-list__item-arrow {
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    transition: all .6s;
}

.interview-list__btn:hover .interview-list__item-arrow {
    margin-right: -10px;
}

@media (max-width: 1200px) {
    .interview-list__item-arrow {
        width: 15px;
        height: 15px;
    }
}

/* link-case */
.link-case {
    background-image: url(../img/index/link-case__bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-left: 30px;
    padding-right: 30px;
}

.link-case__inner {
    max-width: 1200px;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .link-case__inner {
        width: initial;
    }
}

@media (max-width: 870px) {
    .link-case__inner {
       padding-top: 40px;
       padding-bottom: 40px;
    }
}

.link-case__btn {
    display: flex;
    overflow: hidden;
    max-width: 784px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

@media (max-width: 870px) {
    .link-case__btn {
        width: 100%;
    }
}

.link-case__btn-imgArea {
    width: 50%;
    overflow: hidden;
}

.link-case__btn-img {    
    transition: ease .6s;
}

.link-case__btn:hover .link-case__btn-img {
    transform: scale(1.1);
}

.link-case__btn-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    background: linear-gradient(to right,#00a0d2 0%, #0066a0 100%);
    position: relative;
}

.link-case__btn-ttl {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 3.6rem;
    font-weight: bold;
    color: #FFF;
}

@media (max-width: 1200px) {
    .link-case__btn-ttl {
        font-size: 2.0rem;
    }
}

@media (max-width: 870px) {
    .link-case__btn-ttl {
        font-size: 1.8rem;
    }
}

.link-case__btn-ttl::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/common/arrow-white.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: 40px;
    transition: all .6s;
}

.link-case__btn:hover .link-case__btn-ttl::after {
    right: 30px;
}

@media (max-width: 870px) {
    .link-case__btn-ttl::after {
        width: 15px;
        height: 15px;
        margin-top: -6px;
        right: 20px;
    }

    .link-case__btn:hover .link-case__btn-ttl::after {
        right: 10px;
    }
}

/* survey */

.survey__inner {
    max-width: 784px;
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 870px) {
    .survey__inner {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.survey__ttl {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 2.6rem;
    font-weight: bolder;
    text-align: center;
    line-height: 1.5;
    color: #FFF;
    background-color: #00649B;
    padding-left: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 16px;
}

@media (max-width: 870px) {
    .survey__ttl {
        font-size: 2.0rem;
    }
}

.survey__heading {
    font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
    font-size: 3.0rem;
    font-weight: 600;
    line-height: 2.0;
    color: #00649B;
    margin-top: 64px;
}

@media (max-width: 870px) {
    .survey__heading {
        font-size: 2.0rem;
    }

    .survey__heading br {
        display: none;
    }
}

.survey__txt {
    margin-top: 40px;
}

@media (max-width: 870px) {
   .survey__txt {
    font-size: 1.4rem;
   }
}

.survey__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

@media (max-width: 870px) {
    .survey__list {
        flex-direction: column;
    }
}

@media (max-width: 870px) {
    .survey__list-item {
        margin-left: 0;
        margin-right: auto;
    }
}

.survey__list-box {
    display: inline-block;
    width: 16px;
    height: 16px; 
    margin-right: 6px
}

.survey__img-group {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.survey__img {
    margin-top: 24px;
}

.text-list {
    margin-top: 24px;
}

.text-list__ttl {
    font-weight: 600;
    color: #00649B;
}

.text-list__item {
    list-style: inside;
}

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

インタビューページ

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

/* top-interview */

.top-interview {
    background: linear-gradient(to right,#00a0d2 0%, #0066a0 100%);
}

@media (max-width: 870px){
    .top-interview {
        margin-top: 65px;
    }
}

.top-interview__inner {
    display: flex;
    align-items: center;
    max-width: 1400px;
    height: 440px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 870px){
    .top-interview__inner {
        display: block;
        height: auto;
        padding-left: 0;
        padding-right: 0;
    }
}

.top-interview__body {
    width: 50%;
}

@media (max-width: 870px){
    .top-interview__body {
        width: auto;
        padding-left: 30px;
        padding-right: 30px;
    }

    .top-interview__body.fadeIn {
        animation-name:fadeInAnime;
        animation-delay: initial;
        animation-duration: initial;
        animation-fill-mode: initial;
        opacity:1;
    }
}

.top-interview__head {
    border-bottom: 2px solid #FFF;
    padding-bottom: 24px;
}

@media (max-width: 870px) {
    .top-interview__head {
        padding-top: 40px;
    }
}

.head__ttl {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 2.2rem;
    font-weight: bolder;
    color: #FFF;
    padding-top: 16px;
}

@media (max-width: 870px) {
    .head__ttl {
        font-size: 2.0rem;
    }
}

.top-interview__lead {
    font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
    font-size: 3.0rem;
    font-weight: 600;
    line-height: 1.5;
    color: #FFF;
    padding-top: 32px;
}

@media (max-width: 1200px) {
    .top-interview__lead {
        font-size: 2.8rem;
    }
}

@media (max-width: 870px) {
    .top-interview__lead {
        padding-bottom: 40px;
    }
}

.top-interview__img {
    height: 100%;
}

@media (max-width: 1200px){
    .top-interview__img {
        width: 50%;
        height: auto;
    }
}

@media (max-width: 870px) {
    .top-interview__img {
        width: 100%;
    }
    .top-interview__img.fadeDown {
    animation-name:fadeDownAnime;
    animation-duration: initial;
    animation-fill-mode: initial;
    opacity: 1;
    }
}


/* intro-interview */

.intro-interview {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-right: 30px;
    animation-name: introFadeUp;
    animation-delay: 0.5s;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes introFadeUp{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.intro-interview__inner {
    max-width: 784px;
    margin-left: auto;
    margin-right: auto;
}

.intro-interview__body {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 1200px) {
    .intro-interview__body {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.intro-interview__ttl {
    margin-left: auto;
    margin-right: auto;
}

/* article */

.article {
    padding-top: 80px;
    overflow: hidden;
}

.article__body {
    margin-top: 40px;
}

.article__ttl {
    margin-left: auto;
    margin-right: auto;
}

.article__section { 
    display: flex;
    max-width: 1400px;  
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.article__section.even {
    flex-direction: row-reverse;
}

@media (max-width: 1200px){
    .article__section {
        display: block;
    }
}

.article__section.even::after {
    right: 0;
}

.article__section-imgArea {
    margin-top: 280px;
    margin-left: -300px;
}

.article__section-imgArea.even {
    margin-left: 0;
    margin-right: -300px;
}

.article__section-imgArea.vertical {
    width: 40%;
}

.article__section-imgArea.two-line {
    margin-top :300px
}

.article__section-imgArea.vertical.two-line {
    margin-top :300px
}

.article__section-img-label {
    display: block;
    max-width: 682px;
    font-size: 1.4rem;
    margin-top: 16px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .article__section-imgArea {
        display: block;
        width: 682px;
        height: auto;
        position: static;
        margin-left: auto;
        margin-right: 0;
    }
    .article__section-imgArea.even {
        margin-right: auto;
    }
    .article__section-imgArea.vertical {
        width: fit-content;
    }
    .article__section-imgArea.two-line {
        margin-top: -50px;
    }
    .article__section-imgArea.vertical.two-line {
        margin-top: -50px;
    }
    .article__section-imgArea.blank {
        display: none;
    }
    .article__section-img-label {
        padding-left: 30px;
        padding-right: 30px;
    }    
}

@media (max-width: 870px) {
    .article__section-imgArea.even {
        margin-right: auto;
    }
    .article__section-imgArea.two-line {
        margin-top: -20px;
    }
    .article__section-imgArea.vertical.two-line {
        margin-top: -20px;
    }
}

@media (max-width: 681px) {
    .article__section-imgArea {
        width: auto;
    }
}

.article__section-img {
    height: auto;
}

@media (max-width: 1200px){
    .article__section-img {
        display: block;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.article__section-img.vertical {
    width: auto;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 870px) {
    .article__section-img.vertical {
        height: auto;
    }
}

.article__section-inner {
    max-width: 1090px;
    margin-left: auto;
    margin-right: auto;
}

.article__section-inner.even {
    margin-right: 0;
}

@media (max-width: 1200px) {
    .article__section-inner {
        width: 90%;
        margin-left: 0;
        margin-right: 0;
    }
    .article__section-inner.even {
        margin-left: auto;
    }
}

.article__section-img.even {
    left: 0;
}

.article__section-ttl {
    width: fit-content;
    position: absolute;
}

.article__section-ttl.left {
    top: -50px;
    left: 0;
}

@media (max-width: 870px) {
    .article__section-ttl.left {
        height: 54px;
        top: -30px;
    }

    .article__section-ttl-img.left {
        height: 100%;
    }
}

.article__section-ttl.right {
    top: -50px;
    right: 0;
}

@media (max-width: 870px) {
    .article__section-ttl.right {
        height: 54px;
        top: -30px;
    }

    .article__section-ttl-img.right {
        height: 100%;
    }
}

.article__section-ttl.center {
    top: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@media (max-width: 870px) {
    .article__section-ttl.center {
        height: 54px;
        top: -30px;
    }

    .article__section-ttl-img.center {
        width: 100%;
        height: 100%;
    }
}

.article__section-ttl.left-vertical {
    top: -50px;
    left: 0;
}

@media (max-width: 870px) {
    .article__section-ttl.left-vertical {
        width: 54px;
        top: -30px;
    }

    .article__section-ttl.left-vertical.two {
        width: 100px;
    }
}

.article__section-ttl.center-vertical {
    top: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@media (max-width: 870px) {
    .article__section-ttl.center-vertical {
        width: 100px;
        top: -30px;
        left: initial;
        right: 30px;
        margin: initial;
    }
}

.article__section-ttl.right-vertical {
    top: -50px;
    right: 0;
}

@media (max-width: 870px) {
    .article__section-ttl.right-vertical {
        width: 54px;
        top: -30px;
        right: 0;
    }
}

.article__section-content {
    background-color: #F4F9FB;
    padding-left: 100px;
    padding-bottom: 120px;
    padding-top: 120px;
    padding-right: 412px;
}

.article__section-content.even {
    padding-left: 412px;
    padding-right: 100px;
}

@media (max-width: 1200px) {
    .article__section-content {
        padding-right: 100px;
    }
    .article__section-content.even {
        padding-left: 100px;
    }
}

@media (max-width: 870px) {
    .article__section-content {
        padding-left: 30px;
        padding-bottom: 40px;
        padding-top: 40px;
        padding-right: 30px;
    }
    .article__section-content.even {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.article__heading {
    font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.5;
    color: #00649B;
    margin-bottom: -40px;
}

.article__heading::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 4px;
    background-image: url(../img/common/heading__border-top.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 30px;
}

.article__heading::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 65px;
    background-image: url(../img/common/heading__border-bottom.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .article__heading {
        width: 600px;
        font-size: 3.2rem;
    }
}

@media (max-width: 870px) {
    .article__heading {
        width: 100%;
        font-size: 2.0rem;
        white-space: normal;
        margin-bottom: -60px;
    }
}

.article__subttl {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 2.0;
}

@media (max-width: 870px) {
    .article__subttl {
        font-size: 1.4rem;
    }
}

.article__text {
    display: flex;
    margin-top: 40px;
}

.article__tag {
    display: inline-block;
    width: 40px;
    height: 24px;
    margin-top: 8px;
    margin-right: 10px;
}

.article__img-group {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* link-interview */

.link-interview {
    width: 100%;
    background-image: url(../img/common/link-interview__bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 80px
}

@media (max-width: 1200px) {
    .link-interview{
        padding-left: 0;
        padding-right: 0;
    }
}

.link-interview__inner {
    max-width: 1200px;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .link-interview__inner {
        width: 100%;
    }
}

@media (max-width: 870px) {
    .link-interview__inner {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.link-interview__ttl {
    margin-left: auto;
    margin-right: auto;
}

.link-interview__list {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 870px) {
    .link-interview__list {
        display: block;
        margin-top: 0;
    }
}

.link__btn {
    display: inline-block;
    width: calc(100% / 3);
    overflow: hidden;
    cursor: pointer;
}

@media (max-width: 870px) {
    .link__btn {
        width: 100%;
    }
}

.link__item {
    width: calc(100% - 40px);
    overflow: hidden;
    margin-left: 20px;
    margin-right: 20px;
}

@media (max-width: 1200px) {
    .link__item {
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-top: 40px;
    }
}

@media (max-width: 870px) {
    .link__item {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

.link__item-img {
    width: 100%;
    transition: ease .6s;
}

.link__btn:hover .link__item-img {
    transform: scale(1.1);
}

.link__item-inner {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #00a0d2 0%, #0066a0 100%);
    padding-left: 20px;
    padding-top: 54px;
    padding-bottom: 54px;
    padding-right: 20px;
    position: relative;
}

@media (max-width: 1200px) {
    .link__item-inner {
        padding-left: 16px;
        padding-bottom: 36px;
        padding-top: 36px;
        padding-right: 16px;
    }
}

.link__item-tag {
    position: absolute;
    top: -12px;
}

.link__item-ttl {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFF;
}

@media (max-width: 1200px) {
    .link__item-ttl {
        font-size: 1.6rem;
    }
}

.link__item-arrow {
    width: 20px;
    height: 20px;
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: 20px;
    transition: all .6s;
}

.link__btn:hover .link__item-arrow {
    right: 10px;
}

@media (max-width: 1200px) {
    .link__item-arrow {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 870px) {
    .link__item-arrow {
        margin-right: 0;
    }
}

/* foot */

.foot {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 64px;
    margin-bottom: 64px;
}

.foot__inner {
    max-width: 1200px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* btn-back */

.btn-back {
    display: inline-block;
    text-align: center;
    border: 2px solid #00649B;
    padding-left: 48px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 32px;
    position: relative;
    overflow: hidden;
    transition: ease .2s;
    outline: none;
}

.btn-back__txt {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 2.0rem;
    font-weight: bold;
    color: #00649B;
    position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
}

.btn-back__arrow {
    display: block;
    width: 12px;
    height: 20px;
    background-image: url(../img/common/arrow-blue-single.svg);
    background-repeat: no-repeat;
    margin-top: -10px;
    margin-right: 1em;
    position: absolute;
    top: 50%;
    left: -30px;
}

.btn-back:hover .btn-back__txt {
    color: #FFF;
}

.btn-back:hover .btn-back__arrow {
    background-image: url(../img/common/arrow-white-single.svg);
}

.bgLeft::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #00649B;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}

.bgLeft:hover::before{
	transform:scale(1, 1);
    transform-origin:left top;
}

@media (max-width: 870px) {
    .btn-back {
        width: 290px;
    }

    .btn-back__txt {
        font-size: 1.6rem;
    }
}

/* btn-contact */

.btn-contact {
    display: inline-block;
    text-align: center;
    border: 2px solid #00649B;
    padding-left: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 32px;
    position: relative;
    overflow: hidden;
    transition: ease .2s;
    outline: none;
}

.btn-contact__txt {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 2.0rem;
    font-weight: bold;
    color: #00649B;
    position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
}

.btn-contact:hover .btn-contact__txt {
    color: #FFF;
}

.btn-contact:hover .btn-back__arrow {
    background-image: url(../img/common/arrow-white-single.svg);
}

@media (max-width: 870px) {
    .btn-contact__txt {
        font-size: 1.4rem;
    }
}

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

守山市トップ

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

/* link-large */

.link-large {
    margin-top: 80px;
}

.link-large__inner {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.link-large__btn {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    position: relative;
}

.link-large__ttl {
    z-index: 1;
    position: relative;
    margin-bottom: -60px;
}

@media (max-width: 870px) {
    .link-large__ttl {
        height: 70px;
        margin-bottom: -30px;
    }
}

.link-large__ttl-img {
    height: 100%;
    margin-right: auto;
}

.link-large__btn-inner {
    display: flex;
    max-width: 1400px;
    height: 480px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

@media (max-width: 1200px)  {
    .link-large__btn-inner {
        height: 400px;
    }
}

@media (max-width: 870px)  {
    .link-large__btn-inner {
        flex-direction: column-reverse;
        height: auto;
    }
}

.link-large__btn-ttl {
    display: flex;
    align-items: center;
    width: 50%;
    background: linear-gradient(to right, #00a0d2 0%, #0066a0 100%);
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 3.2rem;
    font-weight: bold;
    color: #FFF;
    padding-left: 60px;
    padding-right: 60px;
    position: relative;
}

@media (max-width: 1200px)  {
    .link-large__btn-ttl {
        font-size: 2.4rem;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 870px)  {
    .link-large__btn-ttl {
        width: 100%;
        font-size: 1.8rem;
        padding-left: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-right: 30px;
    }
}

.link-large__btn-ttl::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/common/arrow-white.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: -9px;
    position: absolute;
    top: 50%;
    right: 60px;
    transition: all .6s;
}

.link-large__btn:hover .link-large__btn-ttl::after {
    right: 50px;
}

@media (max-width: 1200px) {
    .link-large__btn-ttl::after {
        right: 40px;
    }

    .link-large__btn:hover .link-large__btn-ttl::after {
        right: 30px;
    }
}

@media (max-width: 870px) {
    .link-large__btn-ttl::after {
        width: 15px;
        height: 15px;
        right: 30px;
    }

    .link-large__btn:hover .link-large__btn-ttl::after {
        right: 20px;
    }
}

.link-large__btn-imgArea {
    width: 50%;
    overflow: hidden;
}

@media (max-width: 870px) {
    .link-large__btn-imgArea {
        width: 100%;
        height: 240px;
    }
}

.link-large__btn-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease .6s;
}

.link-large__btn:hover .link-large__btn-img {
    transform: scale(1.1);
}

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

New Work Style

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

@media (max-width: 870px) {
    .top-newworkstyle {
        margin-top: 65px;
    }
}


.top-newworkstyle__inner {
    display: flex;
    flex-direction: column-reverse;
}

@media (max-width: 870px) {
    .top-newworkstyle__inner {
        display: block;
    }
}

.top-newworkstyle__body {
    display: flex;
    align-items: center;
    width: calc(60% - 40px);
    margin-top: -160px;
    position: relative;
}

@media (max-width: 870px) {
    .top-newworkstyle__body {
        width: 100%;
        margin-top: 0;
    }
}

.top-newworkstyle__body-inner {
    display: inline-block;
    z-index: 1;
    width: 100%;  
    background: linear-gradient(to right, #00a0d2 0%, #0066a0 100%);
    padding-left: 100px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 40px;
}

@media (max-width: 1200px) {
    .top-newworkstyle__body-inner {
        padding-left: 40px;
    }
}

@media (max-width: 870px) {
    .top-newworkstyle__body-inner {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.top-newworkstyle__num {
    display: block;
    font-family: "Noto Sans", sans-serif;
    font-weight: 100;
    font-size: 24rem;
    line-height: 1.0;
    color: #00a0d2;
    position: absolute;
    right: 40px;
    z-index: 1;
}

@media (max-width: 870px) {
    .top-newworkstyle__num {
        font-size: 16rem;
        bottom: 20px;
        right: 0;
    }
}

.top-newworkstyle__ttl {
    font-family: "Noto Serif", serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: #99DDFF;
}

.top-newworkstyle__jp-ttl {
    font-size: 2.2rem;
    font-weight: 600;
    color: #99DDFF;
}

@media (max-width: 1200px) {
    .top-newworkstyle__ttl {
        font-size: 3.0rem;
    }

    .top-newworkstyle__jp-ttl {
        font-size: 1.6rem;
    }
}

@media (max-width: 870px) {
    .top-newworkstyle__ttl {
        font-size: 2.6rem;
        white-space: normal;
    }
}

.top-newworkstyle__lead {
    font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
    font-size: 3.0rem;
    font-weight: 600;
    line-height: 1.5;
    color: #FFF;
    padding-top: 24px;
}

@media (max-width: 1200px) {
    .top-newworkstyle__lead {
        font-size: 2.8rem;
    }
}

@media (max-width: 870px) {
    .top-newworkstyle__lead {
        font-size: 2.4rem;
    }
}

.top-newworkstyle__img {
    width: 100%;
    height: 720px;
    object-fit: cover;
}

@media (max-width: 870px){
    .top-newworkstyle__img {
        height: 500px;
    }
} 

.top-newworkstyle__labelArea {
    margin-left: 30px;
    margin-right: 100px;
}

@media (max-width: 1200px) {
    .top-newworkstyle__labelArea {
        margin-right: 30px;
    }
}

.top-newworkstyle__label {
    display: block;
    width: calc(40% - 50px);
    font-size: 1.4rem;
    margin-left: auto;
    margin-top: 16px;
    margin-right: 0;
}

@media (max-width: 870px) {
    .top-newworkstyle__label {
        width: 100%;
        margin-left: 0;
        margin-top: 16px;
    }
}

/* newworkstyle__img-group */

.gallery__inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 870px) {
    .gallery__inner {
        display: block;
        padding-left: 30px;
        padding-right: 30px;
        
    }
}

.gallery__imgArea {
    width: calc(50% - 80px);
    margin-left: 40px;
    margin-top: 40px;
    margin-right: 40px;
}

@media (max-width: 870px) {
    .gallery__imgArea {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

.gallery__imgArea:first-child,.gallery__imgArea:nth-child(2) {
    margin-top: 0;
}

@media (max-width: 870px) {
    .gallery__imgArea:nth-child(2) {
        margin-top: 40px;   
    }
}

.gallery__img-unit {
    text-align: left;
    margin-top: 0;
}

.gallery__img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__img-label {
    display: inline-block;
    font-size: 1.4rem;
    margin-top: 16px;
}

.gallery__img-label-large {
    display: block;
    font-size: 1.4rem;
    margin-top: 16px;
    margin-left: 40px;
    margin-right: 40px;
}

@media (max-width: 870px) {
    .gallery__img-label-large {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

.profile {
    max-width: 1400px;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 870px)  {
    .profile {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.profile__inner {
    display: flex;
    max-width: 784px;
    margin-left: auto;
}

.profile__img {
    height: 100%;
}

@media (max-width: 870px) {
    .profile__img {
        width: 100px;
        height: 100px;
    }
}

.profile__body {
    margin-left: 24px;
}

.profile__ttl {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 0;
    color: #00a0d2;
}

.profile__txt {
    font-size: 1.4rem;
    margin-top: 16px;
}