@charset "UTF-8";
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

//変数管理ファイル群 サイト共通変数

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ================================================================================

// ** 初期設定
// * サイト共通の値を変数で定義

================================================================================ */
* {box-sizing: border-box;}
@font-face {
  font-family: "din";
  src: url(../font/din1451alt-G.ttf) format("truetype");
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

// ** mixin

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ================================================================================

	ブレイクポイント

================================================================================ */
/* ================================================================================

	見出し

================================================================================ */
/* ================================================================================

	2行目以降を1文字下げる (「・」で始まるpタグなどに使用)

================================================================================ */
.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* ================================================================================

	pxをvwに変換する数式

================================================================================ */
/* ================================================================================

	PCだけ表示、SPだけ表示

================================================================================ */
@media screen and (max-width: 767px) {
  .only_pc {
    display: none !important;
  }
}

.only-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
    .pc-only{ display: none !important; /* PCのみ表示 */ }
}
@media screen and (min-width: 769px) {
    .sp-only{ display: none !important; /* SPのみ表示 */ }
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

// ** 基本設定

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

//変数管理ファイル群 サイト共通変数

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ================================================================================

// ** 初期設定
// * サイト共通の値を変数で定義

================================================================================ */
@font-face {
  font-family: "din";
  src: url(../font/din1451alt-G.ttf);
}
@font-face {
  font-family: "DINBla";
  src: url(../font/DIN/DINBla);
}
@font-face {
  font-family: "DINBol";
  src: url(../font/DIN/DINBol);
}
@font-face {
  font-family: "NotoSans bold";
  src: url(../font/Noto_Sans_JP/NotoSansJP-Bold.otf);
}
@font-face {
  font-family: "NotoSans medium";
  src: url(../font/Noto_Sans_JP/NotoSansJP-Medium.otf);
}
@font-face {
  font-family: "PTSans Bold";
  src: url(../font/PT_Sans/PTSans-Bold.ttf);
}
@font-face {
  font-family: "PTSans Regular";
  src: url(../font/PT_Sans/PTSans-Regular.ttf);
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

// ** mixin

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

/* ================================================================================

	カーソルストーカー

================================================================================ */

#stalker{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000; 
    pointer-events: none;/*ストーカーがマウスカーソルとリンクとの間に挟まってクリックできなくするのを回避*/
    transition: transform 0.4s ease;/*ieの時にカクつく*/
}
#stalker .stalker__pointer{
    transition: all 0.4s ease;/*ホバーの時の変化の指定*/
    border-radius: 100%;
    background: #222;
    position: absolute;
    top: -6px;
    left: -6px;
    width: 12px;
    height: 12px;
}
#stalker.active .stalker__pointer{
    background: rgba(0,52,114,0.25);
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
}

/* ================================================================================

	ブレイクポイント

================================================================================ */
/* ================================================================================

	見出し

================================================================================ */
#loader-bg {
    display: none;
    position: fixed;
    width: 100vw;
    height: auto;
    top: 0px;
    left: 0px;
    background-color: #F7F7F7;
    z-index: 1000;
}
#loader {
    display: none;
    position: fixed;
    width: 100vw;
    height: auto;
    object-fit: contain;
    top: 0;
    left: 0;
    color: #fff;
    z-index: 2;
    overflow-x: hidden;
}    

#loader figure {
    align-items: center;
    justify-content: center;
    height: 100%;
    width: auto;
}
.loader-svg{
	position: relative;
	width: 100%;
}

#loader svg {
    overflow: inherit;
}
.svg-wrap{
    position: absolute;
    top: 40vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 30%;
}

#loader svg path{
    fill: #1C1C1C;
    stroke: #1C1C1C;
    stroke-width: 0.85px;
}

/* hover tip */
#loader:hover:after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    color: #1C1C1C;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font: 700 9px/14px Tahoma, sans-serif;
    -moz-animation: tip 8.5s forwards;
    -webkit-animation: tip 8.5s forwards;
    animation: tip 8.5s forwards;
}

@-moz-keyframes tip {
  0%, 100% {
    opacity: 0;
  }
  10%, 80% {
    opacity: 1;
  }
}
@-webkit-keyframes tip {
  0%, 100% {
    opacity: 0;
  }
  10%, 80% {
    opacity: 1;
  }
}
@keyframes tip {
  0%, 100% {
    opacity: 0;
  }
  10%, 80% {
    opacity: 1;
  }
}

/* .header__logo,
.outer_wrap{
   display: none;
} */

@media screen and (max-width: 767px){
    .inner_wrap{
        margin: 0 auto;
    }
}

/* ================================================================================

	2行目以降を1文字下げる (「・」で始まるpタグなどに使用)

================================================================================ */
.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* ================================================================================

	pxをvwに変換する数式

================================================================================ */
/* ================================================================================

	PCだけ表示、SPだけ表示

================================================================================ */
@media screen and (max-width: 767px) {
  .only_pc {
    display: none !important;
  }
}

.only-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: block;
  }
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  font-family:"NotoSans medium", "din", "DIN Alternate", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Helvetica Neue", "メイリオ", Meiryo, "Yu Gothic", YuGothic, sans-serif;
  line-height: 1.2;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  color: #222222;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 4vw;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 90vw;
    width: 90%;
  }
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
}

a {
  color: #222222;
  text-decoration: none;
  transition: all 0.4s;
}

a:hover {
  opacity: 0.7;
}

.list li {
  list-style: none;
}

#wrapper {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0 auto;
  display: block;
  overflow: hidden;
}

.main {
  width: 100%;
}
main{
  background: #fff;
}
.sidebar {
  width: 23%;
  max-width: 330px;
  min-width: 250px;
  border-left: 10px solid #858585;
}

