@charset "utf-8";
/* *************************************
// スタイル
************************************* */
:root {

    --blue01: #5777bd;
    --blue02: #14268c;

    --green01: #009c00;
    --green02: #4CB94C;

    --gray01: #a3b2ba;
    --gray02: #e7ecef;
    --gray03: #a0b3bc;

    --filter-green01: invert(34%) sepia(55%) saturate(3695%) hue-rotate(128deg) brightness(94%) contrast(101%);
    --filter-green02: invert(52%) sepia(67%) saturate(418%) hue-rotate(71deg) brightness(102%) contrast(93%);
    --filter-white: invert(100%) sepia(100%) saturate(0%) hue-rotate(124deg) brightness(104%) contrast(104%);
    --filter-blue: invert(43%) sepia(93%) saturate(300%) hue-rotate(184deg) brightness(88%) contrast(94%);

    --main-color: var(--green01);
    --text-color: #000000;

    --normal-font-size: 1.5vw;
    --normal-font-small: 1vw;

    --font-size-5vw: 5vw;
    --font-size-4vw: 4vw;
}


body {
    font-family: "Zen Kaku Gothic New", sans-serif;
}

@media (max-width: 1029px) {

    :root {
        --normal-font-size: 16px;
        --normal-font-small: 14px;

        --font-size-5vw: 50px;
        --font-size-4vw: 40px;
    }

}

/* *************************************
// アニメーション
************************************* */
.animation {
	opacity: 0;
}
.animation.animated {
	opacity: 1;
}

.animation_child > * {
    opacity: 0;
}
.animation_child.animated > * {
}


/* ぼやけ→はっきり */
@keyframes blur-anim2 {
    0% { 
        opacity: 0;
        filter: blur(50px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}
.blur {
  filter: blur(50px);
  opacity: 0;
}
.animation.animated .blur {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: blur-anim2;
    animation-name: blur-anim2;
}


/*   
 動きが小さいfadeInアニメーション
*/
@-webkit-keyframes fadeInUpS {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpS {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpS {
  -webkit-animation-name: fadeInUpS;
  animation-name: fadeInUpS;
}



@-webkit-keyframes fadeInLeftS {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftS {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftS {
  -webkit-animation-name: fadeInLeftS;
  animation-name: fadeInLeftS;
}



@-webkit-keyframes fadeInRightS {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightS {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightS {
  -webkit-animation-name: fadeInRightS;
  animation-name: fadeInRightS;
}


@-webkit-keyframes Up01 {
  from {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes Up01 {
  from {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.Up01 {
  -webkit-animation-name: Up01;
  animation-name: Up01;
}


@-webkit-keyframes RightSlide {
  from {
    left: 0;
    right: 100%;
  }
  to {
    left: 0;
    right: 0;
  }

}

@keyframes RightSlide {
  from {
    left: 0;
    right: 100%;
  }
  to {
    left: 0;
    right: 0;
  }
}




.line_tape01 {
    content: "";
    display: block;
    width: 100%;
    height: 30px;
    position: relative;
    background-image: url(../images/common/tape2.svg?1);
    background-size: auto 100%;
    opacity: 1;
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.3)) blur(0);
    transition: right 1s 0.5s;
}

.line_tape01.animation {
    right: 100%;
}
.line_tape01.animation.animated {
    right: 0;
}
.line_tape01.bottom {
    position: absolute;
    bottom: 0;
}
.line_tape01.top {
    position: absolute;
    top: 0;
}

/* *************************************
// ローディング
************************************* */
#loader-bg {
	position: fixed;
	width: auto;
	height: 100vh;
	top: 0px;
	left: 0;
	right: 0;
	background: #fff;
	z-index: 1002;
	display: flex;
	align-items: center;
	justify-content: center;

}

#splashbg1,
#splashbg2 {
	position: fixed;
	width: auto;
	height: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	z-index: 1001;
	display: block;
	
	-webkit-transition: left 0.4s;
    -moz-transition: left 0.4s;
    -ms-transition: left 0.4s;
    -o-transition: left 0.4s;
    transition: left 0.4s;
}
#splashbg2 {
	z-index: 1000;
    background: var(--main-color);
}


@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

.line-scale-pulse-out > div {

    background: var(--main-color);


    width: 4px;
    height: 35px;
    border-radius: 2px;
    margin: 2px;
    -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
    display: inline-block;
    -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
          animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85); }
    .line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
    -webkit-animation-delay: -0.4s !important;
            animation-delay: -0.4s !important; }
    .line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
        -webkit-animation-delay: -0.2s !important;
            animation-delay: -0.2s !important; 
}

/* *************************************
// パーツ
************************************* */

@media (max-width: 767px) {

    #container {
        overflow: hidden;
    }

}


section {
    padding: max(8vw, 80px) 0px;
    position: relative;
    z-index: 1;
    background: #fff;
}

@media (max-width: 767px) {

    section {
        padding: 40px 0;
    }

}

.parts01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
}
.parts01 .text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parts01 .text > .inner {
    width: 80%;
}
.parts01 .image {
    width: 100%;
}
.parts01 .image > img {
    width: 100%;
    display: block;
    height: 100%;
}

@media (max-width: 1029px) {
    .parts01 {
        grid-template-columns: 100%;
    }

    .parts01 .image {
        width: 90%;
        margin-left: auto;
        margin-right: 0;
    }
}
@media (max-width: 767px) {

    .parts01 .image {
        width: 100%;
    }

}


.title01 .hole_square {
    width: 4.5vw;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
} 
.title01 .hole_square > img {
    display: block;
    width: calc(100% / 9);

}
.title01 > .en {
    font-size: 5vw;
    line-height: 1;
    font-weight: 500;
    overflow: hidden;
}
.title01 > .en > span {
    line-height: 1;
    display: block;
}
.title01 > .jp {
    font-size: var(--normal-font-size);
    line-height: 1.5;
    margin-top: 0.5em;
    font-weight: bold;
    letter-spacing: 2px;
    overflow: hidden;
}
.title01 > .jp > span {
    line-height: 1.5;
    display: block;
}

.title01.green {
    color: var(--green02);
}

.title01.green img { 
    filter: var(--filter-green02);
}
.title01.blue {
    color: var(--blue01);
}
.title01.blue img { 
    filter: var(--filter-blue);
}
.title01.white {
    color: #fff;
}
.title01.white img { 
    filter: var(--filter-white);
}
.title01.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


@media (max-width: 1029px) {
    .title01 > .en {
        font-size: 50px;
    }
    .title01 > .jp {
        font-size: 25px;
    }
    .title01 .hole_square {
        width: 60px;
    }
}
@media (max-width: 1029px) {
    .title01 > .en {
        font-size: 40px;
    }
    .title01 > .jp {
        font-size: 20px;
    }
    .title01 .hole_square {
        width: 60px;
    }
}


.catch01 {
    font-weight: bold;
    font-size: 2vw;
    line-height: 1.4;
}
.catch01 > p {
    margin: 0!important;
    overflow: hidden;
}
.catch01 > p > span {
    display: block;
}

@media (max-width: 1029px) {
    .catch01 {
        font-size: 25px;
    }
}

@media (max-width: 767px) {

    .catch01 {
        font-size: 20px;
    }

}



.description01 {
    font-size: var(--normal-font-size);
    text-align: justify;
}

.btn01 {
    display: flex;
    justify-content: flex-start;
}

.btn01 > a {
    border: 1px solid var(--gray01);
    color: var(--text-color);
    padding: 0.8em 4em;
    line-height: 1;
    display: inline-block;
    font-weight: 500;
    position: relative;
    min-width: 250px;
    text-align: center;
    font-size: 1.2vw;
    transition: opacity 0.2s;
}
.btn01 > a:after {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.7em;
    background: var(--main-color);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    top: 50%;
    right: 0.5em;
    transform: translateY(-50%);
    transition: right 0.2s;
}

.btn01 > a:hover {
    opacity: 0.5;
}
.btn01 > a:hover:after {
    right: 0.3em;
}

@media (max-width: 1029px) {

    .btn01 > a {
        font-size: 16px;
    }

}


.text_center {
    text-align: center;
}


.btn04 > a {
	padding: 0.5em 3em;
	color: #fff;
	text-align: center;
	background: var(--green01);
    font-size: var(--normal-font-size);
    width: auto;
	max-width: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
	transition: opacity 0.3s;
}
.btn04 > a:hover {
	opacity: 0.7;
}
.btn04 > a > img {
    height: 1em;
    width: auto;
    max-width: 1.5em;
    margin-right: 0.5em;
}


.btn02 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1vw 0;
}

.btn02 > a {
    display: flex;
    gap: 1em;
    align-items: center;
    background: rgba(255,255,255,0.85);
    padding: 0.8em 1em;
    font-size: 1.2vw;
    position: relative;
    color: var(--text-color);
    width: 20vw;
    max-width: 100%;
    font-weight: 500;
    transition: opacity 0.2s;
}
.btn02 > a:before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.7em;
    background: var(--green01);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: relative;
    transition: all 0.2s;
    right: 0;
}

.btn02 > a:hover {
    color: #555;
}
.btn02 > a:hover:before {
    right: -5px;
}

@media (max-width: 1029px) {
    .btn02 > a {
        font-size: 20px;
        width: 100%;
    }
}

@media (max-width: 767px) {

    .btn02 {
        gap: 15px 0;
    }

}


/* *************************************
// ヘッダー・メニュー
************************************* */

.h001 {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 999;
    width: 100%;
    transition: .3s;
}
.h001 #inner-header {
    display: flex;
    justify-content: space-between;
    height: 70px;
    padding: 5px;
    padding-left: 50px;
    align-items: center;
}

.h001 #inner-header .logo {
    align-self: end;
    position: relative;
    z-index: 1;
}
.h001 #inner-header .logo a {
    display: block;
    padding: 5px 0;
}
.h001 #inner-header .logo a img {
    height: 50px;
    width: auto;
}
.h001 .logo a img.first {
    display: none;
}
.h001 .logo a img.normal {
    display: block;
}

.h001 #inner-header .header_box {
    display: flex;
    position: relative;
    z-index: 0;
}

.h001 .header_box .menu {
    display: none;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: var(--blue-grad01);
}

.h001 .header_box .menu_box {
    display: flex;
}

.h001 .header_box .menu_box nav {
    display: flex;
}
.h001 .header_box .menu_box nav > ul {
    display: flex;
}
.h001 .header_box .menu_box nav > ul > li {
    display: flex;
    position: relative;
    padding: 0 5px;
}
.h001 .header_box .menu_box nav > ul > li.hamburger_only {
    display: none;
}

