@charset "utf-8";
:root {
  --color-primary: #2AA8E6;
  --color-secondary: #F6FAFC;
  --color-tertiary: #1441A5;
  --color-background: #FFFFFF;
  --color-background-top: #F5FBFE;
  --color-black: #1F335F;
  --color-gray01: #A8A8A8; /* 基本のグレー */
	--color-gray02: #F6F1F1; /* 問い合わせ背景色 */
  --color-gray03: #F2F3F4; /* フッター背景色 */
  --color-white: #FFFFFF;
  --margin-big: 140px;
  --margin-middle: 70px;
  --margin-small: 20px;
  --margin-col: 40px;
  --container-w1: 120px;
  --container-w2: 30px;
  --header-hight: 80px;
}
@media screen and (max-width: 768px) {
  :root {
    --margin-big: 60px;
    --margin-middle: 30px;
    --margin-col: 20px;
    --container-w1: 30px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --margin-big: 40px;
    --margin-middle: 20px;
    --container-w1: 20px;
    --container-w2: 20px;
  }
}
/*====================================================================
Commons
====================================================================*/
/* p-list__bg 背景画像追加・フッター直上に配置 */
.p-list__bg {
  background-image: url("/img/common/pic_bg06.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* フッターと隙間ができないように調整（必要に応じて） */
.l-column__main > .p-list__bg {
  margin-bottom: 0;
}
html, body {
  width: 100%;
  word-wrap: break-word;
  word-break: break-all;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  html, body {
    font-size: 16px;
  }
}
body{
	color: var(--color-black);
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	line-height: 1.8;
  background: var(--color-background);
  font-weight: 400;
}
body.is-home{
  background: var(--color-background-top);
}
img {
  display: block;
	max-width: 100%;
	image-rendering: -webkit-optimize-contrast;
}
::-webkit-full-page-media, :future, :root img{
  image-rendering: auto;
}
svg {
  fill: currentColor;
  max-width: 100%;
}
p {
	margin: var(--margin-small) 0;
}
input, 
button, 
select, 
textarea {
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}
input, 
select, 
textarea {
  background: #FFF;
}
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333;
}
/* Visually hidden but accessible to screen readers */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/*
link
---------------------------------------------------------*/
a {
	transition: all .3s ease;
}
a:link {
	color: var(--color-black);
	text-decoration: none;
}
a:visited {
	color: var(--color-black);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
main a[href$=".pdf"]:not([class])::after {
  content:" ";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/img/common/ico_link_pdf.svg) center center / auto 100% no-repeat;
	margin-left: 0.3em;
  vertical-align: text-bottom;
}
main a[href$=".doc"]:not([class])::after,
main a[href$=".docx"]:not([class])::after{
	content: "";
	background: url(/img/common/ico_link_word.svg) center center / 100% 100% no-repeat;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.4em;
	margin-left: 0.3em;
}
main a[href$=".xls"]:not([class])::after,
main a[href$=".xlsx"]:not([class])::after{
	content: "";
	background: url(/img/common/ico_link_excel.svg) center center / 100% 100% no-repeat;
	width: 1.2em;
	height: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-top: -0.4em;
	margin-left: 0.3em;
}
main a[target="__blank"]:not([class]):not(a[href$=".pdf"]):not(a[href$=".doc"]):not(a[href$=".docx"]):not(a[href$=".xls"]):not(a[href$=".xlsx"])::after {
  content:" ";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(/img/common/ico_link_external01.svg) center center / auto 100% no-repeat;
	margin-top: -0.2em;
	margin-left: 0.3em;
  vertical-align: text-bottom;
}
main .iconnone a[href$=".pdf"]::after,
main .iconnone a[href$=".doc"]::after,
main .iconnone a[href$=".docx"]::after,
main .iconnone a[href$=".xls"]::after,
main .iconnone a[href$=".xlsx"]::after,
main .iconnone a[target="__blank"]::after{
  display: none;
}
/*
navskip
---------------------------------------------------------*/
.navskip { display: none; }
/*====================================================================
Layout……各ページを構成するサイト全体で共通したエリアを管理
====================================================================*/
/*----------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.l-pagetop a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--color-primary);
	border-radius: 50%;
  color: var(--color-white);
}
.l-pagetop a:hover {
  text-decoration: none !important;
}
/*----------------------------------------*/
.l-container01 {
  margin: var(--margin-big) 0;
  position: relative;
}
.l-container01.bg01 {
  background: var(--color-tertiary);
  margin: 0;
  padding: var(--margin-big) 0;
}
.l-container01.bg__contact {
  background: var(--color-tertiary);
  margin: 0;
  padding: var(--margin-middle) 0;
}
.l-container01.bg-recruit {
  margin: 0;
  padding: 0;
}
.l-container02{
  padding: 140px 0;
}
/*----------------------------------------*/
.l-section01 {
  max-width: calc(1120px + (var(--container-w1) * 2));
  width: 100%;
  margin: 0 auto;
  padding: 80px var(--container-w1);
  position: relative;
}
.l-section02 {
  max-width: calc(1120px + (var(--container-w1) * 2));
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
/*----------------------------------------*/
.l-footer{
  background: var(--color-gray03);
  border-top: 1px solid var(--color-secondary);
  padding: var(--container-w1);
  position: relative;
  z-index: 1;
}
.l-footer__address img{
  width: 300px;
}
.l-footer__address a:hover{
  opacity: 0.7;
}
.l-footer__inner{
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1000px) {
  .l-footer__inner{
  flex-direction: column;
}
}
.l-footer__contents{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-footer__logo{
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-footer__nav{
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 1060px) {
  .l-footer__nav{
    justify-content: flex-start;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .l-footer__nav{
    justify-content: center;
  }
}

.l-footer__nav__main li > a,
.l-footer__nav__sub li > a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.l-footer__nav__main li > a::after,
.l-footer__nav__sub li > a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: all .3s;
}
.l-footer__nav__main li > a:hover::after,
.l-footer__nav__sub li > a:hover::after {
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .l-footer__nav__main li > a::after,
  .l-footer__nav__sub li > a::after {
    display: none;
  }
}

.l-footer__nav__main li{
  margin-top: 20px;
}
.l-footer__nav__main li:first-child{
  margin-top: 0;
}
.l-footer__nav__sub li{
  margin-top: 20px;
}
.l-footer__nav__sub li:first-child{
  margin-top: 0;
}
.l-footer__nav__mainmenu{
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 20px;
}
.l-footer__nav__mainmenu > li{
  margin: 0 40px 40px 0;
}
.l-footer__nav__mainmenu > li > a{
  font-weight: 700;
}
.l-footer__nav__childmenu > li > a{
  font-size: .9em;
}
.l-footer__nav__submenu{
  border-left: 1px solid var(--color-secondary);
  padding-left: 40px;
}
.l-footer__nav__submenu > li{
  margin-bottom: 10px;
}
.l-footer__nav__submenu > li > a{
  font-size: .9em;
}
.l-footer__bottom{
  margin-top: 40px;
}
.l-footer__bottom > p{
  margin: 0;
}
  .l-footer__logo{
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .l-footer__logo img{
    margin: auto;
  }
  .l-footer__nav{
    margin: 0;
    width: 100%;
    flex-wrap: wrap;
  }
  .l-footer__nav__mainmenu{
    margin: 0;
    width: 100%;
    flex: auto;
    justify-content: center;
  }
  .l-footer__nav__mainmenu > li{
    margin: 0 20px 40px;
  }
  .l-footer__nav__submenu {
    border-left: none;
    padding-left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 40px;
  }
  .l-footer__nav__submenu > li {
    margin: 10px;
  }

@media screen and (max-width: 480px) {
  .l-footer__nav__mainmenu > li{
    margin: 0 0 20px;
    width: 100%;
  }
  .l-footer__nav__submenu > li{
    margin: 0 0 20px;
    width: 100%;
  }
}
.l-footer__copyright{
  text-align: right;
}
@media (max-width: 1000px) {
    .l-footer__copyright{
        text-align: center;
    }
}

/*----------------------------------------*/
.l-sub__nav__title{
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 700;
}
.l-sub__nav__menu{
  margin-left: 20px;
}
.l-sub__nav__menu > li{
  margin-bottom: 10px;
}
.l-sub__nav__menu > li a{
  color: var(--color-primary);
}
@media screen and (max-width: 1080px) {
  .l-sub__nav__menu{
    margin-left: 0;
    padding: 20px;
    border-top: 1px solid var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary);
  }
}
/*----------------------------------------*/
.l-wrappwer01{
    max-width: calc(1120px + (var(--container-w1) * 2));
    width: 100%;
    margin: 0 auto;
    padding: 80px var(--container-w1);
    position: relative;
}
@media (max-width: 1060px) {
  .l-wrappwer01{
    padding: 80px 0;
  }
}


.l-column__main .l-container01 .l-wrappwer01:first-child{
  padding-top: 0;
  padding-bottom: 0;
}
.l-column{
  width: 100%;
  margin: 0 auto;
  padding: 80px var(--container-w1);
}
.l-column__main{
  width: 100%;
}
.l-column__main .l-container01:first-child{
  margin-top: 0;
  margin-bottom: 0;
}
.l-column__sub{
  width: calc(25% - 40px);
  border-left: 1px solid var(--color-secondary);
}
@media screen and (max-width: 1080px) {
  .l-column__main{
    width: 100%;
  }
  .l-column__sub{
    width: 100%;
    border: none;
    margin-top: var(--margin-big);
  }
}
.p-message__column{
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
}
/*----------------------------------------*/
.l-row {
  display: flex;
  flex-wrap: wrap;
}
.l-row__reverse {
  flex-direction: row-reverse;
}
.l-row__center {
  align-items: center;
}
.l-row__jcenter {
  justify-content: center;
}
.l-row__jspaceb {
  justify-content: space-between;
}
.l-row__childflex1 {
  flex: 1;
}

.l-row .col_img_txt{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l-row .col_img_txt > li {
  margin: 0 calc(var(--margin-col) / 2);
}
.l-row .col_img_txt > li:first-child {
  margin-left: 0;
}
.l-row .col_img_txt > li:last-child {
  margin-right: 0;
}
.l-row .col_img_txt > li img {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .l-row .col_img_txt{
    display: block;
  }
  .l-row .col_img_txt > li {
    margin: 0;
  }
  .l-row .col_img_txt > li:first-child {
    margin-bottom: var(--margin-col);
  }
  .l-row .col_img_txt > li:last-child {
    margin: 0;
  }
  .l-row .col_img_txt > li img {
    margin: auto;
  }
}

.l-row .col0{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l-row .col0 > li {
  margin: 0 calc(var(--margin-col) / 2);
}
.l-row .col0 > li:first-child {
  margin-left: 0;
}
.l-row .col0 > li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .l-row .col0{
    display: block;
  }
  .l-row .col0 > li {
    margin: 0;
  }
  .l-row .col0 > li:first-child {
    margin-bottom: var(--margin-col);
  }
  .l-row .col0 > li:last-child {
    margin: 0;
  }
}
.l-row .col2{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col2 > li {
  width: calc(100% / 2 - (var(--margin-col) / 2));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col2 > li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .l-row .col2 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col2__2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col2__2 > li {
  margin-bottom: var(--margin-col);
}
.l-row .col2__2 > li.text > p {
  margin: initial;
}
.l-row .col2__2 > li.text {
  width: calc(( (100% / 3) * 2 ) - (var(--margin-col) / 2));
}
.l-row .col2__2 > li.img {
  width: calc(( (100% / 3) * 1 ) - (var(--margin-col) / 2));
}
@media screen and (max-width: 480px) {
  .l-row .col2__2 > li.text {
    width: 100%;
  }
  .l-row .col2__2 > li.img {
    width: 100%;
  }
}
.l-row .col3{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col3 > li {
  width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col3 > li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .l-row .col3 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col3 > li:nth-child(odd) {
    margin-right: var(--margin-col);
  }
  .l-row .col3 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col3 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col4{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col4 > li {
  width: calc(100% / 4 - ((var(--margin-col) * 3 ) / 4));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col4 > li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-row .col4 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col4 > li:nth-child(4n) {
    margin-right: var(--margin-col);
  }
  .l-row .col4 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-row .col4 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col4 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col4 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col4 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col5{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col5 > li {
  width: calc(100% / 5 - ((var(--margin-col) * 4 ) / 5));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col5 > li:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-row .col5 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col5 > li:nth-child(5n) {
    margin-right: var(--margin-col);
  }
  .l-row .col5 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-row .col5 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col5 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col5 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col5 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.l-row .col6{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.l-row .col6 > li {
  width: calc(100% / 6 - ((var(--margin-col) * 5 ) / 6));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.l-row .col6 > li:nth-child(6n) {
  margin-right: 0;
}
@media screen and (max-width: 1080px) {
  .l-row .col6 > li {
    width: calc(100% / 3 - ((var(--margin-col) * 2 ) / 3));
  }
  .l-row .col6 > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-row .col6 > li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }
  .l-row .col6 > li:nth-child(3n) {
    margin-right: var(--margin-col);
  }
  .l-row .col6 > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-row .col6 > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
/*====================================================================
Project……再利用予定のないプロジェクト固有のスタイルを管理
====================================================================*/

/*-------------------------------------------*/
.p-topics > li {
  border-bottom: 1px solid var(--color-gray01);
}
.p-topics > li:first-child {
  border-top: 1px solid var(--color-gray01);
}
.p-topics > li > a {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  text-decoration: none;
  padding: 10px 0;
  color: var(--color-black) !important;
}
.p-topics > li > a > .day {
  margin-right: 20px;
  white-space: nowrap;
}
@media (max-width: 768px) {
.p-topics > li > a > .day {
  width: 100%;
}
}
.p-topics > li > a > .category {
  margin: 10px 20px 0 0;
  padding: 0 5px;
  background: var(--color-tertiary);
  width: 10em;
  text-align: center;
  font-size: 0.8em;
}
.p-topics > li > a > .title {
  width: auto;
  font-weight: 500;
  transition: opacity .3s;
}
.p-topics > li > a:hover > .title {
  text-decoration: none;
  opacity: .6;
}
@media screen and (max-width: 768px) {
  .p-topics > li > a {
    flex-wrap: wrap;
  }
}
/*----------------------------------------*/
.p-pager ul {
  display: flex;
  justify-content: center;
  margin: var(--margin-big) 0 0;
  flex-wrap: wrap;
}
.p-pager li {
  margin: 0 5px 10px;
}
.p-pager li a {
  text-decoration: none;
  color: var(--color-primary);
  padding: .5em 1em;
  display: inline-block;
  position: relative;
}
@media (max-width: 500px) {
  .p-pager li a {
    padding: .5em;
}
}
.p-pager li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all .3s;
}
.p-pager li a:hover::after {
  width: 100%;
}
.p-pager li a:hover {
  opacity: 1;
}
.p-pager li.active a {
  font-weight: bold;
}
.p-pager li.active a::after {
  width: 100%;
}
/*----------------------------------------*/
.p-map iframe{
  width: 100%;
  height: 50vh;
  border: none;
}
/*----------------------------------------*/
.p-pageimage{
	background: url(/img/common/pic_title_bg.png) center center / cover no-repeat;
	width: 100%;
	height: calc(445px - var(--header-hight));
  margin-top: var(--header-hight);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.p-pageimage::after {
  content: "";
  display: block;
  position: absolute;
  left: var(--container-w1);
  right: var(--container-w1);
  bottom: 0;
  height: 0;
  border-bottom: 1px solid #D9D9D9;
  pointer-events: none;
}
.p-pageimage__bg{
  padding: 20px;
}
.p-pageimage__bg > h2{
  text-align: center;
  font-size: 3em;
}
.p-pageimage__bg > p{
  margin: 20px 0 0;
  text-align: center;
  font-size: 1.2em;
}
.p-pageimage__bg .c-title__inner{
  margin-bottom: 0;
}
.p-pageimage__bg .c-title__inner .c-title01__en{
  text-align: center;
}
.p-pageimage02{
	width: 100%;
  min-height: 250px;
  margin-top: var(--header-hight);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  border-bottom: 1px solid var(--color-secondary);
}
.p-pageimage02__bg{
  padding: 20px;
}
.p-pageimage02__bg > h2{
  text-align: center;
  font-size: 3em;
  font-weight: 900;
}
.p-pageimage02__bg > p{
  margin: 20px 0 0;
  text-align: center;
  font-size: 1.2em;
}
@media screen and (max-width: 768px) {
  .p-pageimage02__bg > h2{
    font-size: 2em;
  }
  .p-pageimage02{
    min-height: 100px;
  }
}
/*----------------------------------------*/
.p-breadcrumb {
  width: 100%;
  max-width: calc(1120px + (var(--container-w1) * 2));
  padding: 20px var(--container-w1);
  position: relative;
  z-index: 2;
}
.p-breadcrumb__item {
  display: inline;
  font-size: 0.9rem;
  text-decoration: none;
}
.p-breadcrumb__item:not(:last-child):after {
  content: "＞";
  font-weight: 700;
  margin: 0 .5em;
  color: var(--color-gray01);
}
.p-breadcrumb__item a {
  margin-right: 5px;
  font-weight: 400;
  color: var(--color-gray01) !important;
  text-decoration: none;
}
.p-breadcrumb__item a:hover {
  opacity: .6;
  text-decoration: none;
}
.p-breadcrumb__item:last-child a {
  pointer-events: none;
  color: var(--color-primary) !important;
  font-weight: 700;
}
/*----------------------------------------*/
/* form-nav */
.p-formstep {
  display: flex;
  flex-wrap: wrap;
}
.p-formstep > li {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 13px 0;
    line-height: 1.5;
    background: var(--color-secondary);
    color: #999999;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.p-formstep > li > .nm {
  width: 100%;
  display: block;
  font-weight: 700;
}
.p-formstep > li > .tx {
  width: 100%;
  display: block;
}
.p-formstep > li:not(:last-child)::before,
.p-formstep > li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 37px solid transparent;
    border-left: 20px solid var(--color-secondary);
    margin: auto;
}
.p-formstep > li:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #FFF;
}
@media screen and (max-width: 480px) {
  .p-formstep {
    display: block;
  }
  .p-formstep > li:not(:last-child)::before,
  .p-formstep > li:not(:last-child)::after {
    display: none;
  }
  .p-formstep > li {
    border-bottom: 1px solid #FFFFFF;
}
}
/* active */
.p-formstep > li.fs__active {
    z-index: 1;
    background: var(--color-primary);
    color: #FFF;
}
.p-formstep > li.fs__active:not(:last-child)::after {
    border-left-color: var(--color-primary);
}
.p-formstep > li.fs__active:not(:last-child)::before {
    border-left: none;
}
/*----------------------------------------*/
.p-form__bg{
  border: 1px solid var(--color-secondary);
  border-radius: 20px;
  padding: var(--container-w1) 150px;
}
.p-form{
    margin: auto;
}
.p-input{
  width: 100%;
  display: block;
  margin-bottom: 60px ;
}
.p-input > .title__area{
  display: flex;
  align-items: flex-start;
  width: 100%;
  font-weight: 700;
  position: relative;
  margin-bottom: 16px;
}
.p-input > .input__area{
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.p-input > .input__area > .nowrap{
  flex: 1;
  display: flex;
  align-items: center;
}
.p-input > .input__area .attached{
  margin-right: 10px;
  margin-left: 10px;
}
.p-input > .input__area .attached__f{
  margin-right: 10px;
}
.input__flex1{
  flex: 1;
}
.input__error{
  width: 100%;
  color:#DE1963;
}
.input__width01{
  width: 5em;
}
.input__width02{
  width: 8em;
}
.input__width03{
  width: 10em;
}
@media screen and (max-width: 480px) {
  .p-input{
    display: block;
    margin-bottom: 40px;
  }
  .p-input > .title__area{
    margin-bottom: .8em;
  }
  .input__width01{
    width: 100%;
  }
  .input__width02{
    width: 200%;
  }
  .input__width03{
    width: 100%;
  }
}
/*必須・任意*/
.p-required{
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 3px;
  font-size: 0.8em;
  padding: .2em .5em;
  display: flex;
  align-items: center;
  margin-right: .5em;
}
.p-required.any{
  background: var(--color-gray02);
  color: var(--color-black);
}
/*ツールチップ　ヒント*/
.p-tooltip .tip__ico{
  position: absolute;
  top: 0;
  right: 0;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  display: block;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}
.p-tooltip .tip__ico:hover,
.p-tooltip .tip__ico:focus{
  opacity: .6;
}
.p-tooltip .tip__ico::before{
  content: "？";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-primary);
  border-radius: calc(1em * 1.8);
  color: var(--color-white);
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}
.p-tooltip .tip__text{
  width: max-content;
  max-width: 100%;
  background: var(--color-gray03);
  font-size: 0.8em;
  padding: .5em .8em;
  position: absolute;
  bottom: calc(1.7em * 1.8);
  right: 0;
  opacity: 0;
  transform-origin: bottom right;
  transform: scale(0 , 0) ;
  transition: all .3s;
  z-index: 10;
}
.p-tooltip .tip__text::after{
  content: "";
  position: absolute;
  bottom: -10px;
  right: calc((1em * 1.8) / 3);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 10px solid var(--color-gray03);
  border-bottom: 0;
}
.p-tooltip .tip__text > p{
  margin: .5em 0;
}
.p-tooltip .tip__ico:hover + .tip__text,
.p-tooltip .tip__ico:focus + .tip__text,
.p-tooltip .tip__text.is-active{
  display: block;
  transform: scale(1 , 1);
  opacity: 1;
}
/*セレクトボックス*/
.p-input select{
  border-radius: 3px;
  border: 1px solid var(--color-gray01);
  display: inline-block;
  padding: .3em .5em;
  line-height: 1.8;
  width: 100%;
}
.p-input select:focus{
  border: 1px solid var(--color-primary);
}
/*テキストエリア*/
.p-input textarea{
  border-radius: 3px;
  border: 1px solid var(--color-gray01);
  padding: .3em .5em;
  line-height: 1.8;
  height: 8em;
}
.p-input textarea:focus{
  border: 1px solid var(--color-primary);
}
/*その他*/
.p-input input[type="file"]{
  cursor: pointer;
  width: 18em;
}
/*入力フォームまわり*/
.p-input input:not([type="submit"]):not([type="reset"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="color"]):not([type="range"]):not([type="button"]):not([type="hidden"]){
  border-radius: 3px;
  border: 1px solid var(--color-gray01);
  padding: .3em .5em;
  line-height: 1.8;
}
.p-input input:not([type="submit"]):not([type="reset"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="color"]):not([type="range"]):not([type="button"]):not([type="hidden"]):focus{
  border: 1px solid var(--color-primary);
}
/*ラジオボタン・チェックボックス*/
.p-checklist{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -1em;
}
.p-checklist > li{
  margin: 0 1em 1em 0;
  position: relative;
  display: flex;
}
.p-checklist label{
  display: inline-block;
  line-height: 1;
  margin-left: 1.2em;
  cursor: pointer;
}
.p-checklist input[type="radio"]{
  appearance: none;
  background: url(/img/common/ico_radio01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
  cursor: pointer;
  outline: none;
}
.p-checklist input[type="radio"]:checked{
  background: url(/img/common/ico_radio01_2.svg) center center / 100% auto no-repeat;
}
.p-checklist input[type="checkbox"]{
  appearance: none;
  background: url(/img/common/ico_checkbox01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
  cursor: pointer;
  outline: none;
}
.p-checklist input[type="checkbox"]:checked{
  background: url(/img/common/ico_checkbox01_2.svg) center center / 100% auto no-repeat;
}
/*送信ボタン・リセットボタン*/
.p-formbutton{
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-formbutton > button,
.p-formbutton > input{
  margin: 0 .5em;
}
@media screen and (max-width: 1080px) {
  .p-form__bg{
    padding: var(--container-w1) 40px;
  }
}
@media screen and (max-width: 480px) {
  .p-form__bg{
    padding: var(--container-w1) 20px;
  }
}
/*-------------------------------------------*/
.p-faq{
  background: var(--color-tertiary);
  padding: var(--margin-small);
  margin-bottom: var(--margin-small);
}
.p-faq:last-child{
  margin-bottom: 0;
}
.p-faq__q{
  cursor: pointer;
  position: relative;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
}
.p-faq__q:hover{
  opacity: .6;
}
.p-faq__q:focus{
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.p-faq__q:focus:not(:focus-visible) {
  outline: none;
}
.p-faq__q:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.p-faq__q::before{
  content: "";
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--color-black);
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
.p-faq__q::after{
  content: "";
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--color-black);
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(90deg);
  transition: all .3s;
}
.p-faq__q.faq__close::before{
  opacity: 0;
}
.p-faq__q.faq__close::after{
  transform: rotate(450deg);
}
.p-faq__q > p{
  position: relative;
  display: block;
  padding-left: calc(1.2em * 1.8);
  padding-right: calc(12px + .5em);
}
.p-faq__q > p:first-child{
  margin: 0;
}
.p-faq__q > p:last-child{
  margin-bottom: 0;
}
.p-faq__q > p:first-child::before{
  content: "Q";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-primary);
  border-radius: calc(1em * 1.8);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-white);
  font-weight: 700;
}
.p-faq__a {
  margin-top: calc(var(--margin-small) + 10px);
}
.p-faq__a > p{
  position: relative;
  display: block;
  padding-left: calc(1.2em * 1.8);
  padding-right: calc(12px + .5em);
}
.p-faq__a > p:first-child{
  margin: 0;
}
.p-faq__a > p:last-child{
  margin-bottom: 0;
}
.p-faq__a > p:first-child::before{
  content: "A";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-black);
  border-radius: calc(1em * 1.8);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-white);
  font-weight: 700;
}
.p-login{
  background: url(/img/common/pic_image01.png) center center / cover no-repeat;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-login__inner{
  width: 100%;
  max-width: 660px;
  min-height: 300px;
  background: var(--color-white);
  position: relative;
  border-radius: 10px;
  padding: var(--margin-middle);
  margin: var(--margin-middle);
}
.p-login__title img{
  margin: auto;
}
/*-------------------------------------------*/
.p-categorylist{
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  padding: var(--margin-col);
}
.p-categorylist__inner{
  display: flex;
  align-items: center;
}
.p-categorylist__title{
  font-size: 1.8em;
  font-weight: 700;
  margin-right: var(--margin-col);
}
.p-categorylist__list{
  flex: 1;
}
.p-categorylist__list > ul{
  display: flex;
  flex-wrap: wrap;
}
.p-categorylist__list > ul > li{
  margin: 10px 10px 10px 0;
}
.p-categorylist__list > ul > li > a{
  display: inline-block;
  padding: 8px 10px 7px;
  line-height: 1.2;
  background: var(--color-tertiary);
  text-align: center;
  font-size: 1.2rem;
}
.p-categorylist__list > ul > li > a:hover{
  text-decoration: none;
  background: var(--color-tertiary);
}
.p-categorylist__list > ul > li > a.active{
  background: var(--color-secondary);
}

@media screen and (max-width: 768px) {
  .p-categorylist__title{
    font-size: 1.2em;
    margin-right: 0;
  }
  .p-categorylist__inner{
    display: block;
  }
  .p-categorylist__list > ul > li{
    margin: 10px 10px 0 0;
  }
  .p-categorylist__list > ul > li > a{
    font-size: 1rem;
  }
}
/*-------------------------------------------*/
.p-content01{
  position: relative;
  display: flex;
}
.p-content01::before{
  content: "";
  display: block;
  background: url(/img/common/pic_image01.png) center center / cover no-repeat;
  width: calc(100% * .8);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(10%);
}
.p-content01__inner{
  padding: 40px 60px;
  background: var(--color-gray01);
  width: min(90vw, 900px);
  z-index: 1;
  margin-bottom: 80px;
  color: #FFF;
}
.p-content01__inner > h2{
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 900;
}
.p-content01__inner > p{
  margin-bottom: 0;
}
/*-------------------------------------------*/

.p-content02{
  position: relative;
}
.p-content02__inner{
  flex: 1;
  padding: 40px 60px;
  background: var(--color-gray01);
  width: 100%;
  max-width: 600px;
  z-index: 1;
  color: #FFF;
}
.p-content02__inner > h2{
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 900;
}
.p-content02__inner > p{
  margin-bottom: 0;
}
.p-content02__slider{
  position: relative;
  height: 100%;
  margin: max(-50vw , -300px) 0 0 0;
}
.p-content02__slider__inner{
  overflow: hidden;
  margin: 0 0 0 auto;
  width: calc(100% - 630px);
}
@media screen and (max-width: 1080px) {
  .p-content02__slider{
    margin: 0 0 0 0;
  }
  .p-content02__slider__inner{
    width: 100%;
  }
}

/*-------------------------------------------*/
/*====================================================================
Component……再利用可能な小さな単位のモジュールを管理（ボタンなど）
====================================================================*/
/*-------------------------------------------*/
.c-btn-icon01{
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-btn-icon01 > .icon{
  margin-right: 0.5em;
  display: inline-block;
}
.c-btn-icon01 > .icon img{
  width: 1.2em;
}
.c-btn-icon01 > .text{
  line-height: 1.4;
  display: inline-block;
}
.c-btn01{
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 100px;
  display: block;
  font-weight: bold;
  width: auto;
  width: 200px; 
  padding: 15px 52px 15px 30px;
  margin-top: 40px;
  text-align: left;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.c-btn01.c-btn01--center{
  margin-left: auto;
  margin-right: auto;
}
.c-btn01::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("/img/common/ico_arrow01.svg") no-repeat center / contain;
  z-index: 2;
}
.c-btn01::after {
  background: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-btn01:hover {
  color: #fff;
  text-decoration: none;
}
.c-btn01:hover::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='39' height='39' viewBox='0 0 39 39'%3E%3Ccircle cx='19.5' cy='19.5' r='19.5' fill='%23FFFFFF'/%3E%3Cpath d='M22 25L28 19M28 19L22 13M28 19H10' stroke='%232AA8E6' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.c-btn01:hover::after {
  transform: scale(1, 1);
}

.c-btn02{
  background: var(--color-tertiary);
  color: var(--color-white)!important;
  border: 1px solid var(--color-tertiary);
  border-radius: 100px;
  display: block;
  font-weight: bold;
  width: auto;
  width: 200px; 
  padding: 15px 52px 15px 30px;
  margin: 40px 0;
  text-align: left;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.c-btn02::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("/img/common/ico_arrow02.svg") no-repeat center / contain;
  z-index: 2;
}
.c-btn02::after {
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-btn02:hover {
  color: var(--color-black)!important;
  border: 1px solid var(--color-primary);
  text-decoration: none;
}
.c-btn02:hover::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='39' height='39' viewBox='0 0 39 39'%3E%3Ccircle cx='19.5' cy='19.5' r='19.5' fill='%231441A5'/%3E%3Cpath d='M22 25L28 19M28 19L22 13M28 19H10' stroke='%23FFFFFF' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.c-btn02:hover::after {
  transform: scale(1, 1);
}

.c-btn03{
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 100px;
  display: block;
  font-weight: bold;
  width: auto;
  width: 220px;
  padding: 15px 52px 15px 30px;
  text-align: left;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.c-btn03.c-btn03--center{
  margin-left: auto;
  margin-right: auto;
}
.c-btn03::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("/img/common/ico_arrow01.svg") no-repeat center / contain;
  z-index: 2;
}
.c-btn03::after {
  background: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-btn03:hover {
  color: #fff;
  text-decoration: none;
}
.c-btn03:hover::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='39' height='39' viewBox='0 0 39 39'%3E%3Ccircle cx='19.5' cy='19.5' r='19.5' fill='%23FFFFFF'/%3E%3Cpath d='M22 25L28 19M28 19L22 13M28 19H10' stroke='%232AA8E6' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.c-btn03:hover::after {
  transform: scale(1, 1);
}



.c-formbtn01{
  border-radius: 3px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.5em 2em;
  cursor: pointer;
}
.c-formbtn01:hover{
  opacity: .6;
}
.c-formbtn02{
  border-radius: 3px;
  background: var(--color-gray03);
  color: var(--color-black);
  padding: 0.5em 2em;
  cursor: pointer;
}
.c-formbtn02:hover{
  opacity: .6;
}
/*----------------------------------------*/
.c-link__list li {
  display: block;
  position: relative;
  padding-left: 1em;
}
.c-link__list li:before {
  position: absolute;
  left: 0;
  content: ">";
  font-weight: 700;
  font-size: 1em;
}
.c-link__list li:after {
  display: none;
}
/*----------------------------------------*/
.c-box01{
  padding: 1em;
  border: 1px solid var(--color-gray01);
}
.c-box01 > p{
  margin: 0;
}
/*----------------------------------------*/
.c-title__inner{
  margin-bottom: 70px;
}
@media (max-width: 1060px) {
    .c-title__inner{
      margin-bottom: 0;
    }
}


.c-title01__ja{
  font-size: 42px;
  font-weight: 800;
  position: relative;
}
@media (max-width: 1060px) {
    .c-title01__ja{
    font-size: 2rem;
    }
}
.p-pageimage__bg .c-title__inner .c-title01__ja,
.p-pageimage__bg .c-title__inner .c-title01__en{
  text-align: center;
}

.c-title01__en{
  font-size: 24px;
  font-weight: bold;
  color: var(--color-primary);
  margin-top: -16px;
}
.c-title01__en::before{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  margin-right: 8px;
  border-radius: 0;
}
.c-title02{
  font-size: 2em;
  font-weight: 700;
  padding-bottom: .5em;
  margin: 1em 0;
  position: relative;
}
.c-title02::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-secondary);
}
.c-title02::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30%;
  background: var(--color-primary);
}
.c-title03{
  font-size: 1.5em;
  font-weight: 700;
  margin: 20px 0;
  position: relative;
}
.c-title04{
  font-size: 1.5em;
  font-weight: 700;
  padding-left: .5em;
  margin: 1em 0;
  position: relative;
  border-left: 10px solid var(--color-primary);
}
.c-title05{
  font-size: 1.5em;
  font-weight: 700;
  padding: .5em;
  margin: 1em 0;
  position: relative;
  border: 1px solid var(--color-primary);
}
/*----------------------------------------*/
.c-ul__disc {
  list-style-type: none;
}
.c-ul__disc > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.c-ul__disc > li:before {
  position: absolute;
  top: 0.7em;
  left: 0;
  content: "";
  background: var(--color-black);
  border-radius: 10px;
  width: 0.5em;
  height: 0.5em;
}
.c-ul__number {
  list-style: decimal;
  padding-left: 1em;
}
.c-ul__number > li {
  margin-bottom: 0.5em;
}
.c-ul__number > li::marker {
  color: var(--color-black);
}
/*-------------------------------------------*/
.c-page__anchor{
  padding: 0 0 25px 0;
  border-bottom: 1px solid var(--color-primary);
}
.c-page__anchor > ul{
  display: flex;
  flex-wrap: wrap;
}
.c-page__anchor > ul > li {
  position: relative;
  padding: 0 1em 0 calc(20px + .5em);
  margin: .5em 1em .5em 0;
}
.c-page__anchor > ul > li:before {
  content: "";
  background: var(--color-primary);
  width: 20px;
  height: 20px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #d81862;
}
.c-page__anchor > ul > li::after {
  content: "";
  border: 1px solid var(--color-white);
  border-top: none;
  border-left: none;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  font-weight: 700;
  position: absolute;
  left: 5px;
  top: -6px;
  bottom: 0;
  margin: auto;
  color: #d81862;
}
/*----------------------------------------*/
.c-table01 th,
.c-table01 td{
  border: 1px solid var(--color-gray02);
  padding: .5em;
}
.c-table01 th{
  background: var(--color-gray03);
}
/*-------------------------------------------*/
.c-pickup{
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-secondary);
}
a:has( > .c-pickup ){
  text-decoration: none;
  display: block;
}
.c-pickup__img{
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.c-pickup__img > img{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  width: 100%;
  object-fit: cover;
}
.c-pickup__text{
  padding: 15px;
}
.c-pickup__text > h3{
  font-weight: 500;
  color: var(--color-primary);
}
.c-pickup__text__category{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-pickup__text__category > span{
  margin: 0 5px 5px 0;
  padding: 0 5px;
  background: var(--color-tertiary);
  text-align: center;
  font-size: 0.8em;
}
.c-pickup__text__category > span.day{
  background: none;
  padding: 0;
  margin-right: 10px;
  font-size: 1em;
}
/*-------------------------------------------*/
/*====================================================================
.article__area…記事部分の装飾まとめ
====================================================================*/
.article__area a:not([class]):link{
  color: var(--color-primary);
}
.article__area a:not([class]):visited{
  color: var(--color-primary);
}
.article__area h1:not([class]),
.article__area h2:not([class]){
  margin: var(--margin-big) 0 60px;
  font-size: 2.2em;
  font-weight: bold;
  position: relative;
}
.article__area h1:not([class])::after,
.article__area h2:not([class])::after{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: var(--color-primary);
}
.article__area h3:not([class]){
  margin: var(--margin-middle) 0 1em;
  font-size: 1.5em;
  font-weight: 700;
  padding-left: .5em;
  position: relative;
  border-left: 6px solid var(--color-primary);
}
.article__area h4:not([class]){
  font-size: 1.2em;
  font-weight: 700;
  margin: var(--margin-middle) 0 1em;
  position: relative;
  padding: 0.5em 1em;
  background: var(--color-secondary);
  border-radius: 10px;
}
.article__area h5:not([class])::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-secondary);
}
.article__area h5:not([class])::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30%;
  background: var(--color-primary);
}
.article__area h5:not([class]){
  font-size: 1.2em;
  font-weight: 700;
  padding-bottom: .5em;
  margin: var(--margin-middle) 0 1em;
  position: relative;
}
.article__area h5:not([class]) > span{
  display: inline-block;
  border: 1px solid var(--color-primary);
  padding: 0.5em 1em;
}
.article__area h6:not([class]){
  font-size: 1.2em;
  font-weight: 700;
  margin: var(--margin-middle) 0 1em;
  position: relative;
}
.article__area h1:first-child,
.article__area h2:first-child{
  margin-top: 0;
}
.article__area h1:not([class]) + h1:not([class]),
.article__area h1:not([class]) + h2:not([class]),
.article__area h1:not([class]) + h3:not([class]),
.article__area h1:not([class]) + h4:not([class]),
.article__area h1:not([class]) + h5:not([class]),
.article__area h1:not([class]) + h6:not([class]),
.article__area h2:not([class]) + h2:not([class]),
.article__area h2:not([class]) + h3:not([class]),
.article__area h2:not([class]) + h4:not([class]),
.article__area h2:not([class]) + h5:not([class]),
.article__area h2:not([class]) + h6:not([class])
{margin-top: 40px;}
.article__area h3:not([class]) + h3:not([class]),
.article__area h3:not([class]) + h4:not([class]),
.article__area h3:not([class]) + h5:not([class]),
.article__area h3:not([class]) + h6:not([class]),
.article__area h4:not([class]) + h4:not([class]),
.article__area h4:not([class]) + h5:not([class]),
.article__area h4:not([class]) + h6:not([class]),
.article__area h5:not([class]) + h5:not([class]),
.article__area h5:not([class]) + h6:not([class])
{margin-top: 40px;}
@media screen and (max-width: 768px) {
  .article__area h1:not([class]) br,
  .article__area h2:not([class]) br,
  .article__area h3:not([class]) br,
  .article__area h4:not([class]) br,
  .article__area h5:not([class]) br,
  .article__area h6:not([class]) br{
    display: none;
  }
  .article__area h1:not([class]),
  .article__area h2:not([class]){
    font-size: 2rem;
    line-height: 1.5;
  }
  .article__area h3:not([class]){
    line-height: 2;
  }
  .article__area h3:not([class]) > span{
    font-size: 1.6rem;
  }
  .article__area h4:not([class]){
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .article__area h5:not([class]){
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .article__area h6:not([class]){
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.article__area ul:not([class]){
  list-style-type: none;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
}
.article__area ul:not([class]) > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.article__area ul:not([class]) > li:before {
  position: absolute;
  top: 0.75em;
  left: 0;
  content: "";
  background: var(--color-primary);
  width: 6px;
  height: 6px;
  border-radius: 3px;
}
.article__area ul.checklist{
  list-style-type: none;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
}
.article__area ul.checklist > li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.article__area ul.checklist > li:before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(315deg);
}
.article__area ol:not([class]) {
  list-style: decimal;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
  padding-left: 1em;
}
.article__area ol:not([class]) > li {
  margin-bottom: 0.5em;
}
.article__area ol:not([class]) > li::marker {
  font-weight: 700;
  color: var(--color-primary);
}
.article__area ol:not([class]) > li::before {
  color: var(--color-black);
}
.article__area table:not([class]) {
  width: 100%;
}
.article__area table:not([class]) tr {
  border: none;
}
.article__area table:not([class]) th,
.article__area table:not([class]) td {
  border-top: 1px solid var(--color-gray01);
  border-bottom: 1px solid var(--color-gray01);
  border-left: none;
  border-right: none;
  padding: 20px 12px;
}
.article__area table:not([class]) tr:first-child th,
.article__area table:not([class]) tr:first-child td {
  border-top: 1px solid var(--color-gray01);
}
.article__area table:not([class]) tr:last-child th,
.article__area table:not([class]) tr:last-child td {
  border-bottom: 1px solid var(--color-gray01);
}
.article__area table:not([class]) th{
  font-weight: bold;
}
.article__area table:not([class]) th + th,
.article__area table:not([class]) th:has(+ th){
  background: var(--color-secondary);
  width: auto;
  white-space:initial;
}

/*====================================================================
.article__area table:not([class]) th{
  background: var(--color-gray03);
  width: 0;
  white-space: nowrap;
}
.article__area table:not([class]) th + th,
.article__area table:not([class]) th:has(+ th){
  background: var(--color-gray03);
  width: auto;
  white-space:initial;
}
*/

/*====================================================================
Utility…調整のための便利クラスなどを管理
====================================================================*/
.u-left {  text-align: left !important;}
.u-right {  text-align: right !important;}
.u-center {  text-align: center;}
.u-center--pc {  text-align: center;}
@media screen and (max-width: 768px) {
	.u-center--pc {  text-align: left;}
	.u-center--sp {  text-align: center;}
}
@media screen and (max-width: 890px) {
  .u-spbr{
    display: none;
  }
}
@media screen and (min-width: 1061px) {
  .u-pcbr{
    display: none;
  }
}
@media screen and (min-width: 601px) {
  .u-pcbr01{
    display: none;
  }
}
@media screen and (min-width: 501px) {
  .u-pcbr02{
    display: none;
  }
}
.u-lh10{line-height: 1 !important;}
.u-lh12{line-height: 1.2 !important;}
.u-lh14{line-height: 1.4 !important;}
.u-lh16{line-height: 1.6 !important;}
.u-lh18{line-height: 1.8 !important;}
.u-lh20{line-height: 2 !important;}
/*----------------------------------------*/
.u-fnt--bold{font-weight: bold !important;}
.u-fnt--w01{font-weight: 100 !important;}
.u-fnt--w02{font-weight: 200 !important;}
.u-fnt--w03{font-weight: 300 !important;}
.u-fnt--w04{font-weight: 400 !important;}
.u-fnt--w05{font-weight: 500 !important;}
.u-fnt--w06{font-weight: 600 !important;}
.u-fnt--w07{font-weight: 700 !important;}
.u-fnt--w08{font-weight: 800 !important;}
.u-fnt--w09{font-weight: 900 !important;}
/*----------------------------------------*/
.u-fnt--ssss {font-size:0.6em;}
.u-fnt--sss {font-size:0.7em;}
.u-fnt--ss {font-size:0.8em;}
.u-fnt--s {font-size:0.9em;}
.u-fnt--l {font-size:1.1em;}
.u-fnt--ll {font-size:1.2em;}
.u-fnt--lll {font-size:1.4em;}
.u-fnt--llll {font-size:1.6em;}
.u-fnt--lllll {font-size:1.8em;}
.u-fnt--llllll {font-size:2em;}
.u-fnt--lllllll {font-size:2.2em;}
.u-fnt--llllllll {font-size:2.4em;}
.u-fnt--lllllllll {font-size:3em;}
/*----------------------------------------*/
.u-fntcolor--main1 {color: var(--color-primary) !important;}
.u-fntcolor--sub1 {color: #9bd5cc !important;}
.u-fntcolor--red {color: #e41010 !important;}
.u-fntcolor--orange {color: #e48510 !important;}
.u-fntcolor--yellow {color: #e4cf10 !important;}
.u-fntcolor--green {color: #0f9a00 !important;}
.u-fntcolor--blue {color: #1041e4 !important;}
.u-fntcolor--purple {color: #840bc0 !important;}
/*----------------------------------------*/
.u-m--layout01  {margin-top: var(--margin-big) !important;}
.u-m--layout02  {margin-top: var(--margin-middle) !important;}
.u-m--layout03  {margin-top: var(--margin-small) !important;}
.u-m10  {margin: 10px !important;}
.u-m20  {margin: 20px !important;}
.u-m30  {margin: 30px !important;}
.u-m40  {margin: 40px !important;}
.u-m50  {margin: 50px !important;}
.u-m60  {margin: 60px !important;}
.u-m70  {margin: 70px !important;}
.u-m80  {margin: 80px !important;}
.u-m90  {margin: 90px !important;}
.u-m100  {margin: 100px !important;}
.u-mt0  {margin-top: 0 !important;}
.u-mt10 {margin-top: 10px !important;}
.u-mt20 {margin-top: 20px !important;}
.u-mt30 {margin-top: 30px !important;}
.u-mt40 {margin-top: 40px !important;}
.u-mt50 {margin-top: 50px !important;}
.u-mt60 {margin-top: 60px !important;}
.u-mt70 {margin-top: 70px !important;}
.u-mt80 {margin-top: 80px !important;}
.u-mt90 {margin-top: 90px !important;}
.u-mt100 {margin-top: 100px !important;}
.u-mb0  {margin-bottom: 0 !important;}
.u-mb10 {margin-bottom: 10px !important;}
.u-mb20 {margin-bottom: 20px !important;}
.u-mb30 {margin-bottom: 20px !important;}
.u-mb40 {margin-bottom: 40px !important;}
.u-mb50 {margin-bottom: 50px !important;}
.u-mb60 {margin-bottom: 60px !important;}
.u-mb70 {margin-bottom: 70px !important;}
.u-mb80 {margin-bottom: 80px !important;}
.u-mb90 {margin-bottom: 90px !important;}
.u-mb100 {margin-bottom: 100px !important;}
.u-ml0  {margin-left: 0 !important;}
.u-ml10 {margin-left: 10px !important;}
.u-ml20 {margin-left: 20px !important;}
.u-ml30 {margin-left: 30px !important;}
.u-ml40 {margin-left: 40px !important;}
.u-mr0  {margin-right: 0 !important;}
.u-mr10 {margin-right: 10px !important;}
.u-mr20 {margin-right: 20px !important;}
.u-mr30 {margin-right: 30px !important;}
.u-mr40 {margin-right: 40px !important;}
.u-mauto {margin: auto !important;}
.u-m0   {margin: 0 !important;}
/*----------------------------------------*/
.u-p10  {padding: 10px !important;}
.u-p20  {padding: 20px !important;}
.u-p30  {padding: 30px !important;}
.u-p40  {padding: 40px !important;}
.u-p50  {padding: 50px !important;}
.u-p60  {padding: 60px !important;}
.u-p70  {padding: 70px !important;}
.u-p80  {padding: 80px !important;}
.u-p90  {padding: 90px !important;}
.u-p100  {padding: 100px !important;}
.u-pt0  {padding-top: 0 !important;}
.u-pt10 {padding-top: 10px !important;}
.u-pt20 {padding-top: 20px !important;}
.u-pt40 {padding-top: 40px !important;}
.u-pt50 {padding-top: 50px !important;}
.u-pt60 {padding-top: 60px !important;}
.u-pt70 {padding-top: 70px !important;}
.u-pt80 {padding-top: 80px !important;}
.u-pt90 {padding-top: 90px !important;}
.u-pt100 {padding-top: 100px !important;}
.u-pb0  {padding-bottom: 0 !important;}
.u-pb10 {padding-bottom: 10px !important;}
.u-pb20 {padding-bottom: 20px !important;}
.u-pb40 {padding-bottom: 40px !important;}
.u-pb50 {padding-bottom: 50px !important;}
.u-pb60 {padding-bottom: 60px !important;}
.u-pb70 {padding-bottom: 70px !important;}
.u-pb80 {padding-bottom: 80px !important;}
.u-pb90 {padding-bottom: 90px !important;}
.u-pb100 {padding-bottom: 100px !important;}
.u-pl0  {padding-left: 0 !important;}
.u-pl10 {padding-left: 10px !important;}
.u-pl20 {padding-left: 20px !important;}
.u-pl40 {padding-left: 40px !important;}
.u-pr0  {padding-right: 0 !important;}
.u-pr10 {padding-right: 10px !important;}
.u-pr20 {padding-right: 20px !important;}
.u-pr40 {padding-right: 40px !important;}
.u-p0   {padding: 0 !important;}
/*----------------------------------------*/
.u-w50p {  width: 50% !important;}
.u-w100p {  width: 100% !important;}
.u-wauto {  width: auto !important;}
.u-wmx320 {  width: 100% !important;max-width: 320px !important;}
.u-wmx560 {  width: 100% !important;max-width: 560px !important;}
/*----------------------------------------*/
.u-kadomaru01{border-radius: 10px;}
.u-kadomaru02{border-radius: 20px;}
/*----------------------------------------*/
.u-border01{border:1px solid var(--color-primary)}
.u-border02{border:2px solid var(--color-primary)}
.u-bordertop01{border-top:1px solid var(--color-primary)}
.u-borderbottom01{border-bottom:1px solid var(--color-primary)}
/*----------------------------------------*/
.u-nolink{pointer-events: none;}
/*====================================================================
animation
====================================================================*/

/*順々に表示する*/
@keyframes Display__order {
	0% { opacity: 0; }
	100% { opacity: 1;filter: blur(0); transform: translateY(0);}
}
.animeTrigger.display__order .order1,
.animeTrigger.display__order .order2,
.animeTrigger.display__order .order3,
.animeTrigger.display__order .order4,
.animeTrigger.display__order .order5,
.animeTrigger.display__order .order6,
.animeTrigger.display__order .order7,
.animeTrigger.display__order .order8,
.animeTrigger.display__order .order9,
.animeTrigger.display__order .order10{
  opacity: 0;
  filter: blur(30px);
  transform: translateY(100px);
}
.animeTrigger.display__order.animetion .order1{
	animation: Display__order 10s ease .5s 1 forwards;
}
.animeTrigger.display__order.animetion .order2{
	animation: Display__order 10s ease 1s 1 forwards;
}
.animeTrigger.display__order.animetion .order3{
	animation: Display__order 10s ease 1.5s 1 forwards;
}
.animeTrigger.display__order.animetion .order4{
	animation: Display__order 10s ease 2s 1 forwards;
}
.animeTrigger.display__order.animetion .order5{
	animation: Display__order 10s ease 2.5s 1 forwards;
}
.animeTrigger.display__order.animetion .order6{
	animation: Display__order 10s ease 3s 1 forwards;
}
.animeTrigger.display__order.animetion .order7{
	animation: Display__order 10s ease 3.5s 1 forwards;
}
.animeTrigger.display__order.animetion .order8{
	animation: Display__order 10s ease 4s 1 forwards;
}
.animeTrigger.display__order.animetion .order9{
	animation: Display__order 10s ease 4.5s 1 forwards;
}
.animeTrigger.display__order.animetion .order10{
	animation: Display__order 10s ease 5s 1 forwards;
}
/*フェード*/
@keyframes fade {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@-webkit-keyframes fade {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animeTrigger.a-fade{
  opacity: 0;
  transform: translateY(30px);
}
.animeTrigger.animetion.a-fade{
  animation: fade 1s ease 0s 1 forwards;
}
/*====================================================================
print
====================================================================*/
@media print {
	html,body {
    width: 1080px;
    margin: auto;
		-webkit-print-color-adjust: exact;
	}
  header {
		display: none;
	}
}
/*====================================================================
トップページ
====================================================================*/
.p-aboutus__section .c-title__inner{
  margin: 0;
}
.p-aboutus__wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 890px) {
  .p-aboutus__wrap{
    flex-direction:column-reverse;
    align-items: flex-start;
    gap: 40px;
  }
}
@media (max-width: 890px) {
  .p-aboutus__text{
    width: 100%;
  }
}
@media (max-width: 890px) {
  .p-aboutus__text div .c-btn01{
    margin: 40px auto;
  }
}
.p-aboutus__img img{
  max-width: 460px;
  width: 100%;
}
@media (max-width: 890px) {
  .p-aboutus__img{
    max-width: 300px;
    margin: 0 auto;
}
}
@media (max-width: 768px) {
  .p-aboutus__img img{
    margin: 0 auto;
  }
}
.p-cta__section .c-title__inner{
  margin: 0;
}
.p-cta__section{
  padding: 0 var(--container-w1);;
}
.p-news__section{
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.p-news__bg{
  position: relative;
  background: var(--color-white);
}
.p-news__row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 1061px) {
  .p-news__row{
  flex-wrap: nowrap;
  gap: 50px;
  }
}
@media (max-width: 1060px) {
    .p-news__row{
    flex-direction: column;
    }
}
@media (max-width: 1060px) {
  .p-news__row .c-tab01{
  margin-top: 40px;
}
}
.p-news__row__text{
  display: flex;
  flex-direction: column;
}
@media (max-width: 1060px) {
    .p-news__row__text{
        display: contents;
    }
}
.p-news__row__text .c-btn01{
  margin-top: 20px;
}
@media (max-width: 1060px) {
    .p-news__row__text .c-btn01{
        margin-top: 40px;
    }
}


.c-title__inner{
  order: 0;
}
.c-tab01{
  order: 1;
  width: 100%;
}
.p-news__btn{
  order: 0;
}
@media (max-width: 1060px) {
    .p-news__btn{
        order: 2;
        margin: 0 auto;
    }
}

.l-btn__box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.p-products__section{
  background: #E2ECF2;
  border-radius: 50px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-products__section .c-title03{
  border-bottom: 1px solid var(--color-gray01);
  text-align: center;
  width: 600px;
  margin: 0 auto;
  margin-top: 60px;
}
@media (max-width: 900px) {
    .p-products__section .c-title03{
        width: 100%;
    }
}

.p-products__low{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.p-products__low__item{
  position: relative;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 40px 20px;
  width: calc(30% - 40px); /* gapが10pxの場合、左右合わせて20px分を引く */
  box-sizing: border-box; /* パディングを含めた幅計算 */
  transition: background-color 0.6s ease;
}
@media (max-width: 1060px) {
    .p-products__low__item{
      width: calc(50% - 40px); /* gapが10pxの場合、左右合わせて20px分を引く */
    }
}
@media (max-width: 768px) {
    .p-products__low__item{
      width: 100%;
    }
}


.p-products__low__item:hover{
  background-color: var(--color-black);
}
.p-products__low__item:hover a,
.p-products__low__item:hover .p-products__low__item__title,
.p-products__low__item:hover .u-center{
  color: var(--color-white);
}
.p-products__low__item:hover .p-products__low__item__title{
  border-bottom-color: var(--color-white);
}
.p-products__low__item:last-child:hover{
  background-color: var(--color-white);
}
.p-products__low__item:last-child:hover a,
.p-products__low__item:last-child:hover .p-products__low__item__title,
.p-products__low__item:last-child:hover .u-center{
  color: inherit;
}
.p-products__low__item:last-child:hover .p-products__low__item__title{
  border-bottom-color: var(--color-gray01);
}
.p-products__low__item:last-child:hover .p-products__low__arrow{
  background-image: url("/img/common/ico_arrow01.svg");
}

.p-products__low__item a,
.p-products__low__item .p-products__low__item__title,
.p-products__low__item .u-center{
  transition: color 0.6s ease, border-color 0.6s ease;
}

.p-products__low__item__img img{
  width: 50%;
  margin: 0 auto;
  border-radius: 50%;
}

.p-products__low__item__title{
  border-bottom: 1px solid var(--color-gray01);
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
  padding-bottom: 6px;
}

.p-products__low__arrow{
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 39px;
  height: 39px;
  background: url("/img/common/ico_arrow01.svg") center center / contain no-repeat;
}
.p-products__low__item:hover .p-products__low__arrow{
  background-image: url("/img/common/ico_arrow01_white.svg");
}

.p-products__low__item a:hover{
  text-decoration: none;
}

.p-products__lower__section{
  border-radius: 50px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-products__lower__section .c-title03{
  border-bottom: 1px solid var(--color-gray01);
  text-align: center;
}

.p-products__lower__section .c-title03{
  margin-top: 60px;
}

.p-products__lower__section .p-products__low__item__title{
  color: var(--color-black);
}

.p-products__lower__section .p-products__low__item {
  border: 3px solid var(--color-primary);
}

.p-products__lower__section .p-products__low__item p{
  color: var(--color-black);
}


.p-recruit__section{
  position: relative;
  overflow: hidden;
  background: #1F759F url("/img/top/pic_recruit_bg.png") center center / cover no-repeat;
  text-align: center;
  max-width: 100%;
  margin: 0;
  padding: 80px var(--container-w1);
}

.p-recruit__section{
  color: var(--color-white);
}

.p-recruit__section .c-title__inner .c-title01__en{
  color: var(--color-white);
}

.p-recruit__section .c-btn01:hover{
border: 1px solid var(--color-white);
}

.p-recruit__section > :not(.p-recruit__float) {
  position: relative;
  z-index: 1;
}
.p-recruit__float {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 20px 130px;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1160px) {
  .p-recruit__float {
    position: relative;
    inset: auto;
    padding: 40px 0 0;
    overflow: hidden;
    height: 460px;
    margin: 50px calc(var(--container-w1) * -1) 0;
    width: calc(100% + (var(--container-w1) * 2));
  }
}
.p-recruit__float-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 1160px) {
  .p-recruit__float-col {
    flex-direction: row;
    gap: 28px;
  }
}
.p-recruit__float-col--left,
.p-recruit__float-col--right {
  animation-duration: 40s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media (max-width: 1160px) {
  .p-recruit__float-col--left,
  .p-recruit__float-col--right {
    position: absolute;
    top: 0;
  }
}
.p-recruit__float-col--left {
  animation-name: recruit-float-up;
}
@media (max-width: 1160px) {
  .p-recruit__float-col--left {
    animation-name: recruit-float-left;
  }
}
.p-recruit__float-col--right {
  animation-name: recruit-float-down;
}
@media (max-width: 1160px) {
  .p-recruit__float-col--right {
    animation-name: recruit-float-right;
    top: 230px;
  }
}
.p-recruit__float-item {
  width: 300px;
  height: 300px;
  background: url("/img/top/pic_recruit_item01.png") center center / contain no-repeat;
  opacity: 1;
  flex-shrink: 0;
}
@media (max-width: 1400px) {
  .p-recruit__float-item {
      width: 200px;
      height: 200px;
  }
}


.p-recruit__float-col--left .p-recruit__float-item:nth-child(1),
.p-recruit__float-col--left .p-recruit__float-item:nth-child(7) {
  background-image: url("/img/top/pic_recruit_item01.png");
}
.p-recruit__float-col--left .p-recruit__float-item:nth-child(2),
.p-recruit__float-col--left .p-recruit__float-item:nth-child(8) {
  background-image: url("/img/top/pic_recruit_item02.png");
}
.p-recruit__float-col--left .p-recruit__float-item:nth-child(3),
.p-recruit__float-col--left .p-recruit__float-item:nth-child(9) {
  background-image: url("/img/top/pic_recruit_item03.png");
}
.p-recruit__float-col--left .p-recruit__float-item:nth-child(4),
.p-recruit__float-col--left .p-recruit__float-item:nth-child(10) {
  background-image: url("/img/top/pic_recruit_item01.png");
}
.p-recruit__float-col--left .p-recruit__float-item:nth-child(5),
.p-recruit__float-col--left .p-recruit__float-item:nth-child(11) {
  background-image: url("/img/top/pic_recruit_item02.png");
}
.p-recruit__float-col--left .p-recruit__float-item:nth-child(6),
.p-recruit__float-col--left .p-recruit__float-item:nth-child(12) {
  background-image: url("/img/top/pic_recruit_item03.png");
}
.p-recruit__float-col--right .p-recruit__float-item:nth-child(1),
.p-recruit__float-col--right .p-recruit__float-item:nth-child(7) {
  background-image: url("/img/top/pic_recruit_item04.png");
}
.p-recruit__float-col--right .p-recruit__float-item:nth-child(2),
.p-recruit__float-col--right .p-recruit__float-item:nth-child(8) {
  background-image: url("/img/top/pic_recruit_item05.png");
}
.p-recruit__float-col--right .p-recruit__float-item:nth-child(3),
.p-recruit__float-col--right .p-recruit__float-item:nth-child(9) {
  background-image: url("/img/top/pic_recruit_item06.png");
}
.p-recruit__float-col--right .p-recruit__float-item:nth-child(4),
.p-recruit__float-col--right .p-recruit__float-item:nth-child(10) {
  background-image: url("/img/top/pic_recruit_item04.png");
}
.p-recruit__float-col--right .p-recruit__float-item:nth-child(5),
.p-recruit__float-col--right .p-recruit__float-item:nth-child(11) {
  background-image: url("/img/top/pic_recruit_item05.png");
}
.p-recruit__float-col--right .p-recruit__float-item:nth-child(6),
.p-recruit__float-col--right .p-recruit__float-item:nth-child(12) {
  background-image: url("/img/top/pic_recruit_item06.png");
}
@keyframes recruit-float-down {
  0% { transform: translateY(calc(-6 * (300px + 28px))); }
  100% { transform: translateY(0); }
}
@keyframes recruit-float-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-6 * (300px + 28px))); }
}
@keyframes recruit-float-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-6 * (200px + 28px))); }
}
@keyframes recruit-float-right {
  0% { transform: translateX(calc(-6 * (200px + 28px))); }
  100% { transform: translateX(0); }
}
@media screen and (max-width: 768px) {
  .p-recruit__float {
    padding: 0;
    height: 320px;
  }
  .p-recruit__float-col--right {
    top: 170px;
  }
  .p-recruit__float-item {
    width: 140px;
    height: 140px;
  }
  @keyframes recruit-float-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-6 * (140px + 28px))); }
  }
  @keyframes recruit-float-right {
    0% { transform: translateX(calc(-6 * (140px + 28px))); }
    100% { transform: translateX(0); }
  }
}

/*====================================================================
company
====================================================================*/
.p-flex__low{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media (min-width: 1061px) {
  .p-flex__low{
    width: 1000px;
    margin: 0 auto;
  }
}
.p-flex__low__item{
  background-color: var(--color-white);
  border: 3px solid var(--color-primary);
  position: relative;
  border-radius: 10px;
  padding: 10px 10px 46px 10px;
  width: calc(30% - 40px); /* gapが10pxの場合、左右合わせて20px分を引く */
  box-sizing: border-box; /* パディングを含めた幅計算 */
  transition: background-color 0.6s ease;
}
@media (max-width: 1060px) {
    .p-flex__low__item{
      width: calc(50% - 40px); /* gapが10pxの場合、左右合わせて20px分を引く */
    }
}
@media (max-width: 600px) {
    .p-flex__low__item{
      width: 100%;
      padding: 30px 40px 46px 40px;
    }
}
.p-flex__low__item__img img{
  border-radius: 10px;
}
@media (max-width: 600px) {
  .p-flex__low__item__img img{
    margin: 0 auto;
    width: 500px;
}
}



.p-flex__low__item:hover{
  background-color: var(--color-black);
  border: 3px solid var(--color-black);
}
.p-flex__low__item:hover a,
.p-flex__low__item:hover .p-flex__low__item__title,
.p-flex__low__item:hover .u-center{
  color: var(--color-white);
  text-decoration: none;
}
.p-flex__low__item:hover .p-flex__low__item__title{
  border-bottom-color: var(--color-white);
}
.p-products__item__last:hover{
  background-color: var(--color-white);
  border: 3px solid var(--color-primary);
}
.p-products__item__last:hover a,
.p-products__item__last:hover .p-flex__low__item__title,
.p-products__item__last:hover .u-center{
  color: var(--color-black);
}
.p-products__item__last:hover .p-flex__low__item__title{
  border-bottom-color: var(--color-gray01);
}

.p-flex__item a,
.p-flex__low__item .p-flex__low__item__title,
.p-flex__low__item .u-center{
  transition: color 0.6s ease, border-color 0.6s ease;
}

.p-flex__item__img img{
  width: 50%;
  margin: 0 auto;
}

.p-flex__low__item__title{
  border-bottom: 1px solid var(--color-gray01);
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
  padding-bottom: 6px;
}

.p-flex__low__item .u-center{
  margin: 0;
}

.p-flex__low__arrow{
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 39px;
  height: 39px;
  background: url("/img/common/ico_arrow01.svg") center center / contain no-repeat;
}
.p-flex__low__item:hover .p-flex__low__arrow{
  background-image: url("/img/common/ico_arrow01_white.svg");
}

.p-flex__lower__section{
  border-radius: 50px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-flex__lower__section .c-title03{
  border-bottom: 1px solid var(--color-gray01);
  text-align: center;
}

.p-flex__lower__section .c-title03{
  margin-top: 60px;
}

.p-flex__lower__section .p-flex__low__item__title{
  color: var(--color-black);
}

.p-flex__lower__section .p-flex__low__item {
  border: 3px solid var(--color-primary);
}

.p-flex__lower__section .p-flex__low__item p{
  color: var(--color-black);
}

/*-------------------message---------------------*/
.p-message__container{
  padding: 0 var(--container-w1);
}
.l-low{
  display: flex;
  gap: 60px;
}
@media (max-width: 1100px) {
  .l-low{
      flex-direction: column-reverse;
      gap: 40px;
  }
}
.p-message__image{
  width: 320px;
}

@media (max-width: 1100px) {
  .p-message__image{
      width: 100%;
      margin: 0 auto;
  }
}
@media (max-width: 1100px) {
  .p-message__image img{
      margin: 0 auto;
  }
}
.p-message__section{
  padding: 40px 0;
}
.p-message__section .l-low .p-low__item .c-title03{
  margin-top: 0;
}
.p-topmessage__bg {
  position: relative;
  z-index: 1;
}
@media (max-width: 1060px) {
    .p-topmessage__bg{
        padding: 40px;
    }
}
@media (max-width: 500px) {
    .p-topmessage__bg{
        padding: 20px;
    }
}
@media (max-width: 1100px) {
    .p-message__section .l-low3{
        flex-direction: column-reverse!important;
        gap: 40px;
    }
}


.p-message__section .l-low{
  margin-top: 0;
}

.p-massage__bg{
  position: relative;
}

.p-massage__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  z-index: -1;
  }

.p-message__imagebox{
  text-align: right;
}
.p-message__imagebox p{
  margin-top: 10px;
}
@media (max-width: 1100px) {
  .p-message__imagebox p{
      text-align: center;
  }
}

.l-column__main > .p-list__bg {
  margin-bottom: 0;
}
.p-management__section{
  position: relative;
}
.p-management__section .l-low{
  align-items: center;
  gap: 100px;
}
@media (max-width: 768px) {
  .p-management__section .l-low{
    flex-direction: column;
}
}
.p-management__bg{
  position: relative;
}
.p-management__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/img/common/pic_bg06.png) center center / cover no-repeat;
  z-index: -1;
}


.p-pyramid__section{
  background-color: #2D7BA8;
  border-radius: 50px;
  color: var(--color-white);
  padding: 40px;
}
@media (max-width: 500px) {
  .p-pyramid__section{
    padding: 20px;
  }
}


.p-pyramid__section__h2{
  margin: var(--margin-big) 0 60px;
  font-size: 2.2em;
  font-weight: bold;
  position: relative;
  text-align: center;
  color: var(--color-white);
}
.p-pyramid__section__h2::after{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--color-white);
}
@media (max-width: 768px) {
    .p-pyramid__section__h2{
        font-size: 2em;
    }
}
.p-pyramid__low{
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.p-pyramid__item{
  width: calc(30% - 10px);
  padding: 10px 20px;
  color: var(--color-black);
  background-color: var(--color-white);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1100px) {
.p-pyramid__item{
  width: calc(50% - 10px);
  flex-direction: column;
  align-items: center;
}
}
@media (max-width: 800px) {
.p-pyramid__item{
  width: 100%;
  flex-direction: column;
  align-items: center;
}
}


.p-pyramid__item__inner{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.p-pyramid__image{
    width: 300px;
    margin: 0 auto;
}

@media (max-width: 500px) {
.p-pyramid__image{
    width: 100%;
}
}


.p-pyramid__low__item__img{
  display: flex;
  justify-content: center;
  gap: 10px;
}
.p-pyramid__low__item__img img{
  width: calc(30% - 10px);
}
.p-pyramid__item__title__wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.p-pyramid__item__title__wrapper::after{
  border-bottom: 1px solid var(--color-gray02);
}
.p-pyramid__item__title{
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
}
.p-pyramid__item__text{
  border-top: 1px solid var(--color-gray01);
  padding-top: 10px;
}
.p-pyramid__item p{
  margin: 10px 0 0;
}
.p-pyramid__item__icon{
  width: 80px;
  height: 80px;
}
.p-pyramid__item__subtitle{
  font-size: .8em;
}

/* =============================
   アンカーリスト 横並び・下線・矢印（imgタグ用）
   ============================= */
.p-anchorlink__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  padding: 40px var(--container-w1);
  margin: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .p-anchorlink__list{
    justify-content: flex-start;
    gap: 1em;
  }
}
@media (max-width: 425px) {
  .p-anchorlink__list{
    flex-direction: column;
    align-items: center;
  }
}

.p-anchorlink__list li {
  margin: 0;
}
@media (max-width: 425px) {
.p-anchorlink__list li {
  width: 80%;
}
}

.p-anchorlink__list a {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 0.5em 0;
  border-bottom: 1px solid #d9d9d9;
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
@media (max-width: 425px) {
    .p-anchorlink__list a{
        width: 100%;
    }
}


.p-anchorlink__list li:hover > a {
  color: #888;
}
.p-anchorlink__arrow {
  width: 26px;
  height: 26px;
  margin-left: 0.4em;
  display: inline-block;
  vertical-align: middle;
  transition: filter 0.2s, transform 0.2s;
}
.p-anchorlink__list li:hover .p-anchorlink__arrow {
  transform: translateX(5px);
}

/*-------------------about---------------------*/
/* 上下線のみのテーブルスタイル */
.p-about__container {
  margin-top: 80px;
}
.table-border-top-bottom {
  border-collapse: collapse;
  width: 100%;
}
.table-border-top-bottom tr {
  border: none;
}
.table-border-top-bottom th,
.table-border-top-bottom td {
  border-top: 1px solid var(--color-gray01);
  border-bottom: 1px solid var(--color-gray01);
  border-left: none;
  border-right: none;
  padding: 20px 12px;
}
.table-border-top-bottom tr:first-child th,
.table-border-top-bottom tr:first-child td {
  border-top: 1px solid var(--color-gray01);
}
.table-border-top-bottom tr:last-child th,
.table-border-top-bottom tr:last-child td {
  border-bottom: 1px solid var(--color-gray01);
}
.table-border-top-bottom th {
  font-weight: bold;
}
@media (max-width: 600px) {
    .table-border-top-bottom th{
      width: 30%;
    }
}
.table-border-top-bottom td img{
display: block;
margin-top: 20px;
width: 300px;
}

@media (max-width: 600px) {
  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    display: block;
  }
  .table-scroll table {
    min-width: 600px;
    width: max-content;
    display: block;
  }
}
@media (max-width: 1060px) {
    .p-table__w30{
      width: 25%;
    }
}
@media (max-width: 600px) {
    .table-scroll table th{
      width: 25%;
    }
}
@media (max-width: 600px) {
    .table-scroll table .p-table__w30{
      width: 15%;
    }
}
.table-scroll__caption{
  display: block;
  font-size: .8rem;
  margin-bottom: 10px;
}
@media (min-width: 601px) {
    .table-scroll__caption{
      display: none;
    }
}


.p-full-width-img__wrap{
  position: relative;
  width: 100%;
  height: auto;
}
.p-full-width-img__wrap img{
  width: 100%;
}


/*-------------------access---------------------*/
.p-access__iframe {
  width: 100%;
  height: 400px;
  border: none;
}


/*-------------------sitemap---------------------*/
.p-sitemap{
  padding: 0;
}
.p-sitemap__top{
  color: var(--color-black);
  font-size: 1.25em;
  font-weight: bold;
}
.p-sitemap__top a{
  color: var(--color-black)!important;
}
.p-sitemap__list {
  list-style: disc;
  padding-left: 1em;
  margin: 15px 0;
}
.p-sitemap__list li {
    list-style: disc;
    color: var(--color-black);
}
.p-sitemap__list li::marker {
    color: var(--color-primary)!important;
}
.p-sitemap__item a{
    color: var(--color-black)!important;
}
.p-sitemap__list li a{
    color: var(--color-black)!important;
}
.p-sitemap__item {
    position: relative;
    padding-left: 50px;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 1em;
    font-weight: bold;
}
.p-sitemap__item::before {
    content: "";
    display: block;
    width: 20px;
    height: 15px;
    border-bottom: 3px solid var(--color-gray01);
    position: absolute;
    left: 15px;
    top: 7px;
}
.p-sitemap__item a,
.p-sitemap__list a,
.p-sitemap__top a {
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: 0.6s;
}
.p-sitemap__item a:hover,
.p-sitemap__list a:hover,
.p-sitemap__top a:hover {
  text-decoration: none;
  opacity: 0.6;
}

/*-------------------products---------------------*/
.wrap1 ::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("/img/products/pic_industry01.jpg") center center / cover no-repeat;
  border-radius: 10% 0 0 10%;
  z-index: -1;
}
@media (max-width: 1060px) {
    .wrap1 ::before{
      width: 100%;
    }
}

.wrap2 ::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("/img/products/pic_material01.jpg") center center / cover no-repeat;
  border-radius: 10% 0 0 10%;
  z-index: -1;
}
@media (max-width: 1060px) {
    .wrap2 ::before{
      width: 100%;
    }
}

.wrap3 ::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("/img/products/pic_other01.jpg") center center / cover no-repeat;
  border-radius: 10% 0 0 10%;
  z-index: -1;
}
@media (max-width: 1060px) {
    .wrap3 ::before{
      width: 100%;
    }
}

.wrap4 ::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("/img/products/pic_saving01.jpg") center center / cover no-repeat;
  border-radius: 10% 0 0 10%;
  z-index: -1;
}
@media (max-width: 1060px) {
    .wrap4 ::before{
      width: 100%;
    }
}

.wrap5 ::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("/img/products/pic_tool01.jpg") center center / cover no-repeat;
  border-radius: 10% 0 0 10%;
  z-index: -1;
}
@media (max-width: 1060px) {
    .wrap5 ::before{
      width: 100%;
    }
}

.p-products__item{
  padding: 40px 20px;
}
.p-products__img{
  width: 50%;
  margin: 0 auto;
}

.p-products__img img{
  margin: 0 auto;
}

.p-products__wrapper{
  margin-top: 80px;
  position: relative;
  padding-left: var(--container-w1);
}
.p-products__row{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1060px) {
  .p-products__row{
    display: block;
}
}
.p-products__row{
  position: relative;
  height: 400px;
}
@media (max-width: 1060px) {
.p-products__row{
  position: relative;
}
}
.p-products__image{
    position: absolute;
    right: 0;
    width: 50vw;
    margin: 60px calc(-50vw + 50%) 60px calc(-50vw + 50%);
}
@media (max-width: 1060px) {
  .p-products__image{
    position: relative;
    width: 100%;
    margin: 40px 0;
}
}
.p-products__image img{
  border-radius: 50px 0 0 50px;
}
@media (max-width: 1060px) {
.p-products__image img{
  border-radius: 50px;
}
}
.p-products__text{
  width: 50vw;
  border-radius: 30px;
}
@media (max-width: 1060px) {
.p-products__text{
  position: absolute;
  bottom: 0;
  width: 70vw;
}
}
@media (min-width: 1600px) {
.p-products__column{
  padding: 80px 280px;
}
}

.p-products__text h2{
  background-color: var(--color-black);
  padding: 20px;
  color: #FFF;
  font-size: 2rem;
  border: none;
  border-radius: 30px;
  font-size: 2rem;
  margin: 0!important;
}
@media (max-width: 1060px) {
    .p-products__text h2{
      margin: 0!important;
      font-size: 1.8rem!important;
    }
}
@media (max-width: 768px) {
    .p-products__text h2{
      font-size: 1.6rem!important;
    }
}
@media (max-width: 768px) {
    .p-products__text h2{
      font-size: 1.1em!important;
    }
}
.maker_list_inner ul{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-products__textbox{
  background: #E2ECF2;
  border-radius: 50px;
  padding: 40px;
  margin-top: 80px;
}

.p-products__textbox .c-title03{
  border-bottom: 1px solid var(--color-gray01);
  width: 600px;
  margin: 0 auto;
}
@media (max-width: 900px) {
    .p-products__textbox .c-title03{
        width: 100%;
    }
}
.p-products__text h2::before {
  content: none !important;
}
.p-products__text h2::after {
  content: none !important;
}
.p-products__text::before{
  content: none!important;
}
/*-------------------問い合わせフォーム---------------------*/
.c-form__h2{
  margin: var(--margin-big) 0 60px;
  font-size: 2.2em;
  font-weight: bold;
  position: relative;
  text-align: center;
}
.c-form__h2::after{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--color-primary);
}
@media (max-width: 767px) {
    .c-form__h2{
      font-size: 2em;
    }
}
/*-------------------インタビュー---------------------*/
.p-interview__low{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.p-interview__low__item{
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .p-interview__low__item{
    flex-wrap: wrap;
}
}
.p-interview__low__img{
  width: 30%;
}
@media (max-width: 768px) {
    .p-interview__low__img{
        width: 50%;
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .p-interview__low__img{
        width: 100%;
    }
}
.p-interview__low__text .p-interview__low__text__title .c-title03{
  margin-top: 10px;
}
.p-interview__low__text{
  width: 70%;
}
@media (max-width: 768px) {
    .p-interview__low__text{
        width: 100%;
    }
}
.c-label01{
  display: block;
  padding: 4px 12px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 10px;
  width: 140px;
}

/*-------------------採用---------------------*/
.p-companydata__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0 0 0;
  padding: 0;
}
.p-companydata__wrapper {
  width: calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
@media (max-width: 1060px) {
.p-companydata__wrapper {
  width: calc(50% - 20px);
}
}


@media (max-width: 768px) {
  .p-companydata__wrapper {
    width: calc(50% - 20px);
    min-height: 300px;
  }
}
@media (max-width: 600px) {
  .p-companydata__wrapper {
    width: 100%;
    min-height: 220px;
  }
}
.p-companydata__item {
  border: 1px solid var(--color-gray01);
  border-radius: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 24px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;

}
.p-companydata__item img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.p-companydata__label {
  width: 0 auto;
  width: fit-content;
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  display: block;
  padding: 4px 12px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 10px; 
}
.p-companydata__value {
  font-size: 2rem;
  font-weight: 900;
  color: #1a4a8a;
  letter-spacing: 0.05em;
}
.p-companydata__value__text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.p-companydata__wrapper p {
  margin-top: 16px;
  font-size: 1.1rem;
  color: #333;
  flex: 0 0 auto;
  align-self: flex-end;
}
@media (max-width: 600px) {
  .p-companydata__list {
    flex-direction: column;
    gap: 16px;
  }
  .p-companydata__item {
    padding: 16px 12px;
  }
  .p-companydata__value {
    font-size: 1.4rem;
  }
}
.p-companydata__text{
  font-size: 1.1rem;
  text-align: center;
}

/*-------------------採用---------------------*/

.p-entry__block{
  width: 100%;
  max-width: 1400px;
  margin: 80px auto 0 auto;
  background: #1F759F url("/img/top/pic_recruit_bg.png") center center / cover no-repeat;
  padding: 60px var(--container-w1);
  box-sizing: border-box;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  border-radius: 12px;
}

.p-entry__block .c-title__inner .c-title01__en{
  color: var(--color-white);
}

.p-entry__block .c-btn01:hover{
border: 1px solid var(--color-white);
}

.p-entry__title{
  margin-bottom: 20px;
}

/*-------------------電話番号、FAX番号---------------------*/
.p-tel__number{
  font-size: 1.4em;
  font-weight: bold;
  margin-left: 10px;
}
.p-tel__number::before{
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background: url("/img/common/ico_tel_blue.svg") no-repeat center / contain;
  vertical-align: middle;
  margin-right: 10px;
}

.p-fax__number{
  font-size: 1.4em;
  font-weight: bold;
  margin-left: 10px;
}
.p-fax__number::before{
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background: url("/img/common/ico_fax_blue.svg") no-repeat center / contain;
  vertical-align: middle;
  margin-right: 10px;
}

.l-title04{
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  padding: 0.5em 1em;
  background: var(--color-secondary);
  border-radius: 10px;
}

/*----------------------------------------*/
@media (hover: none) {
  a:hover,
  button:hover,
  .btn:hover {
    background: none !important;
    color: inherit !important;
    opacity: 1 !important;
  }
}