.main__wrapper {
  width: 100%;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box {
  opacity: 0;
}


/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.error_404 {
  margin-top: 200px;
  margin-bottom: 200px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.error_text {
  font-size: 1.6rem;
  margin-top: 30px;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

ヘッダー、フッター、サイドバーのscss

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ================================================================================

// header.php

================================================================================ */
.header {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 4.6vw;
    font-size: 1.05vw;
    z-index: 999;
    border-bottom:rgba(255,255,255,0.65) 1px solid;
}
.header__logo{
  margin-left: 2vw;
}
.header__logo a img {
    height: 16.6vw;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: inherit;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.header__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
  height: 100%;
}
.header__list .menu-item {
  height: 100%;
}
.header__list .menu-item-link {
    cursor: pointer;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: color 0.4s ease-out;
    font-family: "PTSans Regular";
    letter-spacing: 2px;
}
.header__list .menu-item-blue {
    cursor: pointer;
    height: 100%;
    display: flex;
    width: 130px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    background-color: #106BAC;
    transition: color 0.4s ease-out;
    font-family: "NotoSans medium", "din", "DIN Alternate", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Helvetica Neue", "メイリオ", Meiryo, "Yu Gothic", YuGothic, sans-serif;;
    letter-spacing: 2px;
}
/*.header__menu ul li:last-child{
  margin-left: -30px;
  width: 125px;
}*/
.header__sns {
  display: flex;
  margin: 0 3vw 0 1vw;
  align-items: center;
  justify-content: space-evenly;
  width: 14vw;
  height: 100%;
  position: relative;
}
.header__list .accordion-tgt.is-close{
    display: none;
}
.header__list .accordion-tgt{
    display: block;
    position: absolute;
    background: #fff;
    padding: 20px;
}
.header__list .accordion-tgt ul li{
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.header__list .accordion-tgt ul li:last-child{
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .header__sns {
    justify-content: center;
  }
}
.header__sns a {
  margin-left: 1.2vw;
}
@media screen and (max-width: 767px) {
  .header__sns a {
    margin-left: 4vw;
    margin-right: 4vw;
  }
}
.header__sns img {
  height: auto;
}
.header__sns-f {
  width: 0.8vw;
}
@media screen and (max-width: 767px) {
  .header__sns-f {
    width: 10vw;
  }
}
.header__sns-t {
  width: 1.5vw;
}
@media screen and (max-width: 767px) {
  .header__sns-t {
    width: 10vw;
  }
}
.header__sns-i {
  width: 1.5vw;
}
@media screen and (max-width: 767px) {
  .header__sns-i {
    width: 10vw;
  }
}

.menu-item-link.headerColorScroll {
  color: #222222;
  transition: color 0.4s ease-out;
}

.header.headerScroll{
    background: #fff;
    border-bottom:#eee 1px solid;
    transition: color 0.4s ease-out;
}

.headerLogoScroll.-before {
  opacity: 0;
  transition: all 0.4s ease-out;
}

.-after {
  opacity: 0;
  transition: all 0.4s ease-out;
  position: absolute;
  right: 0vw;
  width: 10vw;
}

.headerLogoScroll.-after {
  opacity: 1;
  transition: all 0.4s ease-out;
}

.headerLogoScroll._before {
  opacity: 0;
  transition: all 0.4s ease-out;
}

._after {
  opacity: 0;
  transition: all 0.4s ease-out;
  position: absolute;
  left: 2vw;
}

.headerLogoScroll._after {
  opacity: 1;
  transition: all 0.4s ease-out;
}
.sp-header {
    display: none;
    width: 100%;
    height: 100vh;
    background: #858585;
    position: fixed;
    z-index: 990;
    top: 0;
    padding-top: 100px;
}
.sp-header.active{
    display: block;
}

.sp-header__list {
  margin: 20px;
  padding-left: 0;
}
.sp-header__list li {
  padding: 10px 0;
  font-weight: bold;
  transition: all 0.2s;
  font-size: 16px;
  border-bottom: 1px solid #fff;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.sp-header__list li:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.sp-header__list li:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
label[for="acd-check1"] {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.sp-header__list li:nth-child(4) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.sp-header__list li:nth-child(5) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.sp-header__list li:nth-child(6) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
label[for="acd-check2"] {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.sp-header__list li:nth-child(7) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.sp-header__list li:nth-child(8) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.sp-header__list li:nth-child(9) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.sp-header__list li:nth-child(10) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.sp-header__list li:nth-child(11) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.acd-content li{
  -webkit-animation-delay: unset!important;
          animation-delay: unset!important;
}
.sp-header__list li span {
  font-size: 10px;
  font-weight: 500;
}
.sp-header__list li a {
  color: #fff;
}

.spbtn {
  position: fixed;
  z-index: 999;
}
.spbtn__logo img {
  width: 150px;
  margin: -40px 0 0 0px;
}

.openbtn1 {
  display: none;
  position: fixed;
  z-index: 999;
  top: 7px;
  right: 0%;
  cursor: pointer;
  width: 50px;
  height: 50px;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .openbtn1 {
    display: block;
  }
}

/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.5s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #d7d7d7;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.mv {
  height: 100%;
}
.mv-scroll{
  height: 50%;
}
.mv__top {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #191970;
    z-index: -1;
}
/*
.mv__top::before {
	position: absolute;
	content: "";
	display: block;
	background: url(../img/dot_gray.png) center top / 4px auto repeat;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	border-top-left-radius: 2vw;
	z-index: 1;
}
*/
.mv__top video {
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    -webkit-clip-path: inset(14vh 0 14vh 0);
            clip-path: inset(14vh 0 14vh 0);
    transform: scale(1.4, 1.4);
    position: fixed;
    z-index: -1;
    opacity: 0.8;
}
.mv__top .mv__toptitle{
    position: absolute;
    top: 35vh;
    left: 10vw;
    font-size: 50px;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 5px;
    font-family: "DINBol";
    font-weight: bold;
}
.mv__top .mv__toptitle .mv__subtitle{
    display: block;
    font-size: 30px;
    margin-top:10px;
}
.mv__toptitle span{
    display: inline-block;
    opacity: 0;
    -webkit-transition: opacity 1.5s, -webkit-transform 2s;
    transition: opacity 1.5s, -webkit-transform 2s;
    transition: opacity 1.5s, transform 2s;
    transition: opacity 1.5s, transform 2s, -webkit-transform 2s;
    -webkit-transform: translate3d(65px, 0, 0);
    transform: translate3d(65px, 0, 0);
}
.load .mv__toptitle span{
    opacity: 1;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.mv__toptitle span:nth-of-type(1) {
    -webkit-transition-delay: 0.1s !important;
    transition-delay: 0.1s !important;
}
.mv__toptitle span:nth-of-type(2) {
    -webkit-transition-delay: 0.2s !important;
    transition-delay: 0.2s !important;
}
.mv__toptitle span:nth-of-type(3) {
    -webkit-transition-delay: 0.3s !important;
    transition-delay: 0.3s !important;
}
.mv__toptitle span:nth-of-type(4) {
    -webkit-transition-delay: 0.4s !important;
    transition-delay: 0.4s !important;
}
.mv__toptitle span:nth-of-type(5) {
    -webkit-transition-delay: 0.5s !important;
    transition-delay: 0.5s !important;
}
.mv__toptitle span:nth-of-type(6) {
    -webkit-transition-delay: 0.6s !important;
    transition-delay: 0.6s !important;
}
.mv__toptitle span:nth-of-type(7) {
    -webkit-transition-delay: 0.7s !important;
    transition-delay: 0.7s !important;
}
.mv__toptitle span:nth-of-type(8) {
    -webkit-transition-delay: 0.8s !important;
    transition-delay: 0.8s !important;
}
.mv__toptitle span:nth-of-type(9) {
    -webkit-transition-delay: 0.9s !important;
    transition-delay: 0.9s !important;
}
.mv__toptitle span:nth-of-type(10) {
    -webkit-transition-delay: 1.0s !important;
    transition-delay: 1.0s !important;
}
.mv__toptitle span:nth-of-type(11) {
    -webkit-transition-delay: 1.1s !important;
    transition-delay: 1.1s !important;
}
.mv__toptitle span:nth-of-type(12) {
    -webkit-transition-delay: 1.2s !important;
    transition-delay: 1.2s !important;
}
.mv__toptitle span:nth-of-type(13) {
    -webkit-transition-delay: 1.3s !important;
    transition-delay: 1.3s !important;
}
.mv__toptitle span:nth-of-type(14) {
    -webkit-transition-delay: 1.4s !important;
    transition-delay: 1.4s !important;
}
.mv__toptitle span:nth-of-type(15) {
    -webkit-transition-delay: 1.5s !important;
    transition-delay: 1.5s !important;
}
.mv__toptitle span:nth-of-type(16) {
    -webkit-transition-delay: 1.6s !important;
    transition-delay: 1.6s !important;
}
.mv__subtitle span:nth-of-type(1) {
    -webkit-transition-delay: 1.7s !important;
    transition-delay: 1.7s !important;
}
.mv__subtitle span:nth-of-type(2) {
    -webkit-transition-delay: 1.8s !important;
    transition-delay: 1.8s !important;
}
.mv__subtitle span:nth-of-type(3) {
    -webkit-transition-delay: 1.9s !important;
    transition-delay: 1.9s !important;
}
.mv__subtitle span:nth-of-type(4) {
    -webkit-transition-delay: 2.0s !important;
    transition-delay: 2.0s !important;
}
.mv__subtitle span:nth-of-type(5) {
    -webkit-transition-delay: 2.1s !important;
    transition-delay: 2.1s !important;
}
.mv__subtitle span:nth-of-type(6) {
    -webkit-transition-delay: 2.2s !important;
    transition-delay: 2.2s !important;
}
.mv__subtitle span:nth-of-type(7) {
    -webkit-transition-delay: 2.3s !important;
    transition-delay: 2.3s !important;
}
.mv__subtitle span:nth-of-type(8) {
    -webkit-transition-delay: 2.4s !important;
    transition-delay: 2.4s !important;
}
.mv__subtitle span:nth-of-type(9) {
    -webkit-transition-delay: 2.5s !important;
    transition-delay: 2.5s !important;
}
.mv__subtitle span:nth-of-type(10) {
    -webkit-transition-delay: 2.6s !important;
    transition-delay: 2.6s !important;
}
.mv__subtitle span:nth-of-type(11) {
    -webkit-transition-delay: 2.7s !important;
    transition-delay: 2.7s !important;
}
.mv__subtitle span:nth-of-type(12) {
    -webkit-transition-delay: 2.8s !important;
    transition-delay: 2.8s !important;
}

/* 手描き */
.mv__top img.tegaki{
    opacity: 0;
}
.mv__top.load img.tegaki{
    opacity: 1;
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

.scroll-mv .mv__top{
    transform: translateX(50px);
}
@media screen and (max-width: 767px) {
  .mv__top video {
    -webkit-clip-path: inset(7vh 0 7vh 0);
            clip-path: inset(7vh 0 7vh 0);
  }
}
.mv__top-copy {
  position: absolute;
  top: 33vw;
  left: 4vw;
  z-index: 980;
  font-size: 5vw;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .mv__top-copy {
    top: 83vw;
    left: 4vw;
    font-size: 8vw;
  }
}
.mv__page {
  position: relative;
  top: 0vw;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__page {
    top: 0;
  }
}
.mv__page img {
  width: 100%;
  height: 29vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .mv__page img {
    height: 50vw;
  }
}
.mv__title {
  position: absolute;
  top: 15vw;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__title {
    top: 25vw;
  }
}
.mv__title h2 {
  font-size: 2.6vw;
  color: #fff;
  text-shadow: 0px 3px 6px #00000029;
}
@media screen and (max-width: 767px) {
  .mv__title h2 {
    font-size: 5.2863436123vw;
  }
}

#breadcrumb {
  position: relative;
  max-width: none;
  width: 100%;
  padding: 16px 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #breadcrumb {
    max-width: 90%;
    margin: 0 auto;
    padding: 3.5242290749vw 0;
  }
}
#breadcrumb ul {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
#breadcrumb ul li {
  display: inline-block;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #breadcrumb ul li {
    font-size: 3.0837004405vw;
  }
}
#breadcrumb ul li + li:before {
    padding: 0 0.6em 0 0.7em;
    content: ">";
}

/* ================================================================================

// footer.php

================================================================================ */
.footer {
  background-color: #222222;
  color: #fff;
  padding-top: 2vw;
  padding-bottom: 4vw;
  padding-left: 3vw;
  padding-right: 3vw;
}
@media screen and (max-width: 767px) {
  .footer {
    font-size: 3.5242290749vw;
  }
}
.footer a {
  color: #fff;
}
.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    max-width: 1120px;
    margin: 0 auto 0vw;
}
.footer__left {
  padding: 0vw;
}
@media screen and (max-width: 767px) {
  .footer__left {
    padding-top: 10vw;
    padding-left: 0;
  }
}
.footer__left img {
  width: 15vw;
  height: auto;
  margin-top:3vw;
}
@media screen and (max-width: 767px) {
  .footer__left img {
    width: 40vw;
  }
}
.footer__nav {
  margin-top: 2.8vw;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 6vw;
  }
}
.footer__menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 2;
}
.footer__menu ul ul{
    display:block;
}
.footer__menu ul li {
    font-weight: 300;
    font-size: 0.8vw;
    position: relative;
    margin-right: 25px;
}
@media screen and (max-width: 767px) {
  .footer__menu ul li {
    font-size: 3.5vw;
    margin-right:0;
    width: 50%;
  }
  .footer__menu ul li ul li{
      width:100%;
  }
}
@media screen and (max-width: 767px) {
}
.footer__right {
  padding: 0vw;
}
@media screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
    margin-top: 50px;
  }
}
.footer__right-items {
    line-height: 2;
}
@media screen and (max-width: 767px) {
  .footer__right-items {
    margin-top: 5vw;
  }
}
.footer__right-items li {
  font-weight: 300;
  font-size: 0.8vw;
  text-indent: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__right-items li {
    font-size: 2.8vw;
    height: 7vw;
  }
}
.footer__right-items li::before {
  position: absolute;
  content: "";
  top: 0.3vw;
  left: -0.3vw;
  width: 0.5vw;
  height: 0.5vw;
  border-top: 1px solid #ffffff4d;
  border-right: 1px solid #ffffff4d;
}
@media screen and (max-width: 767px) {
  .footer__right-items li::before {
    top: 0.7vw;
    width: 1.5vw;
    height: 1.5vw;
  }
}
.footer__copy {
    text-align: start;
    font-size: 0.9vw;
    margin-top: 3vw;
    opacity: 0.3;
    max-width: 1120px;
    margin: 30px auto 0vw;
}
.footer__img{
    margin:3vw auto;
    max-width: 1120px;
    margin: 30px auto 0vw;
}
.footer__img img{
    width:30%;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 3.3039647577vw;
  }
  .footer__img{
      max-width: 50%;
  }
  .footer__img img{
      width:100%;
  }
}

#page-top {
  position: fixed;
  z-index: 9998;
  right: 10px;
}
@media screen and (max-width: 767px) {
  #page-top {
    right: 8px;
  }
}
#page-top a {
  color: #222222;
  background-color: transparent !important;
}
#page-top a svg {
  width: 40px !important;
  height: auto !important;
}

/* ================================================================================

// sidebar.php

================================================================================ */
/* ================================================================================

// Swiper

================================================================================ */
:root {
  --swiper-theme-color: #007aff;
}

:root {
  --swiper-navigation-size: 44px;
  --swiper-navigation-color: var(--swiper-theme-color);
}

:root {
  --swiper-pagination-color: var(--swiper-theme-color);
}

:root {
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
}

:root {
  --swiper-preloader-color: var(--swiper-theme-color);
}

:root {
  --swiper-navigation-color: #000000;
  --swiper-pagination-color: #ffffff;
  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
}

/* 前ページ、次ページボタンカスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  /* ボタンの幅 */
  height: 40px;
  /* ボタンの高さ */
  background-size: 40px 40px;
  /* 背景画像としてのサイズ（＝表示したい画像サイズ） */
  margin-top: -20px;
  /* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
.swiper-button-next {
    width: 8vw;
    height: 8vw;
    background-size: 8vw 8vw;
    margin-top: 2vw;
  }
}

/* 次ページボタンのスタイル */
.swiper-button-next {
  background-image: url(../img/slider_arrow.png);
  top: -327px;
  position: relative;
  left: 95%;
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    left: 90%;
    top: -75vw;
  }
}

/* 前ページボタンのスタイル */
.swiper-button-prev {
  background-image: url(../img/slider_arrow.png);
  transform: scale(-1, 1);
  /* 左右反転 */
  position: relative;
  left: unset;
  right: -2.6%;
  top: -307px;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    top: -65vw;
  }
}

.swiper-button-next::after {
  content: none;
}