.h001 .header_box .menu_box nav > ul > li > a {
    padding: 10px 10px 15px;
    min-width: 100px;
    display: grid;
    align-content: end;
    text-align: center;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    font-size: 16px;
    overflow: hidden;
}

.h001 .header_box .menu_box nav > ul > li.color_box > a {
  background: var(--green01);
  color: #fff;
  transition: all 0.3s;
  text-shadow: none!important;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h001 .header_box .menu_box nav > ul > li > a:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: calc(100%);
    height: 15px;
    /*background: var(--main-color);*/
    transition: all .3s;
    transform: translateX(-100%);
    transform-origin: left top;

    background-color: #999;
    background-image: url(../images/common/tape2.svg);
    background-size: 100%;
    background-size: auto 100%;
    border: 1px solid #ccc;
}
.h001 .header_box .menu_box nav > ul > li > a:hover:before {
    transform: translateX(0);
}

.h001 .header_box .menu_box nav > ul > li.color_box > a:before {
  display: none;
}
.h001 .header_box .menu_box nav > ul > li.color_box > a:hover {
  background: var(--green02);
}

.h001 .header_box .menu_box .contact_box {
    display: flex;
    justify-content: center;
    align-items: end;
    color: #fff;
    gap: 0 0.5em;
    width: 180px;
    font-weight: bold;
    padding: 15px;
    font-weight: bold;
    transition: opacity 0.3s;
}
.h001 .header_box .menu_box .contact_box:hover {
    opacity: 0.7;
}

.h001 .header_box .menu_box .contact_box img {
    height: 1.8em;
    width: auto;
    display: block;
}

.h001 .header_box .menu_box .contact_box.guide {
    background: var(--orange01);
}

.h001 .header_box .menu_box .contact_box.contact {
    background: var(--blue-grad02);
}


.h001 .header_box .menu_box .contact_list {
    display: none;
}

@media (max-width: 1029px) {
    .h001 {
        top: 0!important;
    }
    .h001 .header_box .menu {
        display: flex;
    }

    .h001 #inner-header .header_box .menu_box {
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        background: #fff;
        margin: 0;
        padding: 100px 80px 80px;
        z-index: 99;
        overflow-y: hidden;
        opacity: 0;
        visibility: hidden;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        display: none;
        transition: all 0.5s;
    }
    .h001 #inner-header .header_box .menu.open + .menu_box {
        opacity: 1;
        visibility: visible;
        display: flex;
    }
    .h001 .header_box .menu_box nav {
        width: 100%;
    }
    .h001 .header_box .menu_box nav > ul {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .h001 .header_box .menu_box nav > ul > li {
        display: block;
        width: 100%;
    }
    .h001 .header_box .menu_box nav > ul > li > a:before {
        content: "";
        display: inline-block;
        width: 0.5em;
        height: 0.8em;
        clip-path: polygon(0 0, 0% 100%, 100% 50%);
        background: var(--blue-grad01);
        transform: none;
        position: relative;
        top: auto;
        bottom: auto;
        left: 0;
        margin-right: 5px;
        display: none;
    }
    .h001 .header_box .menu_box nav > ul > li.menu-item-has-children {
        display: block;
        width: 100%;
    }
    .h001 .header_box .menu_box nav > ul > li.hamburger_only {
        display: block;
    }
    .h001 .header_box .menu_box nav > ul > li > a {
        text-align: left;
        display: inline-block;
        font-size: 20px;
    }
    .h001 .header_box .menu_box nav > ul > li.color_box {
        display: none;
    }

    .h001 .header_box .menu_box .contact_box {
        width: 300px;
        max-width: 50%;
    }
}

@media (max-width: 1029px) {
    .h001 #inner-header .header_box .menu_box {
        padding-left: 5%;
        padding-right: 5%;
    }

    .h001 #inner-header .header_box {
        position: static;
    }

    .h001.header .menu {
        top: 5px;
        right: 5px;
        background: var(--green01);
        border-radius: 0;
    }

    .h001 .header_box .menu_box nav > ul > li > a {
        font-size: 16px;
        line-height: 1.5;
    }

    .h001 .header_box .menu_box .contact_list {
        display: grid;
        width: 100%;
    }
    .h001 .header_box .menu_box .contact_list > .box {
        box-shadow: none;
        border: 1px solid var(--gray01);
    }

}

@media (max-width: 767px) {
    .h001 #inner-header {
        padding: 0;
    }
    .h001 #inner-header .logo {
        width: calc(100% - 70px);
        height: 100%;
        padding-left: 10px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .h001 #inner-header .header_box .menu_box {
        padding-top: 70px;
        gap: 10px;
        overflow-y: auto;
    }

    .h001 .header_box .menu_box nav > ul > li > a {
        padding: 5px;
    }

    .h001 .header_box .menu_box .contact_box {
        width: calc(50% - 5px);
        padding: 15px 0;
    }
}	


/* ファーストビュー */
.h001.first_view {
    background: transparent;
    box-shadow: none;
}
.h001.first_view .logo a img.first {
    display: block;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.3));
}
.h001.first_view .logo a img.normal {
    display: none;
}
.h001.first_view .header_box .menu_box nav > ul > li > a {
    color: #fff;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.8);
}


@media (max-width: 1029px) {
    .h001.first_view .header_box .menu.open + .menu_box nav > ul > li > a {
        color: var(--text-color);
        text-shadow: none;
    }
    .h001.first_view .logo.open a img.first {
        display: none;
    }
    .h001.first_view .logo.open a img.normal {
        display: block;
    }
}



/* *************************************
// 下部お問い合わせ
************************************* */

#bottom_contact {
	padding: 3vw 6.5vw;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

#bottom_contact:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background-image: url(../images/common/bottom_contact.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
}
#bottom_contact:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.7;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.60) 100%);
}

#bottom_contact > .inner {
    position: relative;
    z-index: 0;
}

#bottom_contact .title01 img {
    margin-bottom: 1vw;
}

#bottom_contact .text {
    text-align: center;
    font-size: var(--normal-font-size);
    margin: 1em 0;
}

.contact_list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2vw 5vw;
}
.contact_list > div {
	width: 100%;
}
.contact_list .box {
	background: #fff;
	font-weight: 500;
	text-align: center;
	padding: 1.5vw 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.contact_list .box .icon {
	width: 3vw;
	height: 3vw;
	background: var(--green01);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.contact_list .box .icon > img {
	width: 2vw;
	height: 2vw;
	object-fit: contain;
}
.contact_list .box .title {
    font-size: var(--normal-font-size);
}
.contact_list .box a.tel_number {
	font-size: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 1vw;
}
.contact_list .box .time {
	font-size: 1vw;
}

.contact_list .box .btn04 {
	display: flex;
	justify-content: center;
	margin-top: auto;
}

@media (max-width: 1029px) {
    #bottom_contact {
        padding: 40px 6.5vw;
    }
	.contact_list {
		grid-template-columns: 100%;
	}
    .contact_list > div {
        width: 70%;
        justify-self: center;
    }

    .contact_list .box .title {
        font-size: 20px;
    }
    .contact_list .box a.tel_number {
        font-size: 30px;
    }
    .contact_list .box .time {
        font-size: 14px;
    }
    .contact_list .box .btn04 {
        margin-top: 10px;
    }
    .contact_list .box .btn04 > a {
        font-size: 20px;
    }

}
@media (max-width: 767px) {

    #bottom_contact {
        padding: 30px 15px;
    }  

    .contact_list {
        gap: 20px 0;
    }

    .contact_list .box {
        width: 100%;
        padding: 20px;
    }
    .contact_list .box .title {
        font-size: 16px;
    }
    .contact_list .box .icon {
        width: 25px;
        height: 25px;
    }
    .contact_list .box .icon > img {
        width: 20px;
        height: 20px;
    }
    .contact_list .box a.tel_number {
        font-size: 25px;
    }
    .contact_list .box .time {
        font-size: 12px;
    }
    .contact_list .box .btn04 > a {
        font-size: 16px;
        padding: 0.5em 1em;
    }

}

/* *************************************
// フッター
************************************* */
.f002 {
    background: var(--gray02);
    color: var(--text-color);
    position: relative;
    z-index: 0;
}

.f002 #inner-footer {
    padding-top: 50px;
    padding-bottom: 30px;
    padding-left: 5%;
    padding-right: 5%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0 3vw;
    align-items: start;
}

.f002 .logo img {
    height: 5vw;
    width: auto;
}
.f002 .company_name .jp {
    font-weight: bold;
    font-size: var(--normal-font-size);
    line-height: 1.2;
}
.f002 .company_name .en {
    font-weight: bold;
    font-size: 1vw;
    line-height: 1.2;
}

.f002 .company_list {
    font-size: 1.2vw;
    line-height: 1.4;
    display: grid;
    grid-template-columns: 100%;
    gap: 1vw;
    align-items: start;
}
.f002 .company_list .name {
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.f002 .company_list .name:before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.7em;
    background: var(--main-color);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.f002 .company_list .address,
.f002 .company_list .tel {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1em;
} 

.f002 nav ul li a {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.2vw;
}
.f002 nav ul li a:before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.7em;
    background: var(--main-color);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.f002 nav ul li.bottom {
    margin-top: 3vw;
}
.f002 nav ul li.small a {
    font-size: 1vw;
}


.f002 .copyright {
    background: #fff;
    text-align: center;
    font-size: 1vw;
    padding: 1em;
    color: var(--gray03);
}

@media (max-width: 1029px) {
    .f002 #inner-footer {
        gap: 0 5vw;
        display: flex;
        flex-wrap: wrap;
    }
    .f002 .logo img {
        height: 50px;
    }
    .f002 .company_name .jp {
        font-size: 20px;
    }
    .f002 .company_name .en {
        font-size: 16px;
    }
    .f002 .company_list {
        font-size: 16px;
    }
    .f002 nav {
        width: 100%;
    }
    .f002 nav ul {
        display: flex;
        justify-content: flex-end;
    }

    .f002 nav ul li:not(.bottom) {
        display: none;
    }
    .f002 nav ul li.small a {
        font-size: 14px;
    }
    .f002 .copyright {
        font-size: 14px;
    }
}

@media (max-width: 767px) {

    .f002 #inner-footer {
        justify-content: center;
        gap: 20px;
    }
    .f002 .company_info .logo {
        margin-bottom: 15px;
    }
    .f002 .company_info .company_name {
        text-align: center;
    }
    .f002 .company_list {
        font-size: 14px;
        gap: 15px;
    }

    .f002 nav ul {
        justify-content: center;
    }

    .f002 .copyright {
        font-size: 12px;
    }
}

