@charset "UTF-8";
/* ロード画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #0bd;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader {
  /* margin-right: auto;
  margin-left: auto; */
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* ロードここまで */
/* ファーストビュー */
#mask path{
  fill:none;
  stroke:#fff;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-width:16px;
  stroke-dasharray: 1500;
  stroke-dashoffset:1500;
}
.mainImage{
  max-width: 1700px;
  width: 90vw;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  position: relative;
  height: 100vh;
}
.mainImageText{
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 0;
  width: 60vw;
  max-width: 800px;
  z-index: 5;
  height: 100vh;
}
.ltrAnime{
  position: relative;
}
.ltrMask, .ttbMask{
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.chiikino{
  width: 90%;
  margin-top: 1rem;
}
.mainImageSlide,
.mainImageSlide .splide{
  height: 100vh;
  overflow: hidden;
}
.mainImageSlide{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 50vw;
  max-width: 930px;
  position: absolute;
  right: 0;
}
.splide{
  margin-right: 2rem;
}

.splide__slide img{
  width: 100%;
  height: auto;
  border-radius: 1rem;
  /* margin-bottom: 1rem; */
}
.slide-a{
  width: 40%;
  opacity: 0.7
}
/* ファーストビューここまで */


img {
    max-width: 100%;
    height: auto;
    /*高さ自動*/
    vertical-align: top;
    width: 100%;
}

a {
    display: block;
    text-decoration-line: none;
    color: #333;
    transition: all .2s;
}

a:hover {
    opacity: 80%;
}


/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html ,*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 62.5%;
}

body {
    color: #333;
    /* font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif; */
    font-family: 'Noto Sans JP', sans-serif;
    background: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    margin: 0;
    padding: 0;
    text-align: justify;
}



.wrap {
    overflow: hidden;
}

/* pc版の時はクリックで電話がかからないように */
@media(min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
        color: #fff;
    }
}


/* ブレイクポイント設定 */
/*-- PC版表示CSS  --*/
.pc {
    display: block;
}

.sp {
    display: none;
}

/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* 1040 */
.pc-1040 {
    display: block;
}

.sp-1040 {
    display: none;
}

/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 1040px) {
    .pc-1040 {
        display: none;
    }

    .sp-1040 {
        display: block;
    }
}