.swiper-button-prev::after {
  content: none;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

各pageのscss

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ================================================================================

// front-page.php

================================================================================ */
.inner_wrap .news {
  background: rgba(255, 255, 255, 0.9);
  width: 683px;
  height: 80px;
  display: flex;
  position: relative;
  top: -80px;
  left: calc(100% - 683px);
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .inner_wrap .news {
    display: block;
    width: 80vw;
    height: 21vw;
    top: -21vw;
    left: 20vw;
  }
}
.inner_wrap .news h2 {
  color: #222222;
  font-size: 18px;
  font-weight: 300;
  position: relative;
  top: 30px;
  left: 0px;
  width: 128px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .inner_wrap .news h2 {
    font-size: 3.9647577093vw;
    top: 2vw;
    left: 0;
    width: 20vw;
  }
}
.inner_wrap .news h2:after {
  position: absolute;
  bottom: 53px;
  right: 0px;
  content: "";
  width: 1px;
  height: 32px;
  background-color: #222222;
}
@media screen and (max-width: 767px) {
  .inner_wrap .news h2:after {
    display: none;
  }
}
.inner_wrap .news__items {
  width: 512px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .inner_wrap .news__items {
    width: 80vw;
  }
}
.news__list {
    height: 80px;
    font-size: 15px;
    display: flex;
    animation: animate-banner 20s linear infinite;
    display: flex;
}
/* 横にスクロールさせるアニメーション */
@keyframes animate-banner {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 767px) {
  .news__list {
    font-size: 3.3039647577vw;
    height: 16vw;
  }
}
.news__list li {
    display: flex;
    height: 80px;
    align-items: center;
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .news__list li {
    height: 16vw;
  }
}
.news__list-date {
  padding: 0 30px 0 40px;
}
@media screen and (max-width: 767px) {
  .news__list-date {
    padding: 0 3vw 0 5vw;
  }
}
.news__list-title {
    width: 370px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .news__list-title {
    width: 55vw;
  }
}
.news__more {
    position: relative;
    width: 43px;
    height: 80px;
    background-color: #858585;
}
.news__more:after {
    position: absolute;
    bottom: 16px;
    right: 20px;
    content: "";
    width: 2px;
    height: 48px;
    background-color: #fff;
}
.news__more:before{
    position: absolute;
    top: 10%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #fff;
    content: "";
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-animation: pc-scroll 2.3s cubic-bezier(0, 0, 0.38, 0.97) infinite;
    animation: pc-scroll 2.3s cubic-bezier(0, 0, 0.38, 0.97) infinite;
}
@-webkit-keyframes pc-scroll {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    45% {
        opacity: 1;
        -webkit-transform: translate(-50%, 50px);
        transform: translate(-50%, 50px);
    }
    70% {
        opacity: 0;
        -webkit-transform: translate(-50%, 50px);
        transform: translate(-50%, 50px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, 50px);
        transform: translate(-50%, 50px);
    }
}

@keyframes pc-scroll {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    45% {
        opacity: 1;
        -webkit-transform: translate(-50%, 50px);
        transform: translate(-50%, 50px);
    }
    70% {
        opacity: 0;
        -webkit-transform: translate(-50%, 50px);
        transform: translate(-50%, 50px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, 50px);
        transform: translate(-50%, 50px);
    }
}

@media screen and (max-width: 767px) {
  .news__more:after {
    bottom: -1.1013215859vw;
    width: 13.8vw;
    height: 0.42vw;
  }
}
@media screen and (max-width: 767px) {
  .news__more {
    display: none;
  }
}

.its {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .its {
    margin-top: 22.0264317181vw;
  }
}
.its__wrap {
    display: flex;
    justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .its__wrap {
    display: block;
  }
}
.its__keyword {
  font-size: 120px;
  width: 53%;
  text-align: start;
  letter-spacing: 0px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .its__keyword {
    font-size: 18vw;
    width: 100%;
  }
}
.its__keyword h2 {
  white-space: nowrap;
  font-weight: 300;
  font-size:1.7em;
}
.its__block {
  width: 36%;
}

.its-start{
    display: none;
}
.its-start.its-svg{
    display: block;
}
.its-svg g{
    fill:#353535;
}
#svg-anime {
    fill:url(#svg-grad);
}

@media screen and (max-width: 767px) {
  .its__block {
    width: 100%;
    margin-top: 6vw;
  }
  .its__keyword h2 {
    font-size:1.2em;
  }
}
.its__block-title {
  font-size: 32px;
  line-height: 1.5;
  /* font-family:"NotoSans bold"; */
}
@media screen and (max-width: 767px) {
  .its__block-title {
    font-size: 7.0484581498vw;
  }
}
.its__block-text {
    font-size:14px;
    line-height: 2;
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .its__block-text {
    margin-top: 6vw;
  }
}

.more {
  position: relative;
  width: 100%;
  top: 60px;
  font-size: 20px;
  text-align: end;
  right: 60px;
  height: 40px;
}

.more::before{
  content: "";
  width: 24px;
  height: 1px;
  border: 0;
  position: absolute;
  top: 13px;
  right: -42px;
  background: #fff;
  z-index: 2;
  transition: all 0.4s;
}

.more::after{
  content: "";
  width: 12px;
  height: 1px;
  border: 0;
  position: absolute;
  top: 10px;
  right: -43px;
  transform: rotate(30deg);
  background: #fff;
  z-index: 3;
  transition: all 0.4s;
}

.maru {
  background-color: #222222;
  width: 40px;
  height: 40px;
  position: absolute;
  right: -51px;
  top: -7px;
  z-index: 1;
  border-radius: 20px;
}

a:hover .more::before{
    right: -66px;
    background: #222222;
    width: 40px;
}

a:hover .maru{
    width: 35px;
    height: 35px;
    background:none;
    border:#222222 1px solid;
    border-radius: 25px;
    transition-duration: 0.5s;
}

a:hover .more::after{
  right: -65px;
  background: #222222;
}

a:hover .more-a{
  opacity: unset;
}

.top-service {
  margin-top: 240px;
}
@media screen and (max-width: 767px) {
  .top-service {
    margin-top: 60vw;
  }
}
.top-service__title {
  font-size: 24px;
  font-weight: 300;
  position: relative;
}
.top-service__title::before {
  content: "";
  width: 60px;
  height: 1px;
  border: 0;
  position: absolute;
  top: 31px;
  left: 75px;
  transform: rotate(-60deg);
  background: #222222;
}
.top-service__title::after {
  position: absolute;
  color: #858585;
  font-size: 14px;
  top: 40px;
  left: 115px;
}
@media screen and (max-width: 767px) {
  .top-service__title {
    font-size: 5.2863436123vw;
  }
}
.top-service__title::after {
    content: "事業案内";
    letter-spacing: 1px;
}
.top-service__subtitle {
  font-size: 40px;
  text-align: center;
  margin-top: 56px;
  margin-bottom: 80px;
  letter-spacing: 3px;
}

/* タイトル アニメーション */

span.title {
	overflow: hidden;
	display: block;
}

/* アニメーションで傾斜がついている文字列を水平に戻す*/
span.title-trigger{
	transition: 2.1s ease-in-out;
	transform: translate3d(0,100%,0) skewY(10deg);
	transform-origin: left;
	display: block;
}
span.title-trigger.title-anime{
    transform: translate3d(0,0,0) skewY(0);
}

/* 上から下へ */
span.title-bottmom{
    transition: all 2s ease-out;
	transform: translateY(-30px);
}
span.title-bottom.title-anime{
    transform: translateY(0);
}

/* 右から左へ */
span.title-right{
    transition: all 2s ease;
	transform: translateX(-30px);
}
span.title-right.title-anime{
    transform: translateX(0);
}
.top-news__list-date span.title,
.top-news__list-title span.title{
    overflow: inherit;
}

/* 左から右へ */
span.title-left{
    transition: all 2s;
	transform: translateX(30px);
}
span.title-left.title-anime{
    transform: translateX(0);
}

/* 中央から */
span.title-center{
    transition: all 1s;
    opacity: 0;
	transform: translateX(0);
}
span.title-center.title-anime{
    opacity: 1;
    transform: translateX(0);
}


/* フェードイン */
.anime1,.anime2,.anime3,.anime4,.anime5{
    opacity:0;
}
.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:1.2s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

span.title-fade{
    transform: translate3d(0,0,0) skewY(0);
}
span.title-fade.fade-anime{
    transition: 2.1s ease-in-out;
    animation-name:fade-in;
    animation-duration: 3s;
    display: block;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .top-service__subtitle {
    font-size: 8.8105726872vw;
    margin-top: 12.3348017621vw;
    margin-bottom: 17.6211453744vw;
  }
}
.top-service__subtitle span.lead {
  font-size: 15px;
  display: block;
  font-weight: normal;
  margin-top: 24px;
  letter-spacing: 0px;
}
@media screen and (max-width: 767px) {
  .top-service__subtitle span.lead {
    margin-top: 5.2863436123vw;
    font-size: 3.3039647577vw;
  }
}
.top-service__wrap{
  display: flex;
  background-color: #85858526;
  height: 576px;
  justify-content: flex-end;
}

/* 画像ホバー */
.img-hover img{
    transition-duration: 0.5s;
}
.top-service__wrap .img-hover-wrap{
    width: 560px;
    height: 416px;
    overflow: hidden;
}
.top-service__pic.img-hover:hover img{
    transition-duration: 0.5s;
}
.top-service__pic.img-hover:hover img{
    transform: scale(1.2);
    transition-duration: 0.5s;
}

.img-eff {
    color: #d0b2c2;
    position: relative;
    display: block;
    overflow: hidden;
    text-transform: uppercase;
    width: 560px;
    height: 416px;
}
.img-eff span {
    transition: none;
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(0,153,204,0.3);
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.img-eff:before,
.img-eff:after{
    z-index: -1;
    box-sizing: border-box;
    transition: 0.5s ease-in-out;
}
.img-eff:hover {
    color: #f1e8ed;
}
.img-eff:hover span {
    width: 300%;
    height: 280%;
    overflow: hidden;
}
.img-eff:active {
    background-color: #c8a4b7;
}

@media screen and (max-width: 767px) {
    .top-service__wrap .img-hover-wrap{
        width: 100%;
        height: auto;
    }
    .top-service__wrap{
        display: block;
        height: auto;
        padding: 10px;
    }
    .top-service__wrap a{
      height: auto;
      justify-content: unset;
      flex-direction: column;
    }
    .img-eff{
        width: 100%;
    }
}
.top-service__block {
  background-color: #fff;
  width: 480px;
  margin: 120px 80px 0 0;
  height: 336px;
}
@media screen and (max-width: 767px) {
  .top-service__block {
    width: 92%;
    margin: 4% 4% 0;
    height: auto;
    padding-bottom: 12vw;
  }
}
.top-service__block .more {
  right: 100px;
  top: 30px;
}
.top-service__row {
    display: flex;
    margin: 40px 40px 0;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 767px) {
  .top-service__row {
    flex-direction: column;
    padding: 30px 0;
    margin: auto;
  }
}
.top-service__row h4 {
    font-size: 32px;
    font-weight: normal;
}
.top-service__row h4 .top-service__row-txt span.title{
    font-family:"NotoSans bold";
    letter-spacing: 1px;
}
.top-service__row h4 .anime1{
    font-family:"PTSans Regular";
    letter-spacing: 3px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-service__row h4 {
    font-size: 7.0484581498vw;
    text-align: center;
  }
}
.top-service__row h4 span.top-service__row-txt {
  display: block;
  font-size: 16px;
  margin-top: 12px;
  margin-bottom:20px;
}
@media screen and (max-width: 767px) {
  .top-service__row h4 span {
    font-size: 3.5242290749vw;
    margin-top: 2.6431718062vw;
  }
}
.top-service__row img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-top: -41px;
    margin-bottom: -10px;
}
@media screen and (max-width: 767px) {
  .top-service__row img {
    width: 30vw;
    height: auto;
    margin: 4vw auto -5vw;
  }
}
.top-service__text {
  margin: 12px 40px 0;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  line-height: 1.8;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .top-service__text {
    margin: 5vw 10vw 0;
  }
}
.top-service__pic {
  margin: 80px 0;
  width: 50%;
}

/* 画像ホバーアニメーション */

@media screen and (max-width: 767px) {
  .top-service__pic {
    margin: 0 auto 4vw;
    width: 92%;
  }
}
.top-service__pic img {
  width: 560px;
  height: 416px;
  -o-object-fit: contain;
     object-fit: contain;
}
.academy_img{
    height: 85%!important;
    margin: 5% 0 0;
    padding: 0px;
}
@media screen and (max-width: 767px) {
  .top-service__pic img {
    width: 100%;
    height: auto;
  }
	.academy_img{
	width: 80%!important;
    margin: 10%;
	}
}
.top-service__wrap:nth-of-type(odd){
  background-color: #F7F7F7;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .top-service__wrap:nth-of-type(odd) {
    flex-direction: column;
  }
}
.top-service__wrap:nth-of-type(odd) .top-service__pic {
  display: flex;
  justify-content: flex-end;
}
.top-service__wrap:nth-of-type(odd) .top-service__block {
  margin: 120px 0 0 80px;
}
@media screen and (max-width: 767px) {
  .top-service__wrap:nth-of-type(odd) .top-service__block {
    width: 92%;
    margin: 4% 4% 0;
    height: auto;
    padding-bottom: 12vw;
  }
}
.top-service__wrap:nth-of-type(odd) .top-service__row img {
  width: 88px;
  height: auto;
  margin-top: -16px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .top-service__wrap:nth-of-type(odd) .top-service__row img {
    width: 30vw;
    margin: 2vw auto 0vw;
  }
}
.top-service__wrap:nth-of-type(odd) .img-eff:before,
.top-service__wrap:nth-of-type(odd) .img-eff:after{
    margin-left: auto;
}


.top-news {
  margin: 160px auto 160px;
}