/* *************************************
// TOPページ
************************************* */
.main_visual {
    padding: 0;
    position: relative;
    z-index: 0;
}

.main_visual video {
    display: block;
    height: 100vh;
    width: 100%;
    object-fit: cover;
    min-height: 600px;
}

.video_wrap img {
    width: 100%;
}

.main_visual_text {
    position: absolute;
    color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: grid;
    align-items: center;
    padding: 80px;
    justify-content: start;
}

.main_visual_text > .inner {
    padding-bottom: 3vw;
}

.main_visual_text h1 {
    font-size: 4vw;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 0.2em;
    text-shadow: 0px 0px 0.5em var(--blue01);
}
.main_visual_text h1 > span {
    display: block;
    letter-spacing: 1px;
    line-height: 1.2;
    height: 1.2em;
}
.main_visual_text h1 > span > span {
    display: inline-block;
    color: #2bde2b;
    width: 0.8em;
    text-align: center;
    font-size: 120%;
    font-weight: 900;
    //text-shadow: 0px 0px 1vw #fff;
    
}

.main_visual_text .subtitle {
    font-size: 1.3vw;
    font-weight: 500;
    text-shadow: 0px 0px 0.5em rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.5s;
    text-shadow: 0px 0px 0.5em var(--blue01);
}

@media (max-width: 1029px) {
    .main_visual video {
        height: auto;
        min-height: 0;
    }

    .main_visual_text {
        padding: 5vw;
    }
    .main_visual_text h1 {
        font-size: 40px;
    }
    .main_visual_text .subtitle {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .main_visual .video_wrap {
        height: 100vh;
        overflow: hidden;
    }
    .main_visual .video_wrap > video {
        height: calc(100% + 10%);
        margin-top: -5%;
        margin-bottom: -5%;
        width: 100%;
    }
    .main_visual .video_wrap img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: 5% center;
    }

    .main_visual_text {
        padding-top: 70px;
    }
    .main_visual_text > .inner {
	    position: absolute;
	    left: 50%;
	    top: 18%;
	    transform: translateX(-50%);
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    align-items: center;
    }
    
    .main_visual_text h1 {
        font-size: 35px;
        width: 200px;
    }
    .main_visual_text .subtitle {
        margin-top: 10px;
        white-space: nowrap;
    }
}


#top_about .title01,
#top_about .catch01,
#top_about .description01 {
    margin-bottom: 1.5vw;
}

@media (max-width: 767px) {

    #top_about .title01,
    #top_about .catch01,
    #top_about .description01 {
        margin-bottom: 20px;
    }

    #top_about .btn01 > a {
        margin-left: auto;
        margin-right: auto;
    }

}


.service01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    background: #e7ecef;
    padding-bottom: 80px;
}

.service01 > .service01_01 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}
.service01 > .service01_02 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}
.service01 > .service01_03 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: end;
}

@media (max-width: 1029px) {

    .service01 {
        display: block;
    }

    .service01 > .service01_03 {
        margin: -50px auto 0;
    }

}
@media (max-width: 767px) {
    .service01 > .service01_03 {
        margin-top: -25px;
    }

}


.service01_01 {
    width: 100%;
    display: grid;
    grid-template-columns: 58% 42%;
    grid-template-rows: auto auto;
    align-items: end;
    background: #fff;
}

.service01_01 img {
    display: block;
    width: 100%;
}

.service01_01 > .image_l {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.service01_01 > .image_s {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 2vw 0 0 2vw;
    position: relative;
    z-index: 0;
}
.service01_01 > .image_s:before {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--green02);
}
.service01_01 > .copy {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    width: 50%;
    justify-self: end;
    margin-bottom: -3.5vw;
    width: 55%;
    margin-bottom: -2.3vw;

}
.service01_01 > .copy > img {
    filter: var(--filter-green02);
}

@media (max-width: 767px) {

    .service01_01 {
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }
    .service01_01 > .image_l {
        width: 80%;
    }
    .service01_01 > .image_s {
        width: 60%;
        padding: 0;
        margin-top: -50px;
        margin-left: auto;
        border-top: 3px solid #fff;
        border-left: 3px solid #fff;
    }
    .service01_01 > .copy {
        order: -1;
        margin-bottom: 0;
        width: 80%;
        margin-left: auto;
    }

    .service01_01 .blur {
        animation-delay: 0;
    }

    .service01_01 > .image_s:before {
        display: none;
    }

}


.service01_02 {
    padding: 4vw 4vw 2vw 2vw;
    display: flex;
    flex-wrap: wrap;
}

.service01_02 img {
    display: block;
    width: 100%;
}

.service01_02 .copy {
    width: 40%;
    position: relative;
}
.service01_02 .copy > img {
    position: absolute;
    bottom: 1vw;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 50%;
    max-inline-size: none;
    max-block-size: none;
    filter: var(--filter-green02);
}

.service01_02 .image_s {
    width: 60%;
    margin-left: auto;
    position: relative;
    z-index: 1;
    border-left: 3px solid var(--gray02);
    border-bottom: 3px solid var(--gray02);
    margin-bottom: -2vw;
}
.service01_02 .image_s:before {
    content: "";
    display: block;
    width: 70%;
    height: auto;
    aspect-ratio: 3 / 2;
    position: absolute;
    top: -2vw;
    right: -2vw;
    z-index: -1;
    background: var(--green02);
}
.service01_02 .image_l {
    width: 70%;
    margin-right: auto;
    position: relative;
    z-index: 0;
    opacity: 0;
}
.service01_02 .image_l:before {
    content: "";
    display: block;
    width: 70%;
    height: auto;
    aspect-ratio: 3 / 2;
    position: absolute;
    bottom: -2vw;
    left: -2vw;
    z-index: -1;
    background: var(--green02);
}

@media (max-width: 1029px) {
    .service01_02 {
        display: block;
    }
    .service01_02 .copy {
        width: 20%;
    }
    .service01_02 .copy > img {
        bottom: -16vw;
    }

    .service01_02 .image_s {
        margin: -50px 10% 0 auto;
    }

    .service01_02 .image_s:before {
        bottom: -2vw;
        top: auto;
    }

    .service01_02 .image_l {
        margin-top: -50px;
    }

}

@media (max-width: 767px) {
    .service01_02 {
        position: relative;
        padding-top: 40px;
    }
    .service01_02 .copy {
        width: 30%;
        top: 60px;
        left: 0;
    }
    .service01_02 .copy > img {
        bottom: 0;
        width: 55px;
    }

    .service01_02 .image_s {
        margin-top: 0;
        margin-right: 0;
    }
    .service01_02 .image_s:before {
        bottom: auto;
        top: -2vw;
    }
}



.service01_03 {
    background: #fff;
    padding: 4vw 3vw;
    width: 85%;
    margin-right: auto;
    position: relative;
    z-index: 2;
}
.service01_03 .title01,
.service01_03 .catch01,
.service01_03 .description01 {
    margin-bottom: 1.5vw;
}

@media (max-width: 767px) {

    .service01_03 {
        padding: 30px 20px;
        width: 90%;
    }
    .service01_03 .title01,
    .service01_03 .catch01,
    .service01_03 .description01 {
        margin-bottom: 20px;
    }
    .service01_03 .btn01 > a {
        margin-left: auto;
        margin-right: auto;
    }
}


.service02 {
    background: #e7ecef;
    padding-bottom: 80px;
}

.service02 .two_in_one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    padding-left: 6.5vw;
    padding-right: 6.5vw;
}

.service02 .two_in_one > div {
    width: 100%;
}

.service02 .title02 {
    width: 80%;
    margin-bottom: 3vw;
}
.service02 .title02 > img {
    width: 100%;
    display: block;
    filter: var(--filter-green02);
}
.service02 .catch01 {
    margin-bottom: 3vw;
} 

.service02 .image {
    width: 100%;
    margin-bottom: 2vw;
}
.service02 .image > img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.service02 .image01 {
    width: 80%;
    margin: 40px auto 0;
}
.service02 .image01 > img {
    width: 100%;
    display: block;
}

.title04 {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5vw;
}
.title04:before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: var(--main-color);
    margin-right: 0.3em;
}

@media (max-width: 1029px) {
    .title04 {
        font-size: 25px;
    }
}
@media (max-width: 767px) {
    .title04 {
        font-size: 20px;
    }
}

.service02 .press_tape .press_image {
    width: 100%;
    margin-bottom: 1vw;
}
.service02 .press_tape .press_image > img {
    width: 100%;
    display: block;
}

.service02 .press_tape .patent {
    font-weight: bold;
    font-size: 2vw;
}
.service02 .press_tape .patent > span:first-child {
    border: 1px solid var(--text-color);
    font-size: 80%;
    padding: 0 0.5em;
}
.service02 .press_tape .patent_text {
    font-size: 1.2vw;
    line-height: 1.5;
}

@media (max-width: 1029px) {
    .service02 .two_in_one {
        grid-template-columns: 100%;
    }
    .service02 .two_in_one > div.right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
    }
    .service02 .title02 {
        width: 35%;
    }

    .service02 .press_tape .patent {
        font-size: 20px;
        display: flex;
        flex-wrap: wrap;
    }
    .service02 .press_tape .patent_text {
        font-size: 16px;
    }

}

@media (max-width: 767px) {
    .service02 {
        padding-bottom: 40px;
    }
    .service02 .two_in_one > div.right {
        grid-template-columns: 100%;
    }

    .service02 .title02 {
        width: 65%;
        margin-bottom: 20px;
    }
    .service02 .catch01 {
        margin-bottom: 20px;
    }

}

#top_service {
    padding-bottom: 0;
}

.environment {
    background: #fff;
    padding: 80px 0;
    position: relative;
}
/*
.environment:before {
    content: "";
    display: block;
    width: 1vw;
    height: 30px;
    width: 40px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: var(--main-color);
    position: absolute;
    bottom: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
}
*/

.environment .two_in_one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image text";
    gap: 4vw;
    padding-left: 6.5vw;
    padding-right: 6.5vw;
    align-items: center;
}

.environment .two_in_one > div {
    width: 100%;
}

.environment .text {
    grid-area: text;
    position: relative;
}
.environment .text img.bg {
    position: absolute;
    top: 50%;
    right: -2vw;
    transform: translateY(-50%);
    height: 100%;
    width: auto;
    z-index: 0;
    opacity: 0.5;
}

.environment .text .title {
    font-size: 3vw;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 1.5vw;
}
.environment .text .catch02 {
    font-size: 1.8vw;
    font-weight: bold;
    margin-bottom: 1.5vw;
}

.environment .text > div {
    z-index: 1;
    position: relative;
}
.environment .image {
    grid-area: image;
}
.environment .image > img {
    display: block;
    width: 100%;
}