/* 共通
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container-1400 {
    margin: 0 auto;
    max-width: 1480px;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

.container-1240 {
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

.container-1040 {
    margin: 0 auto;
    max-width: 1080px;
    padding: 0 20px;
    width: 100%;
    position: relative;

}

.column-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 5rem;
}

.column-2-item {
    width: 50%;
}

/* 1280px以下の表示 */
@media (max-width : 1280px) {
    .column-2 {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .column-2-item {
        width: 100%;
    }
}

/* 768px以下の表示 */
@media (max-width : 768px) {}

/* 共有マージン */
.margin-tb-1 {
    margin: 50px auto;
}

.margin-tb-2 {
    margin: 80px auto;
}

.margin-tb-3 {
    margin: 100px auto;
}

.margin-tb-4 {
    margin: 150px auto;
}

.margin-tb-5 {
    margin: 180px auto;
}

.margin-tb-6 {
    margin: 200px auto;
}

/* 上マージン */
.margin-t-1 {
    margin-top: 50px;
}

.margin-t-2 {
    margin-top: 80px;
}

.margin-t-3 {
    margin-top: 100px;
}

.margin-t-4 {
    margin-top: 150px;
}

/* 下マージン */
.margin-b-1 {
    margin-bottom: 50px;
}

.margin-b-2 {
    margin-bottom: 80px;
}

.margin-b-3 {
    margin-bottom: 100px;
}

.margin-b-4 {
    margin-bottom: 120px;
}

.margin-b-5 {
    margin-bottom: 150px;
}

.margin-b-6 {
    margin-bottom: 180px;
}

/* パディング */
.padding-tb-1 {
    padding: 50px 0;
}

.padding-tb-2 {
    padding: 80px 0;
}

.padding-tb-3 {
    padding: 100px 0;
}

.padding-tb-4 {
    padding: 120px 0;
}

.padding-tb-5 {
    padding: 150px 0;
}

.padding-b-1 {
    padding-bottom: 50px;
}

.padding-b-2 {
    padding-bottom: 80px;
}

/* 1280px以下の表示 */
@media (max-width : 1280px) {
    .margin-tb-1 {
        margin: 30px auto;
    }

    .margin-tb-2 {
        margin: 60px auto;
    }

    .margin-tb-3 {
        margin: 75px auto;
    }

    .margin-tb-4 {
        margin: 120px auto;
    }

    .margin-tb-5 {
        margin: 150px auto;
    }

    .margin-tb-6 {
        margin: 120px auto;
    }

    /* 上マージン */
    .margin-t-1 {
        margin-top: 30px;
    }

    .margin-t-2 {
        margin-top: 60px;
    }

    .margin-t-3 {
        margin-top: 75px;
    }

    .margin-t-4 {
        margin-top: 120px;
    }

    /* 下マージン */
    .margin-b-1 {
        margin-bottom: 30px;
    }

    .margin-b-2 {
        margin-bottom: 60px;
    }

    .margin-b-3 {
        margin-bottom: 75px;
    }

    .margin-b-4 {
        margin-bottom: 100px;
    }

    .margin-b-5 {
        margin-bottom: 120px;
    }

    .margin-b-6 {
        margin-bottom: 120px;
    }

    /* パディング */
    .padding-tb-1 {
        padding: 30px 0;
    }

    .padding-tb-2 {
        padding: 60px 0;
    }

    .padding-tb-3 {
        padding: 75px 0;
    }

    .padding-tb-4 {
        padding: 100px 0;
    }

    .padding-tb-5 {
        padding: 120px 0;
    }

    .padding-b-1 {
        padding-bottom: 30px;
    }

    .padding-b-2 {
        padding-bottom: 60px;
    }
}

/* 768px以下の表示 */
@media (max-width : 768px) {
    .margin-tb-1 {
        margin: 10px auto;
    }

    .margin-tb-2 {
        margin: 20px auto;
    }

    .margin-tb-3 {
        margin: 30px auto;
    }

    .margin-tb-4 {
        margin: 40px auto;
    }

    .margin-tb-5 {
        margin: 50px auto;
    }

    .margin-tb-6 {
        margin: 60px auto;
    }

    /* 上マージン */
    .margin-t-1 {
        margin-top: 15px;
    }

    .margin-t-2 {
        margin-top: 25px;
    }

    .margin-t-3 {
        margin-top: 40px;
    }

    .margin-t-4 {
        margin-top: 50px;
    }

    /* 下マージン */
    .margin-b-1 {
        margin-bottom: 15px;
    }

    .margin-b-2 {
        margin-bottom: 25px;
    }

    .margin-b-3 {
        margin-bottom: 40px;
    }

    .margin-b-4 {
        margin-bottom: 50px;
    }

    .margin-b-5 {
        margin-bottom: 60px;
    }

    .margin-b-6 {
        margin-bottom: 80px;
    }

    /* パディング */
    .padding-tb-1 {
        padding: 15px 0;
    }

    .padding-tb-2 {
        padding: 30px 0;
    }

    .padding-tb-3 {
        padding: 40px 0;
    }

    .padding-tb-4 {
        padding: 60px 0;
    }

    .padding-tb-5 {
        padding: 80px 0;
    }

    .padding-b-1 {
        padding-bottom: 15px;
    }

    .padding-b-2 {
        padding-bottom: 30px;
    }
}





.title-tag {
    display: flex;
    align-items: center;
}

.title-tag img {
    display: block;
    width: 27px;
    height: 17px;
}

.title-tag p {
    tab-size: 14px;
    font-weight: bold;
    line-height: 2.1;
    letter-spacing: 0.06em;
    margin-left: 14px;
    margin-right: 14px;
    color: #008EB3;
}

/* ヘッダー -------------------------- */
header{
  position: fixed;
  z-index: 9999;
  width: 100%;
}
.header-pc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #fff;
    vertical-align: middle;
    height: 75px;
    position: fixed;
    z-index: 10;
}