@media screen and (max-width: 767px) {
  .top-news {
    margin: 20vw auto 30vw;
    height: auto;
  }
}
.top-news__title {
    font-size: 24px;
    font-weight: 300;
    position: relative;
    font-family: "PTSans Regular";
    font-weight: bold;
    letter-spacing: 2px;
}
.top-news__title::before {
    content: "";
    width: 60px;
    height: 1px;
    border: 0;
    position: absolute;
    top: 28px;
    left: 50px;
    transform: rotate(-60deg);
    background: #222222;
}
.top-news__title::after {
    position: absolute;
    color: #858585;
    font-size: 14px;
    top: 37px;
    left: 96px;
}
@media screen and (max-width: 767px) {
  .top-news__title {
    font-size: 5.2863436123vw;
  }
}
.top-news__title::after {
  content: "最新のお知らせ";
  letter-spacing: 1px;
}
.top-news__items {
  margin: 80px auto;
  width: 66%;
}
@media screen and (max-width: 767px) {
  .top-news__items {
    margin: 22vw auto;
    width: 96%;
  }
}
.top-news__list li {
  display: flex;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .top-news__list li {
    height: 14vw;
    border-bottom: 1px solid #858585;
    margin-bottom: 5vw;
  }
}
.top-news__list-date {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .top-news__list-date {
    width: unset;
    margin-right: 6vw;
  }
}

.top-blog {
  padding: 160px 0 160px;
  height: 900px;
  background-color: #85858526;
}
@media screen and (max-width: 767px) {
  .top-blog {
    padding: 20vw 0 30vw;
    height: auto;
  }
}
.top-blog__title {
    font-size: 24px;
    font-weight: 300;
    position: relative;
    font-family: "PTSans Regular";
    font-weight: bold;
    letter-spacing: 2px;
}
.top-blog__title::before {
  content: "";
  width: 60px;
  height: 1px;
  border: 0;
  position: absolute;
  top: 31px;
  left: 64px;
  transform: rotate(-60deg);
  background: #222222;
}
.top-blog__title::after {
  position: absolute;
  color: #858585;
  font-size: 14px;
  top: 42px;
  left: 109px;
}
@media screen and (max-width: 767px) {
  .top-blog__title {
    font-size: 5.2863436123vw;
  }
}
.top-blog__title::before {
  left: 37px;
}
.top-blog__title::after {
  content: "ブログ";
  left: 83px;
  letter-spacing: 1px;
}
.top-blog__subtitle {
  font-size: 40px;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 80px;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .top-blog__subtitle {
    font-size: 8.8105726872vw;
    margin-top: 15vw;
    margin-bottom: 12vw;
  }
}
.top-blog__subtitle span.lead {
  font-size: 15px;
  display: block;
  font-weight: normal;
  margin-bottom: 12px;
  letter-spacing: 0px;
}
@media screen and (max-width: 767px) {
  .top-blog__subtitle span.lead {
    font-size: 3.3039647577vw;
  }
}
.top-blog__items {
  max-width: 1120px;
  overflow: inherit;
  padding: 0 20px;
  margin: 0 auto;
  overflow: hidden;
}
.top-blog__list {
  display: flex;
}
.top-blog__list li {
  width: 336px;
}
.top-blog__list-eyecatch img {
    width: 100%;
    height: 252px;
    -o-object-fit: cover;
    object-fit: cover;
    transition-duration: 0.8s;
}
.top-blog__list-cat {
  width: 100px;
  background: #858585;
  color: #fff;
  padding: 6px 20px 6px 12px;
  position: relative;
  top: -24px;
  left: -10px;
}
@media screen and (max-width: 767px) {
    .top-blog__list {
        display: flex;
        justify-content: flex-start;
    }
}

/* // blogアイキャッチ */
.top-blog__list-eyecatch .eyecatch-img-size{
    width: 100%;
    height: 252px;
    overflow: hidden;
}
ul.top-blog__list li a.top-blog__list-eyecatch:hover .eyecatch-img{
    transform: translate(-10px,-10px);
    transition-duration: 0.9s;
}
ul.top-blog__list li a.top-blog__list-eyecatch:hover .eyecatch-img img{
    transform: scale(1.1);
    transition-duration: 0.9s;
}
.eyecatch-bg{
    background: #333;
}
.top-blog__list-eyecatch .eyecatch-bg .eyecatch-img{
    transition-duration: 0.8s;
    width: 100%;
    height: 252px;
    overflow: hidden;
}

/* // blogボタン */
.list-btn{
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    outline: none;
    transition: ease .4s;
}
.list-btn span{
    position: relative;
    z-index: 3;
}
.top-blog__list-cat:hover .list-btn span{
    color:#fff;
}
.top-blog__list-cat:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background:#333333;
    width: 100%;
    height: 100%;
    transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}
ul.top-blog__list li a:hover .top-blog__list-cat:before{
    transform-origin:left top;
    transform:scale(1, 1);
}

.top-blog__list-date {
  color: #858585;
  margin-bottom: 20px;
}
.top-blog__list-title {
  line-height: 1.6;
}
.top-blog__list-tag {
  margin-top: 20px;
}
.top-blog__list-tag .tag-wrap{
    display: flex;
    align-items: center;
}
.top-blog__list-tag .blog-tag-img{
    margin-right: 10px;
}
.top-blog__list-tag .tag-wrap a{
    position: unset;
}
.top-blog__list-tag img {
  width: 24px;
  height: auto;
}
.top-blog__list-tag a {
  border: 1px solid #858585;
  font-size: 10px;
  padding: 4px 8px;
  margin: 0 2px 8px;
  display: inline-block;
  position: relative;
  left: 32px;
}

.top-blog .more {
  width: 1120px;
  top: 60px;
  right: 70px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-blog .more {
    width: 100%;
    top: -5vw;
    right: 20vw;
    margin: 0 auto;
  }
}

.top-recruit {
  padding: 160px 0 160px;
}
@media screen and (max-width: 767px) {
}
.top-recruit__title {
    font-size: 24px;
    font-weight: 300;
    position: relative;
    font-family: "PTSans Regular";
    font-weight: bold;
    letter-spacing: 2px;
}
.top-recruit__title::before {
  content: "";
  width: 60px;
  height: 1px;
  border: 0;
  position: absolute;
  top: 31px;
  left: 70px;
  transform: rotate(-60deg);
  background: #222222;
}
.top-recruit__title::after {
  position: absolute;
  color: #858585;
  font-size: 14px;
  top: 40px;
  left: 113px;
}
@media screen and (max-width: 767px) {
  .top-recruit__title {
    font-size: 5.2863436123vw;
  }
}
.top-recruit__title::after {
  content: "採用情報";
  letter-spacing: 1px;
}
.top-recruit__engage {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/top_DSC_5769.jpg) no-repeat 50% 35%;
  background-size: cover;
  height: 416px;
  width: 100%;
}
.top-recruit__engage::before {
	position: absolute;
	content: "";
	display: block;
	background: url(../img/dot_gray.png) center top / 4px auto repeat;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	border-top-left-radius: 2vw;
	z-index: 1;
}
.top-recruit__engage video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.ft-recruit{
    position: relative;
}
.top-recruit__engage .inner{
    position: absolute;
    width: 1120px;
    top: 0;
    left: 0;
    right: 0;
	z-index: 1;
}
@media screen and (max-width: 767px) {
    .top-recruit__engage .inner{
        width: 90%;
    }
    .top-recruit__engage {
        height: 80vw;
        width: 100%;
    }
}
.top-recruit__block {
  width: 480px;
  padding-top: 100px;
}
.top-recruit__block h2{
    color: #fff;
    font-size: 27px;
    letter-spacing: 3px;
}

@media screen and (max-width: 767px) {
  .top-recruit__block {
    width: 100%;
    padding-top: 15vw;
  }
  .top-recruit__block h2{
      font-size: 5.2863436123vw;
  }
}
.top-recruit__block img {
  width: 122px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top-recruit__block img {
    width: 36vw;
  }
}
.top-recruit__block-text {
  margin-top: 30px;
  color: #fff;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .top-recruit__block-text {
    margin-top: 6vw;
  }
}
.top-recruit__block .more {
  top: 40px;
  text-align: start;
  right: unset;
  left: 0px;
}
@media screen and (max-width: 767px) {
  .top-recruit__block .more {
    top: 12vw;
  }
}
.top-recruit__block .more::before {
  right: unset;
  left: 74px;
}
@media screen and (max-width: 767px) {
  .top-recruit__block .more::before {
    left: 20vw;
  }
}
.top-recruit__block .more::after{
  right: unset;
  left: 87px;
}
@media screen and (max-width: 767px) {
  .top-recruit__block::after .more{
    left: 23vw;
  }
    .top-recruit__block .more::after{
        left: 26%;
    }
}
.top-recruit__block .maru {
  background-color: unset;
  border: 1px solid #fff;
  border-radius: 25px;
  right: 371px;
}
@media screen and (max-width: 767px) {
  .top-recruit__block .maru {
    left: 17.5vw;
    right: auto;
  }
}
.top-recruit__block .more-a {
  color: #fff;
}
.top-recruit__block .more:hover::before {
  left: 78px;
}
.top-recruit__block .more:hover::after {
  left: 108px;
}
.top-recruit__block .more-a:hover {
  opacity: unset;
}

/* ================================================================================

// page-bcp.php

================================================================================ */
/* ================================================================================

// page-contact.php

================================================================================ */
#contact {
  width: 800px;
  border: 1px solid #222222;
  margin: 80px auto;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.wpcf7-response-output,
.wpcf7cp-progress-cover{
    display: none;
}
@media screen and (max-width: 767px) {
  #contact {
    width: 100%;
    margin: 17.6211453744vw auto;
  }
}

.form__block {
  padding: 40px 60px 0px;
}
@media screen and (max-width: 767px) {
  .form__block {
    padding: 5vw 5vw 0;
  }
}
.form__label {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .form__label {
    margin-bottom: 1.7621145374vw;
  }
}
.form__field {
  display: flex;
}
@media screen and (max-width: 767px) {
  .form__field {
    flex-direction: column;
  }
}
.form__field-must, .form__field-any {
  display: flex;
  width: 60px;
  height: 60px;
  background-color: #ff5f5f;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .form__field-must, .form__field-any {
    width: 13.2158590308vw;
    height: 5.2863436123vw;
    border-radius: 6px 6px 0 0;
    font-size: 3.3vw;
  }
}
.form__field-any {
  background-color: #b3b3b3;
}
.form__field-input {
  display: block;
  padding: 20px;
  color: #333;
  background-color: #f2f2f2;
  border: 2px solid #ddd;
  border-radius: 6px;
  width: 560px;
}
@media screen and (max-width: 767px) {
  .form__field-input {
    padding: 0vw 2vw;
    border-radius: 0 6px 6px 6px;
    width: 75vw;
    height: 8vw;
  }
}
.form__field-textarea {
  height: 150px;
  width: 670px;
  background-color: #f2f2f2;
  border: 2px solid #ddd;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .form__field-textarea {
    height: 33.0396475771vw;
    width: 75vw;
  }
}
.form__field-select {
  width: 300px;
  height: 60px;
  background-color: #f2f2f2;
  border: 2px solid #ddd;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .form__field-select {
    padding: 0vw 2vw;
    border-radius: 0 6px 6px 6px;
    width: 78vw;
    height: 8vw;
  }
}
.form__field-checkbox input[type=checkbox] {
  display: none;
}
.form__field-checkbox .wpcf7-list-item {
  display: inline-block;
  margin: 0 1rem 0 0;
}
.form__field-checkbox .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  padding: 8px 30px;
  position: relative;
  width: auto;
  background: #f2f2f2;
  border-radius: 6px;
  margin: 0 8px 16px 0;
}
@media screen and (max-width: 767px) {
  .form__field-checkbox .wpcf7-list-item-label {
    padding: 4vw 6vw;
    margin: 0 4vw 3vw 0;
  }
}
.form__field-checkbox .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.form__field-checkbox .wpcf7-list-item-label::after {
  border-right: 6px solid #000000;
  border-bottom: 3px solid #000000;
  content: "";
  display: block;
  height: 20px;
  left: 7px;
  margin-top: -16px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 9px;
}
.form__field-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label {
  background: #ff5f5f;
  color: #fff;
}
.form__field-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border-color: #666;
}
.form__field-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.form__field-radio input[type=radio] {
  display: none;
}
.form__field-radio .wpcf7-list-item {
  display: block;
  margin: 0 1rem 0 0;
}
.form__field-radio .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
  background: #f2f2f2;
  border-radius: 6px;
  margin: 0 8px 16px 0;
}
@media screen and (max-width: 767px) {
  .form__field-radio .wpcf7-list-item-label {
    padding: 4vw 6vw;
    margin: 0 4vw 3vw 0;
  }
}
.form__field-radio .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.form__field-radio .wpcf7-list-item-label::after {
  background: #ff5f5f;
  border-radius: 50%;
  content: "";
  display: block;
  height: 8px;
  left: 10px;
  margin-top: -3px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 8px;
}
.form__field-radio input[type=radio]:checked + .wpcf7-list-item-label {
  background: #ff5f5f;
  color: #fff;
}
.form__field-radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  border-color: #666;
}
.form__field-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.form__example {
  display: inline-block;
  margin-top: 10px;
  margin-left: 76px;
  color: #999;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .form__example {
    margin-top: 1.7621145374vw;
    margin-left: 0;
    font-size: 2.6431718062vw;
  }
}
.form__submit {
  display: flex;
  width: 280px;
  height: 60px;
  background-color: #ff5f5f;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 20px auto 30px;
  font-weight: 700;
  font-size: 16px;
}
.form__submit:hover {
  opacity: 0.7;
}
.form__privacy {
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    width: 80vw;
  }
}
.form__privacy-box {
  width: 400px;
  height: 120px;
  overflow: scroll;
  margin: 20px auto 0;
  padding: 30px;
  border: 1px solid;
  color: #646464;
}
@media screen and (max-width: 767px) {
  .form__privacy-box {
    width: 74vw;
    height: 40vw;
    margin: 4.4052863436vw auto;
    padding: 3vw;
  }
}
.form__privacy-box p {
  line-height: 1.4;
  font-size: 12px;
  margin-top: 16px;
}
.form__privacy-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .form__privacy-title {
    margin-bottom: 4.4052863436vw;
    font-size: 3.5242290749vw;
  }
}
.form__privacy label {
  text-align: center;
  line-height: 3;
}
@media screen and (max-width: 767px) {
  .form__privacy label {
    line-height: 1.4;
  }
}