.environment .btn01 {
    margin-top: 0.5em;
    justify-content: flex-end;
}
.environment .btn01 > a {
    background: rgba(255,255,255,0.9);
}
.environment .btn01 > a:after {
}

@media (max-width: 1029px) {
    .environment .two_in_one {
        grid-template-columns: 100%;
        grid-template-areas: 'text'
                             'image';
    }
    .environment .text .title {
        font-size: 30px;
    }
    .environment .text .catch02 {
        font-size: 25px;
    }

}

@media (max-width: 767px) {

    .environment {
        padding: 40px 0;
    }
    .environment .two_in_one {
        gap: 40px;
    }
    .environment .text .title ,
    .environment .text .catch02,
    .environment .text .description01 {
        margin-bottom: 20px;
    }

    .environment .text .catch02 {
        font-size: 20px;
    }

    .environment .text .btn01 > a {
        margin: 0 auto;
    }

    .environment .text img.bg {
        width: 50%;
        height: auto;
        top: 75%;
        right: 0;
    }

}


#top_company {
    display: grid;
    grid-template-columns: 6.5vw 1fr 50%;
    grid-template-rows: 1fr auto;
    gap: 0;
    padding: 50px 0;
    overflow: hidden;
}
#top_company:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.8;
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0.60) 100%);
}


#top_company .title01 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
}

#top_company .link_wrap {
    padding: 3vw 60% 3vw 6.5vw;
    grid-column: 1 / 4;
    grid-row: 2 / 3;
    align-self: end;
    width: 100%;
}

#top_company img.company {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    object-fit: cover;
    display: block;
    filter: blur(5px);
}

@media (max-width: 767px) {
    #top_company {
        display: block;
        padding: 50px 6.5vw;
    }
    #top_company .link_wrap {
        padding: 3vw 0;
    }

    #top_company .title01 {
        margin-bottom: 30px;
    }

}


#top_recruit {
    padding-bottom: 0;
}
#top_recruit > .inner {
    display: grid;
    grid-template-columns: 6.5vw 55% 1fr 6.5vw;
    grid-template-rows: auto 1fr;
    gap: 4vw 0;
}

#top_recruit .title01 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

#top_recruit .text {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
    position: relative;
    padding-left: 60%;
    padding: 3vw 6.5vw 3vw calc(55% + 6.5vw);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    overflow: hidden;
    gap: 20px 0;
}
#top_recruit .images {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    width: 90%;
    padding-bottom: 3vw;
}

#top_recruit .text .description01 {
    color: #fff;
    text-shadow: 0px 0px 5px rgba(0,0,0,1);
}

#top_recruit .text .btn01 > a {
    color: #fff;
    border-color: #fff;
}
#top_recruit .text .btn01 > a:after {
    background: #fff;
}

#top_recruit .text img.bg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(3px);
}
#top_recruit .text:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
    background: #333;
}
#top_recruit .images .image {
    width: 70%;
    position: relative;
    border: 2px solid #fff;
}
#top_recruit .images .image:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    background: var(--blue02);    
}
#top_recruit .images .image > img {
    display: block;
    width: 100%;
}
#top_recruit .images > .image:nth-child(1) {
    margin-right: auto;
    z-index: 0;
}
#top_recruit .images > .image:nth-child(2) {
    margin-left: auto;
    margin-top: -2vw;
    z-index: 1;
}

@media (max-width: 1029px) {
    #top_recruit > .inner {
        grid-template-columns: 6.5vw 1fr 6.5vw;

    }
    #top_recruit .title01 {
        grid-column: 2 / 3;
        margin-bottom: 20px;
    }
    #top_recruit .text {
        grid-column: 1 / 4;
        grid-row: 2 / 3;
    }
    #top_recruit .images {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        width: 55%;
        margin-top: -20px;
    }
    #top_recruit .btn01 {
        margin-top: 1.5em;
    }

    #top_recruit .text .description01 br.pc_only {
        display: none;
    }
}
@media (max-width: 767px) {
    #top_recruit > .inner {
        display: block;
    }
    #top_recruit .title01 {
        padding: 0 6.5vw;
    }

    #top_recruit .text {
        padding: 50px 6.5vw;
    }
    #top_recruit .images {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    #top_recruit .text.animated .btn01 {
        margin: 0 auto;
    }
}


#top_news {
    padding: 8vw 6.5vw;
}

#top_news > .inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    gap: 2vw 5vw;
}
#top_news .title01 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}
#top_news .post_list {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    place-content: center;
}
#top_news .btn01 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.post_list {
    display: block;
}
.post_list .post_item {
    width: 100%;
    border-bottom: 1px solid var(--gray01);
}
.post_list .post_item:first-child {
    border-top: 1px solid var(--gray01);
}
.post_list .post_item a {
    display: flex;
    flex-wrap: wrap;
    padding: 1em;
    line-height: 1.2;
    gap: 0.5em 1em;
    color: var(--text-color);
    align-items: baseline;
    font-size: max(16px, var(--normal-font-small));
}
.post_list .post_item a .date {
    color: var(--gray01);
    min-width: 100px;
}
.post_list .post_item a .category {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}
.post_list .post_item a .category > span {
    display: inline-block;
    background: var(--green02);
    color: #fff;
    padding: 0 1em;
    white-space: nowrap;
    line-height: 1.5;
    min-width: 100px;
    text-align: center;
}
.post_list .post_item a .title {
    width: 100%;
}


#top_news .post_list {
    display: grid;
    grid-template-columns: auto auto 1fr;
}
#top_news .post_list .post_item {
    width: 100%;
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 3 span;
}

#top_news .post_list .post_item a {
    display: inherit;
    grid-template-columns: inherit;
    grid-column: inherit;
    align-items: center;
} 

#top_news .post_list .post_item a .date {
    width: auto;
}

#top_news .post_list .post_item .category > span:not(:first-child) {
    display:none;
}

@media (max-width: 1029px) {

    #top_news > .inner {
        gap: 3vw;
    }
    #top_news .post_list {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }
    #top_news .btn01 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        align-self: end;
        justify-self: end;
    }

}
@media (max-width: 767px) {

    #top_news > .inner {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .post_list .post_item a {
        display: flex;
    }
    .post_list .post_item a .date {
        width: 100%;
    }

    #top_news .post_list .post_item a {
        display: flex;
    }
    #top_news .post_list .post_item a .date {
        width: 100%;
    }

    #top_news .btn01 {
        align-self: center;
    }
}


/* 一覧 */
.page_archive {
    padding: 80px 0;
}

.page_archive .cat_list001 {
    margin-top: 0;
}

.cat_list001 > a {
    font-size: max(16px, var(--normal-font-small));
    transition: all 0.3s;
}
.cat_list001 > a:hover {
    background: var(--main-color);
    color: #fff;
    opacity: 0.7;
}

@media (max-width: 767px) {

    .page_archive {
        padding: 40px 0;
    }
    .page_archive .cat_list001 {
        margin-bottom: 20px;
    }
    .cat_list001 > a {
        font-size: 14px;
    }
}



/* *************************************
// 下層ページ
************************************* */
body:not(.home) #content {
    padding-top: 70px;
}

body:not(.home) {
    font-size: max(16px, var(--normal-font-small));
}

body:not(.home) .wrap {
    width: 87vw;
    max-width: none;
    margin: auto;
}

body:not(.home) .normal .wrap {
    max-width: 1200px;
}

/* h1 */
.h003 {
    padding: 200px 5% 50px;
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 3px;
    overflow: hidden;
}
.h003:before {
    content: "";
    display: block;
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-image: url(../images/common/tape2.svg);
    background-size: 100%;
    background-size: auto 100%;
    z-index: 1;
    rotate: -5deg;
    opacity: 0.5;
    display: none;
}

.h003:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
    background: #00F260;
    background: -webkit-linear-gradient(45deg, #0575E6, #00F260);
    background: linear-gradient(45deg, #0575E6, #00F260);
}

.h003 .jp {
    font-size: max(3vw, 40px);
    display: inline-block;
}

.h003 .en {
    font-size: max(1.5vw, 20px);
    display: inline-block;
}
.h003 .category {
    font-size: max(1.5vw, 20px);
    display: block;
}

.h003 img.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: blur(5px);
}

@media (max-width: 1029px) {

    .h003 {
        padding-top: 120px;
    }

}
@media (max-width: 767px) {

    .h003 {
        padding-top: 80px;
        padding-bottom: 20px;
    }
    .h003 .jp {
        font-size: 30px;
    }
    .h003 .en {
        display: block;
        font-size: 16px;
        line-height: 1.2;
    }

}


/* h2 */
.h002 {
    margin-bottom: 50px;
}

.h002 .title01 .en {
    font-size: 4vw;
}

.h002 .title01.animation.animated .en > span {
    animation-delay: 0;
}
.h002 .title01.animation.animated .jp > span {
    animation-delay: 0.3s;
}

@media (max-width: 1029px) {
    .h002 .title01 > .en {
        font-size: 50px;
    }
    .h002 .title01 > .jp {
        font-size: 25px;
    }
    .h002 .title01 .hole_square {
        width: 60px;
    }
}
@media (max-width: 1029px) {
    .h002 {
        margin-bottom: 30px;
    }
    
    .h002 .title01 > .en {
        font-size: 40px;
    }
    .h002 .title01 > .jp {
        font-size: 20px;
    }
    .h002 .title01 .hole_square {
        width: 60px;
    }
}





/*********************
 会社情報
*********************/
#company_message {
    padding: max(8vw, 80px) 0px;
}
#company_message .two_in_one {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 5%;
    align-items: end;
}
#company_message .two_in_one > div {
    width: 100%;
}

#company_message .two_in_one > .profile {
    grid-column: 2 / 3;
    grid-row: 1;
}

#company_message .two_in_one > .interview {
    grid-column: 1 / 2;
    grid-row: 1;
}

#company_message .two_in_one > .profile > .inner {
}

#company_message .subtitle {
    font-weight: bold;
    margin-bottom: 1em;
    margin-top:2em;
    font-size: max(18px, 1.2vw);
}

#company_message .sign {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0 20px;
}

@media (max-width: 1199px) {

    #company_message .interview p br.pc_only {
        display: none;
    }
}

@media (max-width: 1029px) {
    #company_message .two_in_one {
        grid-template-columns: 100%;
        gap: 20px 0;
    }

    #company_message .two_in_one > .profile {
        grid-column: auto;
        grid-row: auto;
        justify-self: center;
        max-width: 300px;
        width: 100%;
    }
    #company_message .two_in_one > .profile .image {
    }
    #company_message .sign {
        justify-content: center;
    }

}