/* ロゴのアニメーション------------- */
.logo-pc {
    /* width: calc(100% + 50px); */
    /* margin: 0 -50px -130px 60px; */
}

.logo-pc a {
    width: 290px;
    display: block;
    transition: all 0.2s ease;
    margin: 20px -50px -100px 60px;
}

.logo-pc a.is-small {
    width: 180px !important;
    margin: 0 0px 0px 60px;
}




.header-pc ul {
    margin-right: 60px;
    display: flex;
    justify-content: space-between;
    column-gap: 5rem;
}

.header-pc li {
    /* display: inline-block; */
    /* width: 100px; */
    list-style: none;
}

.header-pc li a {
    color: #333;
    line-height: 3.8;
    letter-spacing: 0.038em;
    font-size: 1.5rem;
}

/*----spヘッダー ハンバーガーボタン------------*/
.back-fff {
    background-color: #fff;
    height: 70px;
    width: 100%;
    position: fixed;
    z-index: 9;
}

.header-sp {
    display: flex;
    height: 70px;
    margin-left: 10px;
    position: fixed;
    z-index: 10;
}

.logo-sp {
    display: flex;
    align-items: center;
}

.logo-sp img {
    height: 40px;
    display: flex;
    align-items: center;
}

.hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 10px;
}

.hamburger span:nth-child(2) {
    top: 20px;
}

.hamburger span:nth-child(3) {
    top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    width: 0px;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
    background: #333;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.hamburger.active span:nth-child(1) {
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
}

.hamburger.active span:nth-child(3) {
    -webkit-transform: translateY(-16px) rotate(90deg);
    -ms-transform: translateY(-16px) rotate(90deg);
    -o-transform: translateY(-16px) rotate(90deg);
    transform: translateY(-16px) rotate(90deg);
}


nav.global-menu-sp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    /* background: #EDECFC; */
    /* background: rgba(0, 0, 0, 0.7); */
    background-color: #fff;
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
}

nav.global-menu-sp ul {
    margin: 0 auto;
    width: 100%;
}

nav.global-menu-sp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
}

nav.global-menu-sp ul li:last-child {
    padding-bottom: 0;
}

nav.global-menu-sp ul li:hover {
    /* background: #ddd; */
}

nav.global-menu-sp ul li a {
    display: block;
    color: #333;
    padding: 1.1em 0;
    text-decoration: none;
    text-align: center;
}

/* このクラスを、jQueryで付与・削除する */
nav.global-menu-sp.active {
    opacity: 100;

}

nav.global-menu-sp {
    visibility: hidden;
    /* max-width: 400px; */
    margin-left: auto;
    right: 0;
    /* padding: 0 40px; */
    margin-top: 72px;
}

nav.global-menu-sp ul li a {
    padding: 20px 40px;
}

nav.global-menu-sp.active {
    opacity: 100;
    visibility: visible;
    /* max-width: 400px; */
    margin-left: auto;
    right: 0;
    /* padding: 0 40px; */
    margin-top: 0px;
}

/* ここからメイン */


main img {
    width: 100%;
}

/* ここからトップのアバウト */
.top-about {}

.top-about-area {
    padding: 100px 0 0 0px;
    margin-left: auto;
    max-width: 550px;
}

.top-about-area-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.5;
}

.about-btn {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    background: transparent;
    padding: 22px 0px;
    border: 2px solid #004690;
    position: relative;
    z-index: 1;
    transition: all .5s;
    text-align: center;
}