input[aria-invalid=true] {
  border: 1px solid #f00;
  box-shadow: 0 0 4px 0 #f00;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

各投稿ページのscss

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

/* ================================================================================

// 記事一覧共通

================================================================================ */
.ct_list ul{
    display: flex;
    flex-wrap:wrap;
}
.ct_list ul li{
    margin-right: 30px;
}
.ct_list ul li a{
    color: #858585;
}
.ct_list ul li a:hover{
    color: #003472;
    border-bottom: 2px #003472 solid;
    padding-bottom: 3px;
}
.ct_list ul li.current a{
    color: #003472;
    border-bottom: 2px #003472 solid;
    padding-bottom: 3px;
}
.ct_list .category_list{
    margin: 20px 0;
}
.page-cate .others-page,
.page-all .others-page{
    margin-top: 0;
    padding-top: 4.6vw;
}
.tac{
    text-align: center;
}

@media screen and (max-width: 767px){
    .ct_list ul li.ct_list_ttl{
        width: 100%;
    }
    .ct_list ul li{
        margin-bottom: 10px;
    }
    .page-cate .others-page,
    .page-all .others-page{
        padding-top: 50px;
    }
}

/* ================================================================================

// single.php

================================================================================ */
/* header */
.page-single .header__list .menu-item-link{
    color:#222222;
}
/* 見出し-NEWS */
.page-single .common__title.news_title::after {
    content: "最新のお知らせ";
    letter-spacing: 1px;
    left: 8%;
}
/* 見出し-BLOG */
.page-single .common__title.blog_title::after {
    content: "最新のブログ";
    letter-spacing: 1px;
    left: 8%;
}
.article {
    padding: 100px 0;
}
.article__block {
  margin-bottom: 40px;
}
.article .article__date,
.archive .article__date{
    display: flex;
    flex-wrap:wrap;
    color: #858585;
    font-size: 15px;
    align-items: center;
}
.archive .top-blog__list-tag .blog-tag-img img{
    width: 25px;
    height: 25px;
    margin-bottom:0;
}
.article .article__date .top-blog__list-tag{
    margin-top:0;
    margin-left: 15px;
}
.article .article__date .top-blog__list-tag a,
.archive .article__date .top-blog__list-tag a{
    margin: 2px 5px;
    color: #858585;
}
.article .article__date ul{
    display: flex;
    flex-wrap:wrap;
    border-left: 1px solid #858585;
    padding-left: 10px;
    margin-left: 10px;
}
.article .article__date ul li{
    margin-right: 10px;
}
.article .article__date ul li:last-child{
    margin-right: 0;
}
.article .article__title{
    line-height: 1.8;
}
.article .article__eyecatch{
    margin-top: 100px;
}
.article .article__eyecatch img{
    width: 100%;
    height: 660px;
    object-fit: cover;    
}
.article .article__content{
    border-top: 1px solid #858585;
    border-bottom: 1px solid #858585;
    margin: 100px 0;
    padding: 50px 0;
    line-height: 1.8;
}
.page-single .article_btn{
    width: 250px;
    border: 1px solid;
    border-radius: 50px;
    line-height: 50px;
    height: 50px;
}
.page-single .article_btn a{
    position: relative;
}
.page-single .article_btn a .more{
    top: -76%;
    right: 22%;    
}
.page-single .article_btn a .article_btn_text{
    margin-left:25%;
}

@media screen and (max-width: 767px) {
    .article {
        padding: 50px 0;
    }
    .article .article__date ul{
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }
    .article .article__title{
        font-size:20px;
    }
    .article .article__eyecatch {
        margin-top: 50px;
    }
    .article .article__eyecatch img{
        height: 250px;
    }
    .article .article__content{
        margin: 50px 0;
    }
    .top-blog__list-tag a{
        position: unset;
    }
    .archive .top-blog__list-tag .blog-tag-img{
        margin-right: 0;
    }
}


@media screen and (max-width: 767px) {
  .article__content, .archive__content {
    line-height: 1.6;
  }
}
.article__tag ul, .archive__tag ul {
  display: flex;
  flex-wrap: wrap;
}

.page-nav {
  display: block;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-nav {
    margin-bottom: 8.8105726872vw;
  }
}
.page-nav__row {
  display: flex;
  justify-content: space-between;
  color: #858585;
}
.page-nav__row li {
  border: 1px solid #858585;
  padding: 10px 30px;
}
@media screen and (max-width: 767px) {
  .page-nav__row li {
    padding: 2.2026431718vw 6.6079295154vw;
  }
}
.page-nav__row a {
  color: #858585;
}

/* ================================================================================

// archive.php

================================================================================ */
/* header */
.page-cate .header__list .menu-item-link,
.page-all .header__list .menu-item-link{
    color:#222222;
}
/* 見出し-NEWS */
.page-cate .common__title.news_title::after {
    content: "最新のお知らせ";
    letter-spacing: 1px;
    left: 8%;
}
.mv__sabpage .common__title.news_title::before{
    left: 4%;
}
/* 見出し-BLOG */
.page-cate .common__title.blog_title::after {
    content: "最新のブログ";
    letter-spacing: 1px;
    left: 8%;
}
.mv__sabpage .common__title.blog_title::before{
    left: 4%;
}

.archive{
    padding: 100px 0;
}
.archive ul{
    display: flex;
    flex-wrap:wrap;
}
.archive ul li.archive__block{
    width: calc(100% / 3 - 20px);
    margin-right: 30px;
    padding-bottom: 20px;
}
.archive ul li.archive__block:nth-of-type(3n){
    margin-right: 0;
}
.archive__block a.archive__list{
    border:none;
}
.archive .top-blog__list-tag{
    margin-top:0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.archive__block {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 40px;
}
.archive .archive__date{
    display: flex;
    flex-wrap:wrap;
    color: #858585;
    font-size: 15px;
    margin-bottom: 10px;
    align-items: center;
}
.archive .archive__date ul{
    border-left: 1px solid #858585;
    padding-left: 10px;
    margin-left: 10px;
}
.archive__block .archive__list img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 20px;
}
.archive .archive__list .archive__title{
    font-size: 16px;
    line-height: 1.8;
    display: -webkit-box;
    overflow: hidden;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
    .mv__sabpage .common__title.blog_title::before,
    .mv__sabpage .common__title.news_title::before{
        left: 10%;
    }
    .page-cate .common__title.blog_title::after,
    .page-cate .common__title.news_title::after,
    .page-single .common__title.blog_title::after,
    .page-single .common__title.news_title::after{
        left: 22%;
    }
    .archive__block .archive__list img{
        height: 150px;
    }
    .archive ul li.archive__block{
        width: 100%;
        margin: 10px;
    }
    .archive ul li.archive__block:nth-of-type(3n){
        margin-right: 20px;
    }
    .archive ul li.archive__block:nth-of-type(2n){
        margin-right: 0;
    }
    .archive .archive__date{
        font-size: 12px;
    }
    .archive .archive__date ul {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }
}

.archive__title a {
  color: #858585;
}
.screen-reader-text {
  display: none;
}

.nav-links {
  float: right;
}

.page-numbers {
  display: block;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-numbers {
    margin-bottom: 8.8105726872vw;
  }
}
.page-numbers li {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .page-numbers li {
    margin-right: 5vw;
  }
}
.page-numbers li a {
  color: #da0000;
}
.page-numbers .current {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #da0000;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .page-numbers .current {
    width: 6.6079295154vw;
    height: 6.6079295154vw;
  }
}
.page-numbers .next {
  color: #da0000;
}
.page-numbers .prev {
  color: #da0000;
}


/* ================================================================================

// page.php

================================================================================ */

.page-inner{
    padding: 100px 0;
}
/* 見出し */
.common__title{
    font-size: 24px;
    font-weight: 300;
    position: relative;
}
.common__title::before {
    content: "";
    width: 60px;
    height: 1px;
    border: 0;
    position: absolute;
    top: 31px;
    left: 75px;
    transform: rotate(-60deg);
    background: #222222;
}
.common__title::after {
    position: absolute;
    color: #858585;
    font-size: 14px;
    top: 40px;
    left: 115px;
}

.mv__sabpage{
    margin-top: 4.6vw;
    border-top: #cccccc solid 1px;
    border-bottom: #cccccc solid 1px;
    position: relative;
    height: 320px;
}
.mv__sabpage .common__title{
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: center;
}
.mv__sabpage .common_img{
    text-align: right;
}
.mv__sabpage .common_img img{
    width: 50%;
    height: 320px;
    object-fit: cover;
}
.mv__sabpage .common__title::before{
    top: 60%;
    left: 8%;
}
.mv__sabpage .common__title::after{
    top: unset;
    bottom: 25%;
    left: 11%;
}


@media screen and (max-width: 767px){
    .mv__sabpage{
        margin-top: 0;
    }
    .mv__sabpage .common_img img{
        width: 100%;
    }
    .mv__sabpage .common__title{
        color:#fff;
        left: 55%;
        text-shadow: 0px 2px 5px #000;
    }
    .mv__sabpage .common__title::before{
        left: 30%;
        background: #fff;
    }
    .mv__sabpage .common__title::after{
        left: 45%;
        color:#fff;
    }
}
/* Company */
.page_ft_inner h3{
    text-align: center;
}
.page_ft_inner h3 span{
    display: block;
    color:#858585;
    font-size: 15px;
    font-weight: normal;
    padding-top: 10px;
}
.page_ft_inner .more{
    right: 53%;
    top:0;
}
.page_ft_inner .maru{
    background-color: unset;
    border: 1px solid #222222;
}
.page_ft_inner .more::before{
    background:#222222;
}
.page_ft_inner .more::after{
    background: #222222;
}
@media screen and (max-width: 767px){
    .page_ft_inner .more{
        right: 60%;
    }
}

/* ================================================================================

// about

================================================================================ */

/* header */
.page-about .header__list .menu-item-link{
    color:#222222;
}