@media (max-width: 767px) {

    #company_message .two_in_one > .profile .image {
        width: 70%;
        margin: auto;
    }

}

#company_philosophy {
    padding: max(8vw, 80px) 0px;
    position: relative;
    z-index: 0;
}
#company_philosophy > img.bg { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0.5;
}
#company_philosophy:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    opacity: 0.5;
    z-index: -1;
}

#company_philosophy .top_philosophy {
    display: grid;
    align-items: center;
    justify-content: start;
    grid-template-columns: auto 25%;
    gap: 10%;
    margin-bottom: 5vw;
}

#company_philosophy .top_philosophy .text {
    width: 100%;
    text-align: left;
}
#company_philosophy .top_philosophy .text .title {
    font-size: max(30px, 3vw);
    font-weight: bold;
}
#company_philosophy .top_philosophy .text .contents {
    font-size: max(20px, 1.5vw);
}
#company_philosophy .top_philosophy .image {
    width: 100%;
}
#company_philosophy .top_philosophy .image > img {
    width: 100%;
    height: auto;
    display: block;
}
#company_philosophy .philosophy01 {
    text-align: left;
    margin-top: 50px;
    margin-bottom: 50px;
}
#company_philosophy .philosophy01 .title {
    font-size: max(30px, 3vw);
    font-weight: bold;
s}
#company_philosophy .philosophy01 .contents {
    font-size: max(20px, 1.5vw);
}

#company_philosophy .five_in_one {
    position: relative;
    z-index: 0;
}
#company_philosophy .five_in_one:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-bottom: 3px solid var(--main-color);
    border-left: 3px solid var(--main-color);
    transform: rotate(-45deg) translateX(-50%);
    position: absolute;
    bottom: 0;
    left: 40px;
    transform-origin: left;
}
#company_philosophy .five_in_one:after {
    content: "";
    display: block;
    width: 3px;
    height: 100%;
    background: var(--main-color);
    position: absolute;
    top: 0;
    left: 40px;
    z-index: -1;
    transform: translateX(-50%);
}
#company_philosophy .five_in_one > div {
    width: 100%;
    display: grid;
    grid-template-columns: 80px 1fr;
    flex-wrap: wrap;
    align-items: center;
    gap: 5%;
    min-height: 200px;
    margin-bottom: -20px;
}

#company_philosophy .five_in_one .circle {
    background: var(--main-color);
    width: 80px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

#company_philosophy .five_in_one .contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

#company_philosophy .five_in_one .contents .title {
    font-size: max(20px, 1.5vw);
    font-weight: bold;
    color: var(--main-color);
}
#company_philosophy .five_in_one .contents .title > span {
    margin: 0 0.5em;
}
#company_philosophy .five_in_one .contents ul > li:before  {
    content: "-"; 
    margin-right: 0.5em;
    display: inline-block;
    color: var(--main-color);
    font-weight: bold;
}
#company_philosophy .five_in_one .contents > .image {
    width: 500px;
    margin-left: auto;
}
#company_philosophy .five_in_one .contents > .image > img {
    display: block;
    width: 300px;
    border: 2px solid #fff;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
#company_philosophy .five_in_one > div:nth-child(even) .contents > .image > img {
    margin-left: auto;
}
#company_philosophy .five_in_one > div:nth-child(odd) .contents > .image > img {
    margin-right: auto;
}


@media (max-width: 1029px) {

    #company_philosophy .top_philosophy {
        grid-template-columns: auto auto;
    }

    #company_philosophy .five_in_one {
        gap: 20px 0;
    }
    #company_philosophy .five_in_one > div {
        margin-bottom: 0;
    }
    #company_philosophy .five_in_one .contents {
        display: grid;
        gap: 20px 40px;
        grid-template-columns: 1fr 250px;
    }
    #company_philosophy .five_in_one .contents > .image {
        grid-column: 2 / 3;
        width: 100%;
    }
    #company_philosophy .five_in_one > div:nth-child(even) .contents > .image > img {
        margin-left: 0;
    }
    #company_philosophy .five_in_one > div:nth-child(odd) .contents > .image > img {
        margin-right: 0;
    }

}

@media (max-width: 767px) {

    #company_philosophy .top_philosophy {
        grid-template-columns: 100%;
    }

    #company_philosophy .top_philosophy .text .title,
    #company_philosophy .philosophy01 .title {
        font-size: 20px;
    }
    #company_philosophy .top_philosophy .text .contents,
    #company_philosophy .philosophy01 .contents {
        font-size: 16px;
    }
    #company_philosophy .top_philosophy .image {
        width: 70%;
        margin: auto;
    }

    #company_philosophy .five_in_one {
        gap: 40px 0;
    }

    #company_philosophy .five_in_one > div {
        align-items: start;
        min-height: 0;
    }

    #company_philosophy .five_in_one .contents {
        grid-template-columns: 100%;
        font-size: 14px;
    }
    #company_philosophy .five_in_one .contents > .image {
        grid-column: auto;
    }
    #company_philosophy .five_in_one .contents .title {
        font-size: 18px;
        line-height: 1.5;
    }
}



#company_profile {
    position: relative;
    z-index: 0;
    padding: 8vw 0 0;
}
#company_profile:after {
    content: "";
    width: 30vw;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--green02);
    z-index: -1;
    background-color: #fff;
    background-image: repeating-linear-gradient(-45deg, var(--green02), var(--green02) 3px, transparent 0, transparent 7px);
    opacity: 0.3;
}

#company_profile .two_in_one {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 5%;
    margin-bottom: 80px;
}
#company_profile .two_in_one > div {
    width: 100%;
}

#company_profile table {
    width: 100%;
}

#company_profile .images {

}
#company_profile .images > .image {
    width: 80%;
    border: 2px solid #fff;
    position: relative;
}
#company_profile .images > .image > img {
    width: 100%;
    display: block;
}
#company_profile .images > .image:nth-child(1) {
    margin-left: auto;
}
#company_profile .images > .image:nth-child(2) {
    margin-right: auto;
    margin-top: -30px;
}

#company_profile .title04 {
    font-size: max(20px, 1.2vw );
    font-weight: 500;
    margin-bottom: 1em;
}

#company_profile .facility {
   padding: 120px 0 80px; 
   background: #fff;
   position: relative;
}
#company_profile .recipient {
   padding: 120px 0 80px; 
   background: #fff;
   position: relative;
}
#company_profile .partner {
   padding: 120px 0 80px; 
   background: #fff;
   position: relative;
}

@media (max-width: 1029px) {

    #company_profile .two_in_one {
        grid-template-columns: 100%;
    }
    #company_profile:after {
       display: none;
    }
    #company_profile .images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    #company_profile .images > .image:nth-child(1) {
        width: 100%;
    }
    #company_profile .images > .image:nth-child(2) {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 767px) {

    #company_profile table tr th {
        border: none;
        background: var(--gray02);
    }
    #company_profile table tr td {
        border: none;
    }

    #company_profile .images {
        grid-template-columns: 100%;
        gap: 0;
    }
    #company_profile .images > .image:nth-child(1) {
        width: 80%;
        margin-right: auto;
        margin-left: 0;
    }
    #company_profile .images > .image:nth-child(2) {
        width: 80%;
        margin-left: auto;
        margin-right: 0;
        margin-top: -20px;
    }

    #company_profile .facility,
    #company_profile .recipient,
    #company_profile .partner {
        padding: 60px 0 40px;
    }

}

#company_access {
    padding: max(8vw, 80px) 0px;
    position: relative;
    z-index: 0;
}
#company_access > img.bg { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0.5;
}
#company_access:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    opacity: 0.5;
    z-index: -1;
}



.access_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
}
.access_list > div {
    width: 100%;
}
.access_list .name {
    margin-bottom: 0.5em;
}
.access_list .address {
    margin-bottom: 1em;
}

.access_list .googlemap {
    width: 100%;
}
.access_list .googlemap > iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
}

@media (max-width: 767px) {
    .access_list {
        grid-template-columns: 100%;
    }
    .access_list .googlemap > iframe {
        aspect-ratio: 16 / 9;
    }
}



#company_history {
    position: relative;
}

.border-line {
    position: absolute;
    left: 10%;
    top: 0;
    width: 40px;
    height: 0;
    background-image: url(../images/common/tape2_row.svg);
    background-size: 100% auto;
    opacity: 1;
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.3));
    opacity: 0.5;
}

.history_list {
    position: relative;
    display: table;
    margin: 0 auto;
    font-size: max(18px, 1.2vw);
    padding-left: 80px;
}

.history_list > div.item {   
    display: grid;
    grid-template-columns: max(120px, 7vw) 100px 1fr;
    align-items: stretch;
    position: relative;
}

.history_list > div.item > div {
    padding: 20px;
}

.history_list > div.item .date {
    width: 100%;
    font-weight: bold;
    color: var(--main-color);
}
.history_list > div.item .month {
    width: 100%;
    font-weight: bold;
    color: #555;
}

@media (max-width: 1029px) {

    .history_list > div.item > div {
        padding: 10px 20px;
    }

}

@media (max-width: 767px) {
    .history_list {
        padding-left: 0;
        display: grid;
        grid-template-columns: 100%;
        gap: 15px 0;
    }
    .history_list > div.item {
        grid-template-columns: 70px 1fr;
        align-items: baseline;
    }
    .history_list > div.item > div {
        padding: 0;
    }
    .history_list > div.item > .month {
        grid-row: 2;
        grid-column: 1 / 2;
        padding-left: 10px;
    }
    .history_list > div.item > .content {
        grid-column: 2 / 3;
        grid-row: 2;
        font-size: 14px;
        line-height: 1.5;
    }

    .border-line {
        left: auto;
        right: 5%;
        opacity: 0.2;
    }

}


#company_environment {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

#company_environment:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #fff;
    opacity: 0.9;
}
#company_environment > img.bg {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;    
    filter: blur(1px);
}
#company_environment > .inner {
    position: relative;
    z-index: 1;
}


#company_environment .two_in_one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5%;
}

#company_environment .two_in_one > div {
    width: 100%;
}

#company_environment .subtitle {
    font-size: max(20px, 2vw);
    margin-bottom: 0.5em;
    font-weight: bold;
}

#company_iso .two_in_one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
#company_iso .two_in_one > div {
    width: 100%;
}

@media (max-width: 1029px) {

    #company_iso .two_in_one {
        grid-template-columns: 100%;
    }
    #company_iso .two_in_one > div.right {
        width: 400px;
        max-width: 100%;
        justify-self: center;
    }

}

@media (max-width: 767px) {

    #company_environment .two_in_one {
        grid-template-columns: 100%;
    }

}