.about-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #004690;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .2s;
}

.about-btn:hover {
    color: #fff;
}

.about-btn:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

.about-btn::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: solid 3px #333;
    border-right: solid 3px #333;
    position: absolute;
    top: 38px;
    transform: rotate(45deg);
    transition: all .5s;

}

.about-btn:hover::after {
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
}
.light-btn{
  border-color: #008EB3;
}
.light-btn.about-btn::before{
  background: #008EB3;
}
.item-img {
    /* padding-right: 20px; */
    border-radius: 2rem
}

/* 1280px以下の表示 */
@media (max-width : 1280px) {
    .top-about-area {
        padding: 0px 0 0 0px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
        max-width: 550px;
    }



    .item-img {
        display: block;
        padding-right: 0px;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* 768px以下の表示 */
@media (max-width : 768px) {
    main {
        margin-top: 70px;
    }

    .top-about-area {
        padding: 0px 0 0 0px;
        margin-left: auto;
        margin-top: 20px;
        /* max-width: 335px; */
    }

    .top-about-area-title {
        font-size: 34px;
        font-weight: bold;
        margin-bottom: 0px;
    }
}

/* トップ ビジネス------------------------------ */
.top-business {
    background-color: #1D456F;
    padding: 100px 20px;
}

.business-title {
    max-width: 500px;
    margin: 0 auto 50px;
}

.business-title img {
    display: block;
}

.business-title p {
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0.06em;
    text-align: center;
    position: relative;
}

.business-title p:before {
    display: inline-block;
    position: absolute;
    content: '';
    bottom: -15px;
    /*下線の上下の位置*/
    left: 50%;
    width: 50px;
    /*下線の幅*/
    height: 3px;
    /*下線の太さ*/
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    /*位置の調整*/
    background-color: #fff;
    /*下線の色*/
}

/* ビジネス　カード */
.top-business-card-area {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 10px;
}

.top-business-card {
    width: calc(97% / 3);
    background-color: #fff;
    position: relative;
    padding-bottom: 80px;
}

.top-business-card-description {
    padding: 40px 30px 50px 30px;
    margin-bottom: 20px;
}

.top-business-card-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}

.top-business-card-text {
    font-size: 16px;
    line-height: 2.25;
}


/* ボタン https://www.pressman.ne.jp/archives/19230#arrow-sample5-2 */
.top-business-card-btn {
    margin: 0px 0px 0px 0;
    text-align: center;
    /* padding-bottom: 60px; */
    position: absolute;
    top: 90%;
    left: 45%;
    transform: translate(-90%, -50%);
    -webkit-transform: translate(-90%, -50%);
    -ms-transform: translate(-90%, -50%);
}

.top-business-card-btn a {
    margin: 30px auto;
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;

}

.top-business-card-btn a::before,
.top-business-card-btn a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.top-business-card-btn a::before {
    width: 70px;
    height: 70px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    border: solid 5px #008EB3;
}

.top-business-card-btn a::after {
    left: 20px;
    width: 25px;
    height: 25px;
    border-top: 5px solid #008EB3;
    border-right: 5px solid #008EB3;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* 1280px以下の表示 */
@media (max-width : 1280px) {
    .top-business-card-area {
        display: flex;
        justify-content: center;
        flex-direction: column;
        row-gap: 20px;
        column-gap: 10px;
    }

    .top-business-card {
        max-width: 700px;
        width: calc(100% / 1);
        background-color: #fff;
        position: relative;
        padding-bottom: 80px;
        margin: 0 auto;
    }
}

/* 768px以下の表示 */
@media (max-width : 768px) {

    .top-business-card-description {
        padding: 20px;
        margin-bottom: 20px;
    }


}



/* トップ リクルート------------------------------- */
.top-recruit {}

/* トップ トピックス------------------------------- */
.top-topics-section {
    background-image: url(../img/bg.png);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 20px;
}

.top-topics-section::before {
    content: "";
    background: rgba(222, 227, 232, 0.78);
    /* 半透明の背景色 */
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.top-topics {
    padding: 60px 100px;
    width: 100%;
    background-color: #fff;
    border-radius: 36px;
}

/* ニュース */
.top-topics-news {}


/* https://www.nowte.net/ui/ui-news/ */
.news-list {
    list-style: none outside;
    margin: 0;
    padding: 0;
}

.news-list .item a {
    display: flex;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #DEE3E8;
    padding: 20px 10px;
}

.news-list .item .date {
    margin: 0;
    min-width: 180px;
    font-size: 16px;
    color: #818181;
    padding: 0 20px 0 0;
}

.news-list .item .title {
    margin: 0;
    width: 100%;
    color: #333;
}

.news-list .item a:hover .title {
    opacity: 0.8;
}

@media screen and (max-width: 1280px) {
    .top-topics {
        max-width: 700px;
        margin: 0 auto;
        padding: 30px 50px;
    }

    .news-list .item a {
        flex-wrap: wrap;
    }

    .news-list .item .date {
        min-width: 100px;
    }

    .news-list .item .title {
        margin-top: 10px;
    }
}

/* 768px以下の表示 */
@media (max-width : 768px) {
    .top-topics-section {
        background-image: url(../img/bg.png);
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 50px 0px;
    }

    .top-topics {
        /* max-width: 335px; */
        margin: 0 auto;
        padding: 30px 20px;
    }
    .splide{
      margin-right: 0;
    }
    .slide-a{
      display: none;
    }
}




/* トピックス 過去のお知らせ */
.topics-arrow-btn-area {
    text-align: right;
}

.topics-arrow-btn {
    position: relative;
    display: inline-block;
    padding: 0 56px 0 0px;
    color: #333;
    vertical-align: middle;
    text-decoration: none;
    font-size: 20px;
    text-align: right;
}

.topics-arrow-btn::before,
.topics-arrow-btn::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.topics-arrow-btn::before {
    width: 32px;
    height: 32px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    border: solid 1px #333;
}

.topics-arrow-btn::after {
    right: 13px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* トップ インスタグラム */
.top-inst-title {
    max-width: 645px;
    margin: 150px auto 80px;
}

/* 1280px以下の表示 */
@media (max-width : 1280px) {}

/* 768px以下の表示 */
@media (max-width : 768px) {
    .top-inst-title {
        max-width: 335px;
        margin: 50px auto 50px;
    }
}

.top-inst-area {}

/* フッター */
footer {
    background-color: #333;
    color: #fff;
    padding: 100px 0 50px;
}

.footer-item-left {
    font-size: 20px;
    line-height: 1.8;
}

.footer-item-right {}

.footer-item-right p {
    font-size: 20px;
    line-height: 1.8;
}

/*フッター　コンタクトボタン  */
.footer-contact-bg {
    background-color: #fff;
}

.footer-contact-btn {
    color: #333;
    border: 2px solid #707070 !important;
}

.footer-contact-btn::after {
    border-top: solid 3px #333 !important;
    border-right: solid 3px #333 !important;
}

.footer-contact-btn:hover::after {
    border-top: solid 3px #fff !important;
    border-right: solid 3px #fff !important;
}

/* フッター　プライバシー */
.footer-privacy-section {
    display: flex;
    justify-content: center;
}

.footer-privacy-section a {
    display: inline-block;
    font-size: 16px;
    line-height: 2.25;
    color: #fff;
}

.footer-privacy-section a:hover {
    opacity: 0.8;
}

.footer-privacy-section p {
    margin: 0 20px;
    color: #707070;
}

.copyright {
    font-size: 10px;
    text-align: center;
    margin-top: 50px;
}
address{
  font-style: normal;
}


/* 1280px以下の表示 */
@media (max-width : 1280px) {
    footer {
        padding: 50px;
    }

    .footer-item-left {
        max-width: 550px;
        margin: 0 auto;
    }

    .footer-item-right {
        max-width: 550px;
        margin: 30px auto 0;
    }
}

/* 768px以下の表示 */
@media (max-width : 768px) {
    footer {
        padding: 50px 0px 20px;
    }

    .footer-privacy-section a {
        display: inline-block;
        font-size: 12px;
        line-height: 1.5;
        color: #fff;
    }

    .footer-item-left {
        max-width: 335px;
        margin: 0 auto;
        font-size: 16px;
    }

    .footer-item-right {
        max-width: 335px;
        margin: 30px auto 0;
    }

    .footer-item-right p {
        font-size: 16px;
    }

    .copyright {
        font-size: 10px;
        text-align: center;
        margin-top: 20px;
    }
}
.head-section{
  margin-bottom: 10rem;
}
.head-section-wrap{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10rem;
}
.head-img{
  width: 40vw;
  border-radius: 2rem;
}

.head-img img{
  border-radius: 2rem;
}
.company-center{
  text-align: center;
  margin-bottom: 5rem;
}
.company-policy h3{
  font-size: 3rem;
}
.message-section h4{
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.table_list{
  display: flex;
  flex-wrap: wrap;
}
.table_list dt{
  flex-basis: 30%;
  max-width: 20rem;
}
.table_list dd{
  margin-left: 0;
  flex-basis: calc(100% - 30%);
  flex-grow: 1;
}
.table_list dt,
.table_list dd{
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
.locolmn-2,.locolmn-3{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  grid-gap: 5rem;
  margin-bottom: 5rem;
}
.locolmn-3{
  flex-wrap: wrap;
  grid-gap: 4rem;
}
.colum-2-item{
  flex-basis: 50%;
}
.ad-house dt{
  border-bottom: 1px solid #333;
  font-size: 2rem;
  font-weight: bold;
}
.ad-number dt{
  font-weight: bold;
}
.locolmn-3-item{
  flex-basis: 30%;
}
.locolmn-3-item span{
  margin-right: 1rem;
}
.center-title{
  text-align: center;
}
.center-title h2 img{
  height: 15rem;
}
.center-title h2 span{
  color: #008EB3;
  font-size: 2.5rem;
}
.center-title h3{
  font-size: 2.5rem;
}
.sdgs-colmn{
  display: grid;
  grid-gap: 3rem;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
}
.sdgs-card{
  line-height: 1.5;
}
.sdgs-card dt img{
  height: 200px;
  object-fit: cover;
}
.sdgs-card dd:first-of-type{
  font-weight: bold;
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
}
.ses-plan dt{
  font-size: 2rem;
  font-weight: bold;
  margin-top: 1rem;;
}
.colmn-3, .colmn-5{
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  justify-content: center;
  flex-direction: row;
}
.colmn-3{
  --threshold: 50rem;
}
.colmn-3card{
  flex-grow: 1;
  flex-basis: calc((var(--threshold) - 100%) * 999);
  line-height: 1.6;
  max-width: 50rem;
}
.colmn-3card dt{
  text-align: center;
}
.colmn-3card dt img{
  max-width: 25rem;
}
.colmn-3card dd:first-of-type,
.colmn-5card dd:first-of-type{
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.colmn-5card{
  width: 20rem;
  line-height: 1.6;
}
.colmn-5card dt img{
  border-radius: 2rem;
}
.parallax-box{
  position: relative;
}
.parallax-back{
  height: 35rem;
  overflow: hidden;
}
.parallax-back img{
  height: auto;
  min-height: 40rem;
  object-fit: cover;
}
.parallax-front{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.parallax-front.onlineshop{
  background-color: rgba(0,0,0,0.5); /*半透明のフィルターをかける*/
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.onlineshop .about-btn{
  background-color: #fff;
}
.rec-head{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 1rem;
}

.rechead-content{
  max-width: 800px;
  background: rgba(255 255 255 / 0.7);
  backdrop-filter: blur(12px);
  padding: 5rem;
}
.rechead-content > p + p{
  margin-top: 1.5rem;
}
.copy-1{
  max-height: 7.2rem;
  width: auto;
}
.copy-2{
  max-height: 11.2rem;
  width: auto;
}
.copy-3{
  max-height:28.2rem;
  width: auto;
}
.rec-bg-top{
  background: rgba(0 142 179 / 0.6);
}
.rechead-fish{
  background-image: url(../img/rechead-fish.webp);
  background-size: cover;
}
.rechead-office{
  background-image: url(../img/rechead-office.webp);
  background-size: cover;
  background-position: right;
}
.rechead-food{
  background-image: url(../img/rechead-food.webp);
  background-size: cover;
  background-position: right;
}
.rechead-gift{
  background-image: url(../img/rechead-gift.webp);
  background-size: cover;
  background-position: right;
}

.sdbox{
  border: solid 2px #008EB3;
  box-shadow: 5px 5px #008EB3;
  padding: 3rem 5rem;
}
.has-sub-title{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 3rem;
}
.has-sub-title span{
  display: inline-block;
  background-color: #008EB3;
  color: #fff;
  padding: 0 1rem;
  font-weight: normal;
  font-size: 1.7rem;
}
.checked-list{
  list-style: none;
}
.checked-list li{
  font-size: 2rem;
  margin-bottom: 1rem;
}
.checked-list li::before{
  content: '';
  display: inline-block;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  background-image: url(../img/check-circle.svg);
  background-size: contain;
  vertical-align: middle;
}
.yel-title{
  font-weight: bold;
  font-size: 1.5rem;
}
.job-card{
  position: relative;
}
.job-text{
    /* position: absolute;
    z-index: 1; */
    background-color: #fff;
    /* bottom: -50%; */
    /* top: 50%;
    left: 0; */
    width: 60%;
    min-width: 350px;
    margin-top: 20rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.job-text h4{
  font-size: 3rem;
}
.job-text p{
  margin: 3rem 0;
}
.job-img{
    position: absolute;
    top: -15rem;
    right: 0;
    z-index: -1;
    height: 100%;
    /* max-height: 100%; */
    object-fit: cover;
    width: 80%;
    /* min-width: 80vw; */
    /* text-align: right; */
    /* margin-left: auto; */
}
.job-img img{
  object-fit: cover;
  height: 100%;
}
.job-card:nth-child(2n) .job-text{
  margin-right: 0;
  margin-left: auto;
}
.job-card:nth-child(2n) .job-img{
  right: auto;
  left: 0;
}
.bg-blue{
  background-image: url(../img/bg-blue.svg);
  background-repeat: repeat;
  background-color:rgba(255,255,255,0.8);
  background-blend-mode:lighten;
  padding: 5rem 0;
}
.bg-blue.bg-yellow{
  background-image: url(../img/bg-yellow.svg);
}
.bg-blue.bg-light{
  background-image: url(../img/bg-light.svg);
  background-color:rgba(255,255,255,0.6);
}
.bg-blue.bg-deep{
  background-image: url(../img/bg-deep.svg);
  background-color:rgba(255,255,255,0.6);
}

.interview-head{
  display: flex;
  justify-content: space-between;
  margin: 5rem 0;
  align-content: center;
}
.interview-head-r{
  max-width: 40%;
}
.colmn-4{
  display: flex;
  flex-wrap: wrap;
  gap:1rem;
}
.colmn-4card{
  position: relative;
  max-width: 30rem;
  flex-basis: 48%;
}
.colmn-4card p{
  position: absolute;
  background-color: #fff;
  padding: 0 1rem;
  line-height: 1.5;
}
.belong{
  bottom: 6rem;
  font-size: 1.5rem;
}
.member-name{
  bottom: 2rem;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.qanda{
  background-color: #fff;
  padding: 5rem;
}
.question,.answer{
  display: flex;
  font-weight: bold;
  margin-top: 3rem;
}
.question{
  margin-top: 5rem;
}
.question::before,
.answer::before{
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  margin-right: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  flex-shrink: 0;
}
.question::before{
  background-image: url(../img/q.svg);
}
.answer::before{
  background-image: url(../img/a.svg);
}
.answer-text{
  font-weight: normal;
  line-height: 1.6;
}
.title-belong{
  margin-left: 14px;
}
.title-belong p{
    font-size: 2.5rem;
    font-weight: bold;
    color: #008EB3;
    margin-bottom: 2rem;
}
.yel-title-subtext{
  font-weight: normal;
}
.schedule-list-li{
  display: flex;
  flex-wrap: wrap;
  color: #707070;
  line-height: 1.4;
}
.schedule-list-li dt{
  width: 15rem;
  font-size: 2rem;
  font-weight: bold;
}
.schedule-list-li dd{
  min-width: 80%;
}
.schedule-list-li::after{
  content:'';
  display: block;
  width: 4rem;
  height: 1.5rem;
  background-image: url(../img/triangle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  flex-shrink: 0;
  margin-right: 100%;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.schedule-list-li:last-child::after{
  content: none;
}
.interview-member-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap:3rem;
  margin-top: 15rem;
  margin-bottom: 3rem;
}
.interview-member-info-l{
  flex-basis: 50%;
  flex-grow: 1;
}
.interview-member-info-l h3{
  font-size: 4rem;
  margin-bottom: 2rem;
}
.interview-member-info-r.sdbox{
  padding: 1.5rem;
  flex-basis: 50rem;
  flex-grow: 1;
  max-width: 60rem;
  margin: 0 auto;
}
.entry-year{
  color: #008EB3;
}
.topics-container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5rem;
  margin-bottom: 15rem;
}
.topics-main{
  /* width: 68%; */
  flex-basis: 0;
  flex-grow: 999;
  min-width: 60%;
}
.topics-archives-list{
  /* width: 28%; */
  flex-basis: 25rem;
  flex-grow: 1;
}
.topic-title{
  margin-bottom: 4rem;
}
.topic-title h3{
  font-size: 2.5rem;
}
.topic-content > *{
  margin-top: 2rem;
}
.topic-content{
  padding-bottom: 4rem;;
  border-bottom: 2px solid #333;
}
label, .form-input{
  display: block;
  width: 100%;
  height: 3rem;
}
label{
  margin-top: 2.5rem;
  line-height: 1.5rem;
}

textarea{
  display: block;
  width: 100%;
  height: 20rem;
}
.submit-btn{
  display: block;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  background: transparent;
  padding: 10px 0px;
  border: 2px solid #004690;
  transition: all .2s;
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.5rem;
}
.submit-btn:hover{
  color: #fff;
  background-color: #004690;
}
form{
  margin-bottom: 15rem;
  width: 100%;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

/* 1280px以下の表示 */
@media (max-width : 1280px) {
  .company-policy .column-2-item{
    text-align: center;
    margin-bottom: 5rem;
  }

}

/* 768px以下の表示 */
@media (max-width : 768px) {
  .head-img{
    display: none;
  }
  .locolmn-2{
    flex-direction: column-reverse;
  }
  .locolmn-3-item{
    flex-basis: calc(50% - 2rem);
  }
  .locolmn-3-item span{
    display: block;
    line-height: 1;
  }
  .rechead-content{
    padding: 2rem;
  }
  .sdbox,
  .qanda{
    padding: 3rem;
  }
  .mainImage .title-tag{
    font-size: 1rem;
  }

}