/* mv */
.page-about .mv__title{
    width: 100%;
}
.page-about .mv__title h2 span{
    font-family: "din";
	font-size: 160px;
	font-weight: bold;
	background-image: linear-gradient(70deg,#003472 45%,#37a2cc 50%,#003472 55%);
	background-size: 500% 100%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	animation: shine 3s 2;
    letter-spacing: 10px;
}
@keyframes shine {
	0% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.page-about .mv__text{
    font-size: 14px;
    line-height: 2;
    margin-top: 40px;
}

/* 見出し */
.page-about h3{
    font-size: 40px;
    margin-bottom: 50px;
    letter-spacing: 5px;
}

/* 見出し-私たちについて */
.page-about .about_us::after {
    content: "私たちについて";
    letter-spacing: 1px;
}

/* About us */
.aboutus_inner{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.aboutus_text{
    background-color: #85858526;
    padding: 10vw 20vw 10vw 10vw;
}
/* .page-about .its__block-text{
    width: 45vw;
} */
.page-about .aboutus_img{
    position: absolute;
    margin-top: 100px;
    right: 0;
}
.page-about .aboutus_img img{
    width: 70vh;
}
.page-about .aboutus_order{
    flex-direction: row-reverse;
}
.page-about .aboutus_order .aboutus_img{
    left:0;
}
.page-about .aboutus_order .aboutus_text{
    padding: 10vw 10vw 10vw 20vw;
}
/* Value */
.page-about .value_box_wrap{
    display: flex;
    justify-content: space-between;
}
.page-about .value_box{
    width: 100%;
}
.page-about .value_wrap{
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #858585;
    padding: 50px;
    margin-bottom: 20px;
}
.page-about .value_text{
    margin: 0 auto;
    padding: 0 30px;
}
.page-about .value_wrap h4{
    font-size: 24px;
    padding-bottom: 18px;
}
.page-about .value_wrap .value_text span{
    font-size: 14px;
    line-height: 1.8;
}
.page-about .value_box_wrap .value_box:nth-of-type(2){
    margin-top: 50px;
}

/* Message */
.page-about .message_inner{
    background-color: #85858526;
}
.page-about .message_wrap{
    display: flex;
}
.page-about .message_inner h4{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 32px;
    padding-bottom: 30px;
}
.page-about .message_inner h4 div{
    letter-spacing: 5px;
}
.page-about .message_inner span{
    font-size: 16px;
    font-weight: normal;
}
.page-about .message_box{
    margin-right: 80px;
    width: 48%;
}
.page-about .message_text{
    line-height: 1.8;
}
.page-about .message_text p{
    margin-bottom: 10px;
}
.page-about .service_wrap .business_wrap .business_box img{
    height: 600px;
}
.business_box {
  width: 48%;
}
.business_box img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
.business_box .business_text{
  background: #fff;
  padding: 50px;
  line-height: 1.8;
  width: 70%;
  margin-top: -15%;
  position: relative;
}
.business_box .business_box_ttl {
  font-size: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1100px){
    .page-about .mv__title{
        width: 90%;
    }
    .page-about .mv__title h2 span{
        font-size: 60px;
    }
}
@media screen and (max-width: 767px){
    .page-about .mv__text{
        margin-top: -60px;
    }
    .page-about .aboutus_img{
        position: unset;
    }
    .page-about .aboutus_img img{
        width: 100%;
    }
    .aboutus_inner{
        display: block;
    }
    .page-about .its__block-text{
        width: 100%;
    }
    .page-about .value_box_wrap{
        display: block;
    }
    .page-about .value_box{
        width: 100%;
    }
    .page-about .message_wrap{
        display: block;
    }
    .page-about .message_box{
        margin-right: 0px;
    }
    .page-about .message_inner h4{
        display: block;
    }
    .page-about .message_wrap img{
        width: 100%;
    }
}

/* 小山追記 04/12 */
.tegaki {
	width: 40vw;
	height: 35vw;
	object-fit: contain;
	bottom: -4vw;
	left: 1vw;
	/* mix-blend-mode: plus-lighter; */
	opacity: 1;
	position: absolute;
	z-index: 1;
}
.mv__top .mv__toptitle {
  opacity: 0;
}

.header__page-bg {
  background-color: #fff;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 4.6vw;
  z-index: -1;
}
.inner {
  max-width: 1120px;
  margin-right:auto;
  margin-left: auto;
}
.mv__page {
  background: #F2F2F1;
  height: 100vh;
}
.page-about .mv__page img {
  height: auto;
  width: 70vh;
  object-fit: cover;
  margin: 0 auto;
  display: flex;
  padding-top: 12vh;
}
.mv__title {
  top: 32vh;
}
.page-about .mv__title h2 span {
  letter-spacing: 3px;
}
.page-inner {
  padding: 100px 0;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}
.page-inner-aboutus {
  padding: 100px 0 0;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

/* .aboutus_bg1 {
  background-color: #85858526;
  height: 572px;
  width: 60vw;
  position: absolute;
  margin-top: 100px;
} */
.aboutus_bg2 {
  background-color: #85858526;
  height: 572px;
  width: 60vw;
  position: absolute;
  margin-top: 962px;
  right: 0;
}
.aboutus_text {
  background-color: unset;
  padding: 100px 0;
  width: 540px;
}

.aboutus_text {
  background-color: #85858526;
  height: 572px;
  width: 60vw;
  margin: 0 calc(50% - 50vw);
  margin-top: 100px;
}
.aboutus_text .wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 100%;
  margin: 0 auto;
}
.aboutus_text .wrap .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.page-about h3 {
  letter-spacing: 2px;
}
.its__block-title {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 100;
}
.page-about .aboutus_img {
  margin-top: 80px;
  right: -123px;
}
.page-about .aboutus_img img {
  width: 572px;
  height: 572px;
  object-fit: cover;
}
.page-about .aboutus_order .aboutus_text {
  padding: 100px 0;
}
.page-about .aboutus_order .aboutus_img {
  left: -123px;
}

.page-about .message_inner {
  background-color: #85858526;
  max-width: none;
  padding: 160px 0;
}
.page-about .message_inner h4 {
  align-items: baseline;
  padding-bottom: 50px;
}
.page-about .message_inner h4 div {
  letter-spacing: 0px;
}
.page-about .message_text p {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 400;
}
.page-about .character {
  background-color: #85858526;
  display: flex;
  margin: 80px 0 80px;
}
.page-about .character .character_pic {
  margin: 20px;
  background: #fff;
  width: 500px;
  height: 260px;
  position: relative;
  display: block;
  overflow: hidden;
	cursor: pointer;
}
.character_pic img {
	position: absolute;
  width: 290px;
  height: 260px;
  object-fit: cover;
  left: 104px;
	display: block;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.character_pic:hover img:nth-of-type(2) {
	opacity: 0;
}
.character_text {
  margin: 20px;
}
.character_title {
  font-size: 24px;
  font-weight: 600;
}
.character_name {
  font-weight: 600;
  margin-top: 16px;
}
.character_caption {
  line-height: 1.8;
  margin-top: 28px;
}
@media screen and (max-width: 767px){

	.vr-inner h3{
	  width: 90%;
	  margin-right: auto;
	  margin-left: auto;
	}
	
    .page-about .mv__page img{
        width: 100%;
    }
    .aboutus_bg1{
        width: 100%;
    }
    .aboutus_bg2{
        display: none;
    }
    .page-about .message_box{
      margin-right: auto;
      margin-left: auto;
      width: 90%;
    }
    .business_box {
      width: 100%;
    }
    .page-about .character {
      margin: 80px 0 80px;
      flex-direction: column;
      width: 100%;
    }
    .page-about .character .character_pic {
      margin: 10vw 5vw 5vw;
      width: 80vw;
      height: 64vw;
    }
    .character_pic img {
      width: 68vw;
      height: 68vw;
      left: 6vw;
    }
    .character_text {
      margin: 0 5vw 10vw;
    }
    .character_title {
      font-size: 6vw;
      font-weight: 600;
    }
    .character_name {
      font-weight: 600;
      margin-top: 16px;
    }
    .character_caption {
      line-height: 1.8;
      margin-top: 28px;
    }
    .tegaki {
      width: 90vw;
      height: auto;
      left: 50%;
	  bottom: 30vw;
	  margin-left: -46vw;
    }
    .aboutus_text,
    .page-about .aboutus_order .aboutus_text{
        width: 90%;
        height: auto;
        margin: 0 auto;
        padding: 30px 20px;
    }
    .aboutus_text .wrap .content {
      position: initial;
      transform: none;
    }
    .page-about h3 {
      font-size: 30px;
      margin-bottom: 30px;
    }
    .its__block-title {
      font-size: 30px;
    }
    .page-about .aboutus_order .aboutus_img {margin-top: 0;}
}

/* ================================================================================

// company

================================================================================ */

/* header */
.page-company .header__list .menu-item-link{
    color:#222222;
}

/* 見出し-会社概要 */
.page-company .common__title::after {
    content: "会社概要";
    letter-spacing: 1px;
}
.page-company h3{
    font-size: 40px;
    margin-bottom: 80px;
    letter-spacing: 5px;
}
/* Company Profile */
.page-company .comprof-wrap{
    display: flex;
}
.page-company .comprof-inner h3{
    width: 50%;
    margin-left: auto;
}
.page-company .comprof-wrap .comprof-img{
    width: 50%;
}
.page-company .comprof-wrap .comprof-img img.img_right{
    margin-left: auto;
    display: block;
    padding: 100px;
}
.page-company .comprof-wrap .comprof-text{
    width: 50%;
}    
.page-company .comprof-wrap .comprof-text dl{
    display: flex;
    border-top: #858585 solid 1px;
}
.page-company .comprof-wrap .comprof-text dl:last-child{
    border-bottom: #858585 solid 1px;    
}
.page-company .comprof-wrap .comprof-text dl dt{
    width: 30%;
    color:#858585;
    padding-top:20px;
    padding-bottom:20px;
}
.page-company .comprof-wrap .comprof-text dl dd{
    width: 70%;
    margin: 10px;
    padding: 10px 30px;
    border-left: #858585 solid 1px;
    line-height: 1.8;
}
/* Access */
.page-company .access-inner .access-wrap,
.page-company .access-inner .access-wrap ul{
    display: flex;
}
.page-company .access-inner .access-wrap ul{
    width: 100%;
}
.page-company .access-inner .access-wrap{
    margin-bottom: 20px;
}
.page-company .access-inner .access-wrap:nth-of-type(n + 2):before{
    content: "";
    width: 210px;
}
.page-company .access-inner .access-wrap:last-child{
    margin-bottom: 0;
}
.page-company .access-inner .access-wrap h4{
    border: #858585 1px solid;
    padding: 10px 30px;
    margin-right: 30px;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 5px;
    line-height: 1.8;
    width: 100px;
    text-align: center;
}
.page-company .access-inner .access-wrap ul li{
    width: calc(100% / 3);
    border-right: #858585 1px solid;
    font-size: 14px;
    line-height: 3.8;
    margin-right: 20px;
    padding-right: 20px;
}
.page-company .access-inner .access-wrap ul li:last-child{
    border-right: none;
    margin-right: 0px;
    padding-right: 0px;
}
.page-company .map-inner iframe{
    width: 100%;
    height: 300px;
}
.page-company .vr-inner iframe{
    width: 100%;
    height: 576px;
}

@media screen and (max-width: 767px){
    .page-company .comprof-inner h3,
    .page-company .comprof-wrap,
    .page-company .comprof-wrap .comprof-text{
        width: 100%;
    }
    .page-company .comprof-wrap,
    .page-company .access-inner .access-wrap,
    .page-company .access-inner .access-wrap ul{
        display: block;
    }
    .page-company .comprof-wrap .comprof-text{
        margin-top: 20px;
    }
    .page-company .access-inner .access-wrap h4{
        margin-right: 0;
    }
    .page-company .access-inner .access-wrap ul{
        margin-top: 20px;
    }
    .page-company .access-inner .access-wrap ul li{
        border-right: none;
        border-top: #858585 1px solid;
        padding: 20px;
        margin: 0;
    }
    .page-company .comprof-wrap .comprof-img img.img_right{
        padding: 0px;
        border-bottom: #858585 1px solid;
    }
}

/* ================================================================================

// Service

================================================================================ */

/* 導入 */
.service_wrap .service_intro{
    display: flex;
    align-items: center;
}
.service_wrap .intro_ttl{
    width:50%;
    font-size: 40px;
    line-height: 1.5;
}
.service_wrap .intro_text{
    width:50%;
    line-height: 1.8;
    font-size: 14px;
}
.service_wrap .intro_text p{
    margin-bottom: 10px;
}
.service_wrap .intro_text p:last-child{
    margin-bottom: 0;
}

/* 見出し */
.service_wrap .sub_ttl{
    font-size: 40px;
    text-align: center;
    line-height: 1.8;
}
.service_wrap .sub_ttl span{
    font-size: 14px;
    display: block;
    color:#858585;
}
.service_wrap .sub_text{
    font-size: 30px;
    margin: 50px 0;
    text-align: center;
}

/* 背景色 */
.bg_gray{
    background: #ededed;
}

/* ビジネス */
.service_wrap .business_wrap{
    display: flex;
    justify-content: space-between;
}
.service_wrap .business_wrap .business_box{
    width: 48%;
}
.service_wrap .business_wrap .business_box img{
    width: 100%;
    height: 390px;
    object-fit: cover;
}
.service_wrap .business_wrap .business_box .business_text{
    background: #fff;
    padding: 50px;
    line-height: 1.8;
    width: 70%;
    margin-top: -15%;
    position: relative;
}
.service_wrap .business_wrap .business_box .business_box_ttl{
    font-size: 20px;
    margin-bottom: 20px;
}
.service_wrap .business_wrap .business_box .business_box_text{
    font-size: 15px;
}

/* お問い合わせ */
.service_contact{
    border-top: #cccccc solid 1px;
    margin-top: 100px;
}
.page_ft_inner.service_contact h3 span{
    padding-top: 0;
}
.page_ft_inner.service_contact .sub_ttl{
    margin-bottom: 20px;
}
.page_ft_inner.service_contact .contact_wrap{
    border: #222 solid 1px;
    padding: 5px;
    margin-top: 50px;
}
.page_ft_inner.service_contact .contact_box{
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}
.contact_ttl{
    font-weight: normal;
    border: #fff solid 1px;
    font-size: 12px;
    padding: 10px 20px;
}
.contact_box img{
    object-fit: cover;
    width: 40px;
    height: 40px;
    margin: 20px;
}
.contact_main{
    margin-top: 1%;
}
.contact_tel{
    font-size: 35px;
}
.contact_tel a{
    color:#fff;
}
.contact_time{
    font-size: 11px;
    display: block;
    text-align: right;
}

@media screen and (max-width: 767px){
    .service_wrap .service_intro{
        display: block;
    }
    .service_wrap .intro_ttl{
        font-size: 25px;
        margin-bottom: 30px;
    }
    .service_wrap .intro_ttl,
    .service_wrap .intro_text{
        width: 100%;
    }
    .service_wrap .business_wrap{
        display: block;
        background: #fff;
    }
    .service_wrap .business_wrap .business_box{
        width: 100%;
    }
    .service_wrap .business_wrap .business_box img{
        width: 100%;
        height: 250px;
        margin: 0 auto;
        display: block;
    }
    .service_wrap .business_wrap .business_box .business_text{
        position: unset;
        width: 70%;
        margin-top: 0;
    }
    .page_ft_inner.service_contact .contact_box{
        display: block;
    }
    .contact_ttl{
        width: 80%;
        margin: 0 auto;
    }
    .contact_box img{
        float: left;
        margin: 10px;
    }
    .contact_time{
        text-align: center;
    }
    .contact_tel{
        font-size: 30px;
    }
}
@media(min-width: 768px){
    a[href^="tel:"]{
        pointer-events: none;
    }
}

/* ================================================================================

// Food Service

================================================================================ */

/* header */
.page-foodservice .header__list .menu-item-link{
    color:#222222;
}

/* 見出し-人材紹介事業 */
.page-agent .common__title::after {
  content: "人材紹介事業";
  letter-spacing: 1px;
}
.page-agent .mv__sabpage .common__title.news_title::before {
  left: 14%;
}
.page-agent .mv__sabpage .common__title::after{
  left: 18%;
}

/* 見出し-飲食店舗運営 */
.page-foodservice .common__title::after {
    content: "飲食店舗運営";
    letter-spacing: 1px;
}
.page-foodservice .mv__sabpage .common__title.news_title::before {
    left: 12%;
}
.page-foodservice .mv__sabpage .common__title::after{
    left: 16%;
}

/* Location */
.page-foodservice .location_wrap{
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.page-foodservice .location_wrap img{
    width: calc(50% - 100px);
    margin: 50px;
    object-fit: cover;
}
.page-foodservice .location_wrap .location_box{
    font-size: 18px;
    background: #fff;
    padding: 50px;
    line-height: 1.8;
    margin: 50px 0 50px 50px;
    width: 70%;
}
.page-foodservice .location_wrap .location_box .location_shop{
    margin-bottom: 20px;
}
.page-foodservice .location_wrap .location_box p{
    font-size: 14px;
}
.page-foodservice .location_wrap .location_box .location_add{
    margin-top: 20px;
}

/* Coming soom */
.page-foodservice .business_cs{
    text-align: center;
    font-size: 24px;
    padding: 0;
}
.page-foodservice .business_cs .business_cs_text{
    padding: 100px 0;
}

@media screen and (max-width: 767px){
    .page-foodservice .mv__sabpage .common__title.news_title::before {
        left: 40%;
    }
    .page-foodservice .mv__sabpage .common__title::after {
        left: 52%;
    }
    .page-foodservice .location_wrap{
        display: block;
        padding-top: 10px;
    }
    .page-foodservice .location_wrap img,
    .page-foodservice .location_wrap .location_box{
        width: 76%;
        margin: 20px auto;
        padding: 20px;
        display: block;
    }
}

/* ================================================================================

// agent

================================================================================ */

/* header */
.page-agent .header__list .menu-item-link{
  color:#222222;
}

/* 見出し-転職支援サービス */
.page-agent .common__title::after {
content: "転職支援サービス";
letter-spacing: 1px;
}
.page-agent .mv__sabpage .common__title.news_title::before {
left: 14%;
}
.page-agent .mv__sabpage .common__title::after{
left: 18%;
}

/* Location */
.page-agent .location_wrap{
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.page-agent .location_wrap img{
  width: 560px;
  height: 400px;
  margin: 50px;
  object-fit: cover;
}
.page-agent .location_wrap .location_box{
  font-size: 18px;
  background: #fff;
  padding: 50px;
  line-height: 1.8;
  margin: 50px 0 50px 50px;
  /* width: 70%; */
}
.page-agent .location_wrap .location_box .location_shop{
  margin-bottom: 20px;
}
.page-agent .location_wrap .location_box p{
  font-size: 14px;
}
.page-agent .location_wrap .location_box .location_add{
  margin-top: 20px;
}

.page-agent .business_info{
  display: flex;
  align-items: center;    
  margin: 50px;
}
.page-agent .business_info img{
  width: 50%;
}
.page-agent .business_info_wrap{
  width: 50%;
  margin: 50px;
}
.page-agent .business_info_wrap .business_info_ttl{
  font-size: 30px;
}
.page-agent .business_info_wrap .business_info_ttl span{
  display: block;
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}
.page-agent .business_info_wrap .business_info_text{
  line-height: 1.8;
}

.page-agent .business_info_box{
  background: #ededed;
  line-height: 1.8;
  position: absolute;
  right: 0;
  width: calc(1200px + ((100% - 1200px)/2));
}
.page-agent .business_info_box p{
  padding: 50px;
}
.page-agent .comingsoon p{
  padding: 50px 150px 50px 0;
  text-align: center;
  font-size: 28px;

}
@media screen and (max-width: 767px){
    .page-agent .mv__sabpage .common__title.news_title::before {
        left: 42%;
    }
    .page-agent .mv__sabpage .common__title::after {
        left: 54%;
    } 
  .page-agent .business_info_wrap .business_info_ttl{
      font-size: 25px;
  }
  .page-agent .business_info{
      display: block;
      margin: 0;
  }
  .page-agent .business_info img,
  .page-agent .business_info_wrap{
      width: 100%;
  }
  .page-agent .business_info_wrap{
      margin: 20px 0;
  }
  .page-agent .business_info_box{
      width: 100%;
      position: unset;
      margin-top: 20vw;
  }
}

/* ================================================================================

// onfleek-academy

================================================================================ */

/* header */
.page-onfleek-academy .header__list .menu-item-link{
  color:#222222;
}

/* 見出し-完全無料研修サービス */
.page-onfleek-academy .common__title::after {
content: "完全無料研修サービス";
letter-spacing: 1px;
}
.page-onfleek-academy .mv__sabpage .common__title.news_title::before {
left: 18%;
}

.page-onfleek-academy .mv__sabpage .common__title::after{
left: 22%;
}

/* Location */

.page-onfleek-academy .location_wrap{
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.page-onfleek-academy .location_wrap img{
  width: 560px;
  height: 400px;
  margin: 50px;
  object-fit: cover;
}

.page-onfleek-academy .location_wrap .location_box{
  font-size: 18px;
  background: #fff;
  padding: 50px;
  line-height: 1.8;
  margin: 50px 0 50px 50px;
  /* width: 70%; */
}

.page-onfleek-academy .location_wrap .location_box .location_shop{
  margin-bottom: 20px;
}

.page-onfleek-academy .location_wrap .location_box p{
  font-size: 14px;
}

.page-onfleek-academy .location_wrap .location_box .location_add{
  margin-top: 20px;
}


.page-onfleek-academy .business_info{
  display: flex;
  align-items: center;    
  margin: 50px;
}

.page-onfleek-academy .business_info img{
  width: 50%;
}

.page-onfleek-academy .business_info_wrap{
  width: 50%;
  margin: 50px;
}

.page-onfleek-academy .business_info_wrap .business_info_ttl{
  font-size: 30px;
}

.page-onfleek-academy .business_info_wrap .business_info_ttl span{
  display: block;
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-onfleek-academy .business_info_wrap .business_info_text{
  line-height: 1.8;
}


.page-onfleek-academy .business_info_box{
  background: #ededed;
  line-height: 1.8;
  position: absolute;
  right: 0;
  width: calc(1200px + ((100% - 1200px)/2));
}

.page-onfleek-academy .business_info_box p{
  padding: 50px;
}

.page-onfleek-academy .comingsoon p{
  padding: 50px 150px 50px 0;
  text-align: center;
  font-size: 28px;

}
@media screen and (max-width: 767px){
.page-onfleek-academy .common__title::after {
font-size: 12px;
}
    
.page-onfleek-academy .mv__sabpage .common__title.news_title::before {
        left: 50%;
    }
    
.page-onfleek-academy .mv__sabpage .common__title::after {
        left: 58%;
    } 
  
.page-onfleek-academy .business_info_wrap .business_info_ttl{
      font-size: 25px;
  }
  
.page-onfleek-academy .business_info{
      display: block;
      margin: 0;
  }
  
.page-onfleek-academy .business_info img,
  
.page-onfleek-academy .business_info_wrap{
      width: 100%;
  }
 
.page-onfleek-academy .business_info_wrap{
      margin: 20px 0;
  }
  
.page-onfleek-academy .business_info_box{
      width: 100%;
      position: unset;
      margin-top: 20vw;
  }
}


/* ================================================================================

// Onfleek Home

================================================================================ */

/* header */
.page-home .header__list .menu-item-link{
  color:#222222;
}

/* 見出し-清掃事業・リフォーム事業 */
.page-home .common__title::after {
content: "清掃事業・リフォーム事業";
letter-spacing: 1px;
}
.page-home .mv__sabpage .common__title.news_title::before {
left: 14%;
}
.page-home .mv__sabpage .common__title::after{
left: 18%;
}

/* Location */
.page-home .location_wrap{
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.page-home .location_wrap img{
  width: 80%;
  margin: 50px;
  object-fit: cover;
}
.page-home .location_wrap .location_box{
  font-size: 18px;
  background: #fff;
  padding: 50px;
  line-height: 1.8;
  margin: 50px 0 50px 50px;
  width: 70%;
}
.page-home .location_wrap .location_box .location_shop{
  margin-bottom: 20px;
}
.page-home .location_wrap .location_box p{
  font-size: 14px;
}
.page-home .location_wrap .location_box .location_add{
  margin-top: 20px;
}

.page-home .business_info{
  display: flex;
  align-items: center;    
  margin: 50px;
}
.page-home .business_info img{
  width: 50%;
}
.page-home .business_info_wrap{
  width: 50%;
  margin: 50px;
}
.page-home .business_info_wrap .business_info_ttl{
  font-size: 30px;
}
.page-home .business_info_wrap .business_info_ttl span{
  display: block;
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}
.page-home .business_info_wrap .business_info_text{
  line-height: 1.8;
}

.page-home .business_info_box{
  background: #ededed;
  line-height: 1.8;
  position: absolute;
  right: 0;
  width: calc(1200px + ((100% - 1200px)/2));
}
.page-home .business_info_box p{
  padding: 50px;
}
@media screen and (max-width: 767px){
     .page-home .mv__sabpage .common__title.news_title::before {
        left: 41%;
    }
    .page-home .mv__sabpage .common__title::after {
        left: 55%;
        width: 35%;
    } 
  .page-home .business_info_wrap .business_info_ttl{
      font-size: 25px;
  }
  .page-home .business_info{
      display: block;
      margin: 0;
  }
  .page-home .business_info img,
  .page-home .business_info_wrap{
      width: 100%;
  }
  .page-home .business_info_wrap{
      margin: 20px 0;
  }
  .page-home .business_info_box{
      width: 100%;
      position: unset;
      margin-top: 20vw;
  }
}
/* ================================================================================

// Outsourcing Service

================================================================================ */

/* header */
.page-outsourcingservice .header__list .menu-item-link{
    color:#222222;
}

/* 見出し-アウトソーシング事業 */
.page-outsourcingservice .common__title::after {
    content: "ITソリューション事業";
    letter-spacing: 1px;
}
.page-outsourcingservice .mv__sabpage .common__title.news_title::before {
    left: 20.5%;
}
.page-outsourcingservice .mv__sabpage .common__title::after{
    left: 25%;
}

.page-outsourcingservice .business_info{
    display: flex;
    align-items: center;    
    margin: 50px;
}
.page-outsourcingservice .business_info img{
    width: 50%;
}
.page-outsourcingservice .business_info_wrap{
    width: 50%;
    margin: 50px;
}
.page-outsourcingservice .business_info_wrap .business_info_ttl{
    font-size: 30px;
}
.page-outsourcingservice .business_info_wrap .business_info_ttl span{
    display: block;
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: bold;
}
.page-outsourcingservice .business_info_wrap .business_info_text{
    line-height: 1.8;
}

.page-outsourcingservice .business_info_box{
    background: #ededed;
    line-height: 1.8;
    position: absolute;
    right: 0;
    width: calc(1200px + ((100% - 1200px)/2));
}
.page-outsourcingservice .business_info_box p{
    padding: 50px;
}

@media screen and (max-width: 767px){
    .page-outsourcingservice .mv__sabpage .common__title.news_title::before {
        left: 58%;
    }
    .page-outsourcingservice .mv__sabpage .common__title::after {
        left: 68%;
        width: 25%;
    }
    .page-outsourcingservice .business_info_wrap .business_info_ttl{
        font-size: 25px;
    }
    .page-outsourcingservice .business_info{
        display: block;
        margin: 0;
    }
    .page-outsourcingservice .business_info img,
    .page-outsourcingservice .business_info_wrap{
        width: 100%;
    }
    .page-outsourcingservice .business_info_wrap{
        margin: 20px 0;
    }
    .page-outsourcingservice .business_info_box{
        width: 100%;
        position: unset;
    }
}

/* ================================================================================

// Contact

================================================================================ */
/* header */
.page-contact .header__list .menu-item-link,
.page-thanks .header__list .menu-item-link{
    color:#222222;
}

/* 見出し-コンタクト */
.page-contact .common__title::after,
.page-thanks .common__title::after {
    content: "お問い合わせ";
    letter-spacing: 1px;
}
.page-contact .mv__sabpage .common__title::after,
.page-thanks .mv__sabpage .common__title::after{
    left: 12%;
}
.page-contact .service_contact {
    border-top: none;
    margin-top: 0;
}

.page-contact .contact_inner,
.page-thanks .contact_inner{
    display: flex;
}
.page-contact .contact_inner .contact_step,
.page-thanks .contact_inner .contact_step{
    width: 20%;
}
.page-contact .contact_inner .contact_step ul li,
.page-thanks .contact_inner .contact_step ul li{
    color: #ccc;
    margin-bottom: 40px;
}
.page-contact .contact_inner .contact_step ul li:first-child,
.page-thanks .contact_inner .contact_step ul li:nth-child(3){
    color: #222;
}
.page-contact .contact_inner .contact_wrap,
.page-thanks .contact_inner .contact_wrap{
    width: 80%;
}
.confirm_btn{
    margin: 50px 0;
}
.confirm_btn .article_btn_text{
    margin-left: 25%;
}
.confirm_btn input{
    display: block;
    width: 250px;
    top: 0;
    left: 0;
    position: absolute;
    line-height: 50px;
    height: 50px;
    background: rgba(255,255,255,0);
    color: rgba(255,255,255,0);
    z-index: 9999;
}
.confirm_btn .more{
    top: -38px;
    left: -57px;
}
.page-contact main{
    margin-bottom: 100px;
}

/* 確認画面 */
.page-contact .article_btn{
    position: absolute;
    right: 0;
}
.page-contact .article_btn.left_btn{
    left: 0;
    right: auto;
}
.page-contact .article_btn.left_btn .maru{
    left: -68px;
    right: auto;
}
.page-contact .article_btn.left_btn .more::before {
    right: 154px;
}
.page-contact .article_btn.left_btn .more::after {
    right: 167px;
    transform: rotate(-30deg);
}

.wpcf7cp-btns button.more-a{
    background: none;
    border: none;
    display: flex;
    font-size: 20px;
    right: -2px;
    width: 100%;
    top: 20%;
}
.page-thanks .article_btn a,
.page-contact .article_btn button{
    position: relative;
}
.page-thanks .article_btn a .more,
.page-contact .article_btn button .more{
    top: -76%;
    right: 22%;    
}
.page-thanks .article_btn a .article_btn_text,
.page-contact .article_btn button .article_btn_text{
    margin-left:25%;
}
#wpcf7cpcnf{
    font-size: 13px;
}
#wpcf7cpcnf tr{
    border-top: 1px solid #ccc;
}
#wpcf7cpcnf tr:last-child{
    border-bottom: 1px solid #ccc;
}
#wpcf7cpcnf th{
    padding: 40px 20px 40px 0;
    text-align: left;
    width: 40%;
}

/* 完了画面 */
.page-thanks .thanks_wrap .thanks_txt{
    font-size:25px;
    margin-bottom: 50px;
}
.page-thanks .thanks_wrap .thanks_txt span{
    margin-top: 20px;
    font-size:15px;
    line-height: 1.8;
    display: block;
}
.page-thanks .article_btn,
.page-contact .article_btn{
    width: 250px;
    border: 1px solid;
    border-radius: 50px;
    line-height: 50px;
    height: 50px;
}

/* コンタクトフォーム */
.page-contact .contact_inner .contact_wrap .contact_note{
    font-size: 11px;
    margin-left: 20px;
}
.page-contact .contact_inner .contact_wrap .contact_red{
    color:red ;
}
.contact_wrap .con_form label{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 30px 0;    
}
.contact_wrap label .con_ttl{
    width: 20%;
}
.contact_wrap .con_accept{
    text-align: center;
    border: 1px solid #ccc;
    padding: 40px;
    margin: 50px 0;
}
.con_form select{
    padding: 15px 20px;
    width: 60%;
    background: #eee;
    border: none;
}
.con_form input{
    padding: 15px 20px;
    width: 100%;
    background: #eee;
    border: none;
}
.con_form .wpcf7-form-control-wrap{
    width: 75%;
}
.con_form textarea{
    padding: 15px 20px;
    width: 100%;
    background: #eee;
    border: none;
}


@media screen and (max-width: 767px){
    .page-contact .mv__sabpage .common__title::before{
        left: 22%;
    }
    .page-contact .mv__sabpage .common__title::after{
        left: 32%;
    }
    .page-contact .contact_inner,
    .page-thanks .contact_inner{
        display: block;
    }
    .contact_step ul{
        display: flex;
        text-align: center;
    }
    .contact_step ul li{
        width: calc(100% / 3);
    }
    .page-contact .contact_inner .contact_step,
    .page-thanks .contact_inner .contact_step{
        width: 100%;
    }
    .page-contact .contact_inner .contact_wrap,
    .page-thanks .contact_inner .contact_wrap{
        width: 100%;
    }
    .contact_wrap .con_form label{
        display: block;
    }
    .contact_wrap label .con_ttl{
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
    .con_form input{
        width: auto;
        padding: 15px 10px;
        margin-top: 10px;
    }
    .con_form select{
        width: 100%;
        height: 50px;
    }
    .con_form textarea{
        width: auto;
    }
    .page-contact .article_btn.left_btn{
        margin-top:0;
    }
    .page-contact .article_btn{
        margin-top: 80px;
    }
    .contact_wrap .con_accept .wpcf7-list-item{
        margin: 0;
    }
}
/* ================================================================================

// page-privacy-policy.php

================================================================================ */
.page-privacy-policy .header__list .menu-item-link{
    color:#222222;
}
.privacy-policy{
    padding:100px 0;
}
.privacy-policy h2{
    margin: 20px 0;
}
.privacy-policy h3{
    margin: 20px 0;
}
.privacy-policy p{
    margin: 10px 0;
    line-height: 1.8;
}
.page-privacy-policy .common__title::after {
    content: "個人情報保護方針";
    letter-spacing: 1px;
    left: 17%;
}
.page-privacy-policy .mv__sabpage .common__title::before{
    left: 13%;
}
@media screen and (max-width: 767px){
    .page-privacy-policy .mv__sabpage .common__title::before {
        left: 39%;
    }
    .page-privacy-policy .common__title::after {
        left: 48%;
    }
}
/* ================================================================================

// page-privacy-policy.php

================================================================================ */
.security_rights {
  text-align: end;
}
.page-security .common__title::after {
  content: "情報セキュリティ方針";
  letter-spacing: 1px;
  left: 17%;
}
.page-security .mv__sabpage .common__title::before{
  left: 13%;
}
@media screen and (max-width: 767px){
  .page-security .mv__sabpage .common__title::before {
      left: 39%;
  }
  .page-security .common__title::after {
      left: 48%;
  }
}

/* ================================================================================

// Site Map

================================================================================ */
.page-sitemap .header__list .menu-item-link{
    color:#222222;
}
.page-sitemap .common__title::after {
    content: "サイトマップ";
    letter-spacing: 1px;
}
.page-sitemap .outer .inner{
    padding:100px 0;
}
.page-sitemap #sitemap_list ul{
    margin-left: 20px;
}
.page-sitemap #sitemap_list{
    line-height: 1.8;
}
.page-sitemap #sitemap_list ul li:before{
    content: "┗";
    margin-right: 10px;
}

.sub-new-post{
    display: block;
    color: #ff1745;
    margin-right: 10px;
}
.new-post{
    color: #ff1745;
    margin-right: 10px;
}

















.acd-check{
    display: none;
}
.acd-label{
    color: #fff;
    display: block;
    margin-bottom: 1px;
    position: relative;
	padding: 10px 0;
	font-weight: bold;
	font-size: 16px;
	border-bottom: 1px solid #fff;
	  transition: all 0.2s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
 transition: all 0.2s;
}

.acd-label:after{
    box-sizing: border-box;
    content: '\f067';
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 52px;
    padding: 10px 20px;
    position: absolute;
    right: 0;
    top: 0px;
}
.acd-content{
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px!important;
    transition: .5s;
    visibility: hidden;
}
.acd-check:checked + .acd-label:after{
    content: '\f068';
}
.acd-check:checked + .acd-label + .acd-content{
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}

/* reCAPTCHA表示隠し */
.grecaptcha-badge { visibility: hidden; }