/*********************
 採用情報
*********************/

#archive_recruit {
    padding: 8vw 0 0;
}

#archive_recruit .top_text {
    margin-bottom: 80px;
    text-align: center;
}

#archive_recruit .top_text .catch {
    font-size: max(30px, 3vw);
    margin-bottom: 15px;
    font-weight: bold;
}

#archive_recruit .top_text .catch span.color {
    color: var(--main-color);
}

#archive_recruit .text_center {
    margin: 80px 0;
}

.recruit_slider img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}


@media (max-width: 1029px) {
    #archive_recruit .top_text .description br.sp_only {
        display: block;
    }
}

@media (max-width: 767px) {

    #archive_recruit .top_text .catch {
        font-size: 25px;
    }

    #archive_recruit .top_text {
        margin-bottom: 40px;
    }

}


#recruit_message {
    position: relative;
    z-index: 0;
    background: transparent;
}
#recruit_message:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

#recruit_message .bg {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

#recruit_message .text_center {
    text-align: center;
}

#recruit_message .text_center p {
    line-height: 2;
}

@media (max-width: 1029px) {

    #recruit_message .text_center br.sp_only {
        display: block;
    }

}

@media (max-width: 767px) {

    #recruit_message .text_center {
        text-align: left;
    }
    #recruit_message .text_center p.sign {
        text-align: right;
    }
}




.recruit_list {
    padding-left: 6.5vw;
    padding-right: 6.5vw;
    display: grid;
    grid-template-columns: 100%;
    gap: 50px;
}
.recruit_list > .item {
    border: 1px solid var(--text-color);
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.recruit_list > .item .recruit_list_title {
    padding: 40px 120px 40px 40px;
    cursor: pointer;
    position: relative;
}

.recruit_list > .item .recruit_list_title:before {
    content: "CLICK";
    display: block;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-weight: bold;
    position: absolute;
    bottom: 90px;
    right: 40px;
    width: 50px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}
.recruit_list > .item .recruit_list_title:after {
    content: "＋";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    position: absolute;
    bottom: 40px;
    right: 40px;
}
.recruit_list > .item .recruit_list_title.open:after {
    content: "ー";
}
.recruit_list > .item .recruit_list_title:hover:after {
    background: var(--main-color);
    color: #fff;
}

.recruit_list > .item .recruit_list_title .recruit_name {
    font-size: max(20px, 2vw);
    font-weight: bold;
    margin-bottom: 0.5em;
}

@media (max-width: 767px) {

    .recruit_list > .item .recruit_list_title {
        padding: 30px 20px;
    }
    .recruit_list > .item .recruit_list_title .description {
        font-size: 14px;
        line-height: 1.5;
    }
    .recruit_list > .item .recruit_list_title:before {
        top: 10px;
        bottom: auto;
        right: 20px;
        content: "TAP";
        font-size: 12px;
    }

    .recruit_list > .item .recruit_list_title:after {
        top: 30px;
        right: 30px;
        width: 30px;
        height: 30px;
    }
}


.recruitment_tabs .tab-content {
    padding: 40px;
    position: relative;
}

.recruitment_tabs .tab-content:before {
    content: "";
    display: block;
    width: calc(100% - 80px);
    height: 1px;
    background: var(--text-color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}


.recruitment_tabs .tab-content .title_text {
    font-size: min(5vw, 40px);
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 0;
    font-family: var(--point_font);
}


.recruitment_tabs .tab-content .recruit_department {
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 80px;
    align-items: center;
}
.recruitment_tabs .tab-content .recruit_department > div {
    width: 100%;
}


.recruitment_tabs .tab-content .recruit_department > .image {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
}
.recruitment_tabs .tab-content .recruit_department > .text {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

.recruitment_tabs .tab-content .image {
    border-radius: var(--image_radius);
    box-shadow: var(--image_shadow);
    overflow: hidden;
}
.recruitment_tabs .tab-content .image > img {
    width: 100%;
    display: block;
}

.recruitment_tabs .tab-content .title04 { 
    margin-bottom: 1em;
}

.recruitment_tabs .tab-content ul.check {
    background: #fff;
    padding: 0;
}

@media (max-width: 1029px) {

    .recruitment_tabs .tab-content .recruit_department {
        margin-bottom: 0;
    }
    
}

@media (max-width: 767px) {
    .recruitment_tabs .tab-content {
        padding: 30px 20px;
    }
    .recruitment_tabs .tab-content ul.check {
        margin-bottom: 0;
    }
    .recruitment_tabs .tab-content .recruit_department {
        grid-template-columns: 100%;
        gap: 20px;
        margin-bottom: 30px;
    }
    .recruitment_tabs .tab-content .recruit_department > .image {
        grid-row: auto;
        grid-column: auto;
    }
}



#recruit_interview .interview {
    margin-left: calc((100vw - 100%) / 2 * -1);
    margin-right: calc((100vw - 100%) / 2 * -1);
    position: relative;
    z-index: 0;
    padding-bottom: 50px;
}

#recruit_interview .interview .text {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}


#recruit_interview .interview .text .h002 {
    margin-bottom: 0;
}

#recruit_interview .interview .text .side_text {
    animation-delay: 1s;
}

#recruit_interview .interview .text .h_dot {
    margin-bottom: 10px;
    font-size: 25px;
}
#recruit_interview .interview .text .bg_en {
    font-size: 120px;
    line-height: 1;
    opacity: 0.1;
}

#recruit_interview .interview .interview_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 3vw calc((100vw - 100%) / 2);
    margin-left: calc((100vw - 100%) / 2 * -1);
    margin-right: calc((100vw - 100%) / 2 * -1);
    background: var(--gray02);
    margin-top: 20px;

}
#recruit_interview .interview .interview_list > a {
    position: relative;
    border-radius: var(--image_radius);
    box-shadow: var(--image_shadow);
    display: block;
    max-width: 300px;
    width: calc(25% - 40px);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
}
#recruit_interview .interview .interview_list > a .image {
    overflow: hidden;
    width: 100%;
}
#recruit_interview .interview .interview_list > a  img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    width: 100%;
    transition: all 0.3s;
}

#recruit_interview .interview .interview_list > a:hover  img {
    transform: scale(1.1);
}

#recruit_interview .interview .interview_list > a .info {
    width: 60%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    text-align: center;
    padding-bottom: 20px;
    color: var(--text-color);
    position: relative;
    transition: all 0.3s;
    bottom: 0;
}
#recruit_interview .interview .interview_list > a:hover .info {
    bottom: 10px;
}

#recruit_interview .interview .interview_list > a  .info > span {
    display: block;
}
#recruit_interview .interview .interview_list > a  .info > span.num {
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: 900;
}

#recruit_interview .interview .interview_list > a:nth-child(1) {
    animation-delay: 0.2s;
}
#recruit_interview .interview .interview_list > a:nth-child(2) {
    animation-delay: 0.4s;
}
#recruit_interview .interview .interview_list > a:nth-child(3) {
    animation-delay: 0.6s;
}
#recruit_interview .interview .interview_list > a:nth-child(4) {
    animation-delay: 0.8s;
}

.recruitment_information {
    position: relative;
    z-index: 0;
}
.recruitment_tabs .tab-content .recruitment_information .title_text {
    color: #fff;
    margin-bottom: 40px;
}

.recruitment_information .box {
    background: #fff;
    padding: 40px;
    border-radius: 40px;
}

.recruitment_information .box .btn001 {
    margin-top: 80px;
    margin-bottom: 0;
}

.recruitment_information .box .btn001 > a {
    font-size: 20px;
    padding: 1em 3em;
    justify-content: center;
    background: var(--main-color);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 0;
    position: relative;
}

.recruitment_information .box .btn001 > a:after {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.7em;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    top: 50%;
    right: 0.5em;
    transform: translateY(-50%);
    transition: right 0.2s;
}

.recruitment_information .box .text_center {
    margin-top: 30px;
    font-weight: bold;
    margin-bottom: 0;
}


@media (max-width: 1199px) {
    #recruit_interview .interview > .inner {
        grid-template-columns: 100%;
        gap: 50px;
    }
    #recruit_interview .interview .text {
        grid-column: auto;
        grid-row: auto;
    }
    #recruit_interview .interview .interview_list {
        grid-column: auto;
        grid-row: auto;
        justify-content: center;
        overflow: hidden;
    }
    #recruit_interview .interview .text .bg_en {
        position: absolute;
        writing-mode: vertical-lr;
        right: 0;
        bottom: 0;
    }
    #recruit_interview .interview:before {
        height: 50%;
    }

    #recruit_interview .interview .interview_list > a {
        width: 100%;
        max-width: 100%;
        flex-direction: row-reverse;
        justify-content: center;
    }
    #recruit_interview .interview .interview_list > a .info {
        width: 150px;
        height: 150px;
    }
    #recruit_interview .interview .interview_list > a .image {
        width: 450px;
    }
    #recruit_interview .interview .interview_list > a img {
        aspect-ratio: 3 / 2;
        width: 450px;
    }

    #recruit_interview .interview .interview_list > a:hover .info {
        bottom: 0;
    }
}

@media (max-width: 1029px) {
    #recruit_interview .interview .text {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 40px;
    }

    .recruitment_information .box {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .recruitment_tabs  {
        gap: 15px 0;
    }
    .recruitment_tabs .tab-button {
        width: calc(50% - 20px);
        padding: 5px 10px;

    }
    .recruitment_tabs .tab-content .title_text {
        font-size: 25px;
    }
    .recruitment_tabs .tab-content .two_in_one {
        grid-template-columns: 100%;
        gap: 20px;

    }
    .recruitment_tabs .tab-content .two_in_one.reverse > div:nth-child(1),
    .recruitment_tabs .tab-content .two_in_one.reverse > div:nth-child(2) {
        grid-row: auto;
        grid-column: auto;
    }

    #recruit_interview .interview {
        padding-top: 50px;
        padding-bottom: 0;
    }
    #recruit_interview .interview:before {
        height: 100%;
    }

    #recruit_interview .interview .text {
        margin-bottom: 40px;
    }

    #recruit_interview .interview .interview_list {
        padding: 30px calc((100vw - 100%) / 2) 30px;
    }

    #recruit_interview .interview .interview_list > a {
        position: relative;
        overflow: hidden;
    }
    #recruit_interview .interview .interview_list > a:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,1) 100%);
        opacity: 0.5;
        z-index: 1;
    }

    #recruit_interview .interview .interview_list > a .info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        display: flex;
        flex-direction: row;
        align-items: baseline;
        justify-content: flex-start;
        background: transparent;
        padding: 0 20px;
        gap: 0 1em;
        color: #fff;
        z-index: 2;
    }
    #recruit_interview .interview .interview_list > a .image {
        width: 100%;
    }
    #recruit_interview .interview .interview_list > a img {
        width: 100%;
    }

    .recruitment_information .box {
        padding: 0 0 30px;
    }

    .recruitment_information .box .btn001 {
        margin-top: 40px;
    }

    .recruitment_information .box .btn001 > a {
        padding: 1em;
        margin: 0;
        width: 100%;
        font-size: 16px;
        text-align: center;
    }
}



table.recruit_info {
    min-width: 80%;
    margin: auto;
    font-size: 18px;
}
table.recruit_info th {
    padding: 15px 15px 15px 0;
    border-bottom: 1px solid #ccc;
    width: 200px;
}
table.recruit_info th > span {
    border-left: 5px solid var(--main-color);
    padding-left: 15px;
}
table.recruit_info td {
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

@media (max-width: 767px) {
    table.recruit_info {
        font-size: 14px;
    }

    table.recruit_info th {
        padding: 10px 10px 0 0;
        border-bottom: none;
        font-weight: bold;
    }
    table.recruit_info td {
        padding: 10px;
        line-height: 1.5;
    }
}


ul.check {
    margin: 30px 0;
}

ul.check > li {
    position: relative;
    z-index: 0;
    padding-left: 2em;
}
ul.check > li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1.5em;
    height: 1.5em;
    background-color: var(--main-color);
    border-radius: 50%;
    z-index: 1;
}
ul.check > li:after {
    content: '';
    position: absolute;
    left: 0.45em;
    top: 0.4em;
    transform: rotate(45deg);
    height: 0.9em;
    width: 0.6em;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    z-index: 2;
}
ul.check > li:not(:last-child) {
    margin-bottom: 15px;
}


ul.dot > li {
    position: relative;
    line-height: 1.5;
    margin-bottom: 0.5em;
    padding-left: 1em;
}
ul.dot > li:before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    background: var(--green01);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.5em;
}


ul.slash {
    display: flex;
    flex-wrap: wrap;
}
ul.slash > li {
    white-space: nowrap;
}
ul.slash > li:not(:last-child):after {
    content: "/";
    margin: 0 1em;
}

ul.slash + .small {
    text-align: left;
    font-size: max(12px, 1vw);
    margin-top: 0.5em;
}


/*********************
 先輩インタビュー
*********************/


#interview_top {
	padding: 80px 0;
}
#interview_top .two_in_one {
	align-items: center;
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 5%;
}

#interview_top .two_in_one > div.left,
#interview_top .two_in_one > div.right {
	width: 100%;
}

#interview_top .two_in_one > .left .image {
    border-radius: 0 var(--image_radius) var(--image_radius) 0;
    box-shadow: var(--image_shadow);
    overflow: hidden;
}
#interview_top .two_in_one > .left .image > img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

#interview_top .catchphrase {
    font-size: max(30px, 2vw);
    position: relative;
    font-weight: bold;
    line-height: 1.5;
}

#interview_top .catchphrase > p {
	position: relative;
	display: table;
	color: #fff;
    margin: 10px 0;
}


#interview_top .catchphrase > p > span {
	display: inline-block;
	padding: 5px 20px;
    animation-delay: 0.5s;
    font-weight: bold;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#interview_top .text_box {
    margin: 50px 0;
	letter-spacing: 1px;
	display: table;
	font-size: 18px;
    width: 90%;
}

#interview_top .text_box .date {
    width: 90%;
    text-align: right;
}

#interview_top .info {
	display: flex;
    font-size: 20px;
}

#interview_top .year {
	display: inline-block;
	padding: 0 5px;
}
#interview_top .department {
	margin-left: 20px;
}

#interview_top .name {
	margin-top: 20px;
	margin-bottom: 20px;
}
#interview_top .description {
    width: 90%;
}

#interview_top .name_jp {
	font-size: 40px;
    letter-spacing: 3px;
}

@media (max-width: 1029px) {
    #interview_top .two_in_one {
        grid-template-columns: 100%;
    }
    #interview_top .two_in_one > .right {
        grid-row: 1;
        padding: 0 6.5vw;
    }
    #interview_top .two_in_one > .left {
        grid-row: 2;
    }

    #interview_top .text_box {
        margin: 20px 0;
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: flex-end;
        gap: 0 20px;
        width: 100%;
    }
    #interview_top .name_jp {
        font-size: 35px;
    }

    #interview_top .description {
        width: 100%;
    }
    #interview_top .date {
        text-align: right;
    }
}

@media (max-width: 767px) {
    #interview_top {
        padding: 40px 0;
    }
    #interview_top .catchphrase {
        font-size: 20px;
    }
    #interview_top .text_box {
        font-size: 16px;
    }
    #interview_top .info {
        font-size: 16px;
    }
    #interview_top .name_jp {
        font-size: 22px;
    }
    #interview_top .description {
        font-size: 16px;
    }
    #interview_top .date {
        font-size: 14px;
    }

}


#interview_faq {
    position: relative;
    padding: 80px 0;
}

#interview_faq .faq_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 80px;
}

#interview_faq .faq_list > div.item {
	align-items: center;
}

#interview_faq .faq_list > div.item:nth-child(even) {
	flex-direction: row-reverse;
}


#interview_faq .faq_list > div.item > div.text {
    padding: 0 5%;
    display: grid;
    grid-template-columns: 100%;
    gap: 40px 0;
}


#interview_faq .faq_list > div.item > div.image {
    border-radius: var(--image_radius) 0 0 var(--image_radius);
    box-shadow: var(--image_shadow);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

#interview_faq .faq_list > div.item:nth-child(even) > div.image {
    border-radius: 0 var(--image_radius) var(--image_radius) 0;
}

#interview_faq .faq_list > div.item > div.image > img {
	width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    background: #ccc;
}

#interview_faq .faq_list h4 {
    color: var(--text-color);
	display: flex;
	font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
	position: relative;
    z-index: 0;
    margin-bottom: 30px;
    padding-left: 30px;
}

#interview_faq .faq_list h4:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0.3em;
    width: 1em;
    height: 1em;
    background: var(--main-color);
    box-sizing: content-box;
}

#interview_faq .faq_list .text {
	line-height: 1.8;
    padding-left: 30px;
}

@media (max-width: 1029px) {
    #interview_faq .faq_list > div.item {
        gap: 30px 0;
    }
    #interview_faq .faq_list > div.item > div {
        width: 100%;
    }
    #interview_faq .faq_list > div.item > div.image > img {
        aspect-ratio: 5 / 4;
        width: 65%;
        margin: auto;
    }

}

@media (max-width: 767px) {

    #interview_faq {
        padding: 40px 0;
    }
    #interview_faq .faq_list .text {
        padding-left: 0;
        font-size: 15px;
    }
    #interview_faq .faq_list > div.item > div.image > img {
        aspect-ratio: 1;
        width: 80%;
    }

}



#interview_message {
    padding: 4vw 0;
    margin-bottom: 5vw;
}


.interview_message {
    display: grid;
    align-items: center;
}
.interview_message .h_dot {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: bold;
    display: flex;
    gap: 20px;
    align-items: center;
}

.interview_message .h_dot > img {
    filter:var(--filter-green01);
    height: 50px;
    width: auto;
}

.interview_message .image {
    border-radius: 50%;
    overflow: hidden;
    
}
.interview_message .image > img {
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    width: 100%;
    height: auto;
    background: #ccc;
}

#interview_message .btn001 {
    margin-top: 80px;
    margin-bottom: 0;
}
#interview_message .btn001 > a {
    font-size: 20px;
    background: var(--green01);
    border: none;
    color: #fff;
    padding: 1em 3em;
}

@media (max-width: 1029px) {
    #interview_message {
        padding: 50px 0;
    }
    #interview_message .btn001 {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    #interview_message {
        padding: 20px 0 40px;
    }
    #interview_message .wrap {
        width: 100%;
    }
    .interview_message {
        display: block;
        padding: 30px;
        background: transparent;
        position: relative;
        z-index: 0;
    }

    .interview_message .h_dot {
        font-size: 20px;
    }
    .interview_message .text {
        font-size: 15px;
    }
    #interview_message .btn001 {
        margin-top: 0;
    }

    #interview_message .btn001 > a {
        max-width: 100%;
        padding: 1em 1.5em;
        font-size: 18px;
    }
}

















/* *************************************
// スライダーテスト
************************************* */

.slide_wrapper {
   overflow: hidden;
   padding-top: 100px;
   position: relative;

}

.slide_wrapper > .title {
    position: absolute;
    top: 80px;
    left: 6.5vw;

}

.slide_container {
   display: flex;
   align-items: stretch;
   position: relative;
   height: 100%;
}
.slide_wrapper .slide_container .slide {
  padding: 100px 6.5vw 40px;
  height: auto;
  box-sizing: border-box;
  min-height: 70vh;
}
.slide_wrapper .slide_container .slide .h002 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
}

.slide_wrapper .slide_container .slide > .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    height: 100%;
    position: relative;
    z-index: 1;
}

.slide_wrapper .slide_container .slide .flow_num {
    display: flex;
    gap: 0 10px;
    align-items: baseline;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--green02);
}
.slide_wrapper .slide_container .slide .flow_num .step {
    font-size: max(20px, 2vw);
    font-weight: bold;
}
.slide_wrapper .slide_container .slide .flow_num .num {
    font-size: max(40px, 4vw);
    font-weight: bold;
}
.slide_wrapper .slide_container .slide h3 {
    font-size: max(25px, 2vw);
    margin-bottom: 0.1em;
    font-weight: bold;
    display: inline-block;
    background: var(--green02);
    padding: 0.2em 0.5em;
    color: #fff;
    margin-left: 1em;
    align-self: flex-end;
}

.slide_wrapper .slide_container .slide .catch {
    font-weight: bold;
    margin-bottom: 1em;
    font-size: max(20px, 1.2vw);
    line-height: 1.5;
}

.slide_wrapper .slide_container .slide .image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    width: 100%;
    align-self: stretch;
}

.slide_wrapper .slide_container .slide .image > img {
    display: block;
    position: absolute;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    width: 60%;
    border: 2px solid #fff;
}
.slide_wrapper .slide_container .slide .image > img:nth-child(1) {
    top: 0;
    left: 0;
    width: 55%;
}
.slide_wrapper .slide_container .slide .image > img:nth-child(2) {
    top: 30%;
    right: 0;
    width: 55%;

}
.slide_wrapper .slide_container .slide .image > img:nth-child(3) {
    bottom: 0;
    left: 5%;
    width: 55%;
}

.slide_wrapper .slide_container .slide:first-child {
    z-index: 99;

}
.slide_wrapper .slide_container .slide:first-child:before {
    content: "";
    display: block;
    width: calc(100% * 9);
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background-image: url(../images/common/tape2.svg);
    background-size: 100%;
    background-size: auto 100%;
    z-index: 1;
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.3));
}

.slide_wrapper .slide_container .slide:first-child img.bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}

.slide_wrapper .slide_container .slide:first-child .box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.95);
    padding: 2vw;
}

@media (max-width: 1299px) {
    .slide_wrapper .slide_container .slide {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .slide_wrapper .slide_container .slide .flow_num {
        margin-bottom: 15px;
    }
    .slide_wrapper .slide_container .slide .catch {
        margin-bottom: 15px;
    }
    .slide_wrapper .slide_container .slide .description {
        font-size: clamp(13px, 2vh, 16px);
    }

}

@media (max-width: 1199px) {
    .slide_wrapper .slide_container .slide {
        min-height: auto;
    }
    .slide_wrapper .slide_container .slide > .inner {
        grid-template-columns: 100%;
        place-content: start;
    }
    .slide_wrapper .slide_container .slide h3 {
        margin-bottom: 0;
    }

    .slide_wrapper .slide_container .slide .image {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0 10px;
        aspect-ratio: auto;
    }
    .slide_wrapper .slide_container .slide .image > img {
        position: static;
    }
    .slide_wrapper .slide_container .slide .image > img:nth-child(1) {
        width: 100%;

    }
    .slide_wrapper .slide_container .slide .image > img:nth-child(2) {
        width: 100%;
    }
    .slide_wrapper .slide_container .slide .image > img:nth-child(3) {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .slide_wrapper {
        position: relative;
        z-index: 0;
        padding-top: 40px;
    }
    .slide_wrapper:before {
        content: "";
        display: block;
        height: 100%;
        width: 25px;
        background-image: url(../images/common/tape2_row.svg);
        background-size: 100% auto;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.3));
    }

    .slide_container {
        display: block;
    }

    .slide_wrapper .slide_container .slide {
        padding: 40px 15px 40px 40px;
        min-height: 0;
    }

    .slide_wrapper .slide_container .slide:first-child img.bg,
    .slide_wrapper .slide_container .slide:first-child:before {
        display: none;
    }
    .slide_wrapper .slide_container .slide:first-child .box {
        background: transparent;
        padding: 0;
    }

    .slide_wrapper .slide_container .slide .catch {
        font-size: 18px;
    }
    .slide_wrapper .slide_container .slide .description {
        font-size: 14px;
    }
    .slide_wrapper .slide_container .slide .image {
        display: block;
    }
    .slide_wrapper .slide_container .slide .image > img:nth-child(1) {
        margin-left: auto;
        width: 60%;
    }
    .slide_wrapper .slide_container .slide .image > img:nth-child(2) {
        margin-right: auto;
        margin-top: -20px;
        width: 60%;
    }
    .slide_wrapper .slide_container .slide .image > img:nth-child(3) {
        margin-left: auto;
        margin-top: -20px;
        width: 60%;
    }
}


/*********************
 事業内容
*********************/
#service_about .two_in_one {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 40px;
    align-items: center;
}
#service_about .two_in_one > div {
    width: 100%;
}

#service_about .image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    align-items: center;
}

#service_about .image > img:nth-child(1) {
    width: 100%;
    display: block;
    margin-right: auto;
    margin-right: 0;
}
#service_about .image > img:nth-child(2) {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: 0;

}

@media (max-width: 1199px) {
    #service_about .two_in_one {
        grid-template-columns: 100%;
    }

    #service_about .text br.pc_only {
        display: none;
    }

}

@media (max-width: 767px) {

    #service_about .image {
        grid-template-columns: 100%;
    }

}


#service_presstape .two_in_one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
    align-items: center;
    margin-bottom: 50px;
}
#service_presstape .two_in_one > div {
    width: 100%;
}

#service_presstape  .catch01 {
    margin-bottom: 30px;
}


#service_presstape .box {
    padding: 1.5vw 40px;
    background: #e7ecef;
    margin-bottom: 50px;
}

#service_presstape ul.check {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 0;
}
#service_presstape ul.check > li {
    width: 100%;
}


@media (max-width: 1029px) {

    #service_presstape .two_in_one {
        grid-template-columns: 100%;
    }

}

@media (max-width: 767px) {

    #service_presstape .box {
        padding: 30px 20px;
    }

}

#service_presstape .strength {
    padding: 0 40px;
}

.point_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 20px 60px;
    margin: 40px 0;
}
.point_list > .item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0 40px;
    align-items: center; 
}
.point_list > .item .image {
    width: 100%;
    grid-column: 1 / 2;
    grid-row: 1;
    background: var(--green02);
    display: block;
    padding: 15px;
    border-radius: 50%;
}
.point_list > .item .image > img {
    width: 100%;
    aspect-ratio: 1;
    filter: var(--filter-white);
    object-fit: contain;
    object-position: center;
    display: block;
}

.point_list > .item .text {
    grid-column: 2 / 3;
    grid-row: 1;
}

.point_list > .item .text .title {
    display: flex;
    align-items: baseline;
    font-size: max(25px, 1.5vw);
    font-weight: bold;
    gap: 0 1em;
}
.point_list > .item .text .title .number {
    font-size: 180%;
    line-height: 1;
    color: var(--green01);
}

@media (max-width: 767px) {

    #service_presstape .strength {
        padding: 0;
    }

    .point_list > .item {
        grid-template-columns: 100%;
    }
    .point_list > .item > .text {
        grid-column: 1;
        grid-row: 2;
    }
    .point_list > .item .text .title {
        font-size: 20px;
    }
    .point_list > .item > .image {
        grid-column: 1;
        grid-row: 1;
        width: 80px;
        justify-self: center;
    }
}

#service_products {
    background: var(--gray02);
}

#service_products .text_center {
    margin-bottom: 50px;
}

#service_products .text_center strong {
    font-size: 20px;
}

#service_products .text_center a {
    text-decoration: underline;
    color: var(--text-color);
}

#service_products .products_list_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px 0; 
    width: 1000px;
    max-width: 100%;
    margin: auto;
}

.products_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 30px 0;
    width: 100%;
    background: #555;
    color: #fff;
    font-weight: bold;
    padding: 30px;
    letter-spacing: 1px;
}
.products_list > .item {
    display: grid;   
    grid-template-columns: max(180px, 15vw) 1fr;
    gap: 0 20px;
    align-items: center;
}
.products_list > .item .name {
    font-size: max(1.2vw, 14px);
}
.products_list > .item .image > img {
    height: 60px;
    width: auto;
    max-width: 500px;
    object-fit: cover;
    object-position: left center;
    display: block;
    transition: transform 1s;
}

@media (max-width: 1029px) {

    #service_products .text_center br.sp_only {
        display: block;
    }

}

@media (max-width: 767px) {
    #service_products .text_center {
        text-align: left;
    }
    
    #service_products .products_list_wrap {
        gap: 20px 0;
    }
    .products_list > .item {
        grid-template-columns: 100%;
        gap: 10px;
    }

    .products_list > .item .image > img {
        height: 40px;
    }

}





#service_flow {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}





#service_bottom .catch01 {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#service_bottom .catch01  span.color {
    color: var(--green01);
}

#service_bottom .two_in_one {
    align-items: center;
    display: grid;
    gap: 20px 40px;
    grid-template-columns: 1fr 1fr;
}
#service_bottom .two_in_one > div {
    width: 100%;
}

#service_bottom .image {
    position: relative;
}
#service_bottom .image:after {
content: "";
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--green02);
}

#service_bottom .image > img {
    width: 100%;
}


@media (max-width: 1199px) {
    #service_bottom .two_in_one {
        grid-template-columns: 100%;
    }

    #service_bottom .two_in_one > .images > img {
        width: 600px;
        max-width: 100%;
        margin: auto;
        display: block;
    }

    #service_bottom p br.pc_only {
        display: none;
    }

}



/*********************
 問い合わせ
*********************/

table.mail_form,
.wpcf7 .btn001 input[type="submit"] {
    font-size: 16px;
}
table.mail_form th {
    width: 230px;
}

.wpcf7 .btn001 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.wpcf7 .btn001 input[type="submit"] {
    margin: 0;
}


.wpcf7 form .wpcf7-response-output {
    border: none;
    text-align: center;
    display: table;
    margin: auto;
    font-weight: bold;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    background: #ffdd80;
}
.wpcf7 form.sent .wpcf7-response-output {
	color: #46b450; /* Green */
    background: transparent;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	color: #dc3232; /* Red */
    background: transparent;
}

.wpcf7 form.spam .wpcf7-response-output {
	color: #f56e28; /* Orange */
    background: transparent;
}



/*********************
 プラポリ
*********************/

#privacy_policy h2 {
    font-size: max(20px, 2vw);
    margin: 2em 0 1em;
    font-weight: bold;
}


/*********************
 お知らせ個別ページ
*********************/
.post_single .title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 30px;
}
.post_box {
    padding: 50px 0;
}
.post_box > *:first-child {
    margin-top: 0;
}

.post_box h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 1em;
    margin-top: 2em;
    border-bottom: 1px dashed #cacaca;
    padding-bottom: 0.25em;
}
.post_box h3 {
    font-size: 25px;
    font-weight: bold;
    position: relative;
    padding: 0em 0.5em 0em;
    margin-bottom: 1em;
    margin-top: 2em;
    border-left: 10px solid var(--green02);
}
.post_box h4 {
    font-size: 20px;
    font-weight: bold;
    color: var(--green02);
}

.post_box a:not([class]) {
    text-decoration: underline;
    color: var(--green01);
}

.post_box .scroll_table {
    width:100% !important;
    max-width: 100%;
    overflow-x: auto;
    margin-bottom: 0.5em;
}
.post_box .scroll_table table {
    width: 100%;
    margin-bottom: 0;
}

.post_box table {
    margin-bottom: 0.5em;
}
.post_box table th {
    padding: 10px;
    border: 1px solid #ccc;
    background: var(--gray02);
}
.post_box table td {
    padding: 10px;
    border: 1px solid #ccc;
}

@media (max-width: 767px) {
    .post_single .title {
        font-size: 25px;
    }
    .post_box h2 {
        font-size: 25px;
    }
    .post_box h3 {
        font-size: 20px;
    }
    .post_box h4 {
        font-size: 18px;
    }




    .post_box table th {
        white-space: nowrap;
    }
    .post_box table td {
        white-space: nowrap;
    }

}

