@charset "utf-8";

/*============================================================
 base.css
============================================================*/
/* Reset
------------------------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

address, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: normal;
  text-align: left;
}

legend {
  display: none;
}

img, fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

/* HTML5
------------------------------------------------------------*/
article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
  margin: 0;
  padding: 0;
}

/* scrollbug for FF
------------------------------------------------------------*/
html {
  overflow-y: scroll;
}

/* Fonts
------------------------------------------------------------*/
body, button, input, select, textarea {
	font-family: YuGothicM, "游ゴシック Medium", YuGothic, sans-serif;
}

/* Form
------------------------------------------------------------*/
button, input, select, textarea {
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Media
------------------------------------------------------------*/
object, embed {
  vertical-align: top;
}
img {
  max-width: 100%;
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
}

/* link
------------------------------------------------------------*/
a {
  color: #111111;
  text-decoration: underline;
}
a:hover {
	opacity: .6;	
	text-decoration: none;
}
a > img {
  transition: opacity .3s ease-out;
}
a > img:hover {
  opacity: .6;
}

/* loader
------------------------------------------------------------*/
#loader {
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}
#loader div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.loaderIcon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: auto;
  position: relative;
  text-indent: -9999em;
  border-top: 1px solid #00aca8;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.5s infinite linear;
  animation: load8 1.5s infinite linear;
}
.loaderIcon::after {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

* {
  box-sizing: border-box;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-size: 62.5%;
  min-width: 1200px;
}
body {
	font-family: YuGothicM, "游ゴシック Medium", YuGothic, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: #111;
	background: url("../img/body_top_bg.png") no-repeat center top;
  text-align: justify;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2){
	body {
		background: url("../img/body_top_bg@2x.png") no-repeat center top;
	}
}
p:not(:last-child),
ul:not(:last-child),
ol:not(:last-child),
figure:not(:last-child),
table:not(:last-child) {
  margin-bottom: 20px;
}


/* header
------------------------------------------------------------*/
header {
	padding: 8px 0 32px;
}
header .inner {
	-webkit-display: flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.header__left {
	gap: 24px;
	-webkit-display: flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.header__left .logo {
	height: 30px;
	display: flex;
	align-items: flex-end;
	gap: 16px;
	transition: .3s;
}
.header__left .logo img.logo__s{
	width: 100%;
	height: 22px;
}
.header__left .logo:hover img{
	opacity: 1;
}
.header__right {
	text-align: right;
}
.header__right ul {
	line-height: 1;
	margin-bottom: 16px;
	-webkit-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.header__right ul li{
	white-space: nowrap;
}
.header__right ul li:not(:first-child)::before {
	content: "";
	width: 1px;
	height: 16px;
	/* background: rgba(255,255,255,.6); */
	background: rgba(0, 0, 0, 0.6);
	margin: 0 16px;
	display: inline-block;
	position: relative;
	top: 4px;
}
.header__right ul li a {
	font-size: 1.2rem;
	color: #111;
	text-decoration: none;
}
.header__right ul li a:hover {
	text-decoration: underline;
}
.header__right .btn,.contact .btn,.formbtn {
	font-weight: bold;
	color: #fff;
	background: #111;
	display: inline-block;
	text-decoration: none;
	letter-spacing: 1px;
	transition-duration: .3s;
	cursor: pointer;
}
.header__right .btn{
	padding: 8px 24px 6px;
}
.header__right .btn02{
	transition-duration: .3s;
	cursor: pointer;
}
.header__right .btn02 img{
	height: 40px;
	background-color: #fff;
	padding: 0 24px;
	border: 1px solid #ddd;
}
.header__right > div{
	display: flex;
	align-items: center;
	gap: 10px;
}
.contact{
	text-align: center;
	margin: 40px 0 0;
}
.contact .btn,.formbtn{
	font-size: 1.6rem;
	padding: 16px 56px;
}
.header__right .btn:hover{
	color: #111;
	background: #fff;
}
.contact .btn:hover,
.formbtn:hover{
	opacity: .6;
}

.logo__area{
	gap: 24px;
	-webkit-display: flex;
	display: flex;
	-ms-align-items: flex-end;
	align-items: flex-end;
}

.logo__area img{
	display: block;
}


/* nav
------------------------------------------------------------*/
#menuBtn {
	display: none;
}
nav ul {
	gap: 0 2.8vw;
	-webkit-display: flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 20px 0 0;
}
nav li a {
	font-size: 1.5rem;
	color: #fff;
	display: inline-block;
	padding: 10px 0;
	text-decoration: none;
	position: relative;
	letter-spacing: 1px;
	transition-duration: .3s;
	font-weight: bold;
}
nav li a::before {
	content: "";
	width: 0;
	height: 2px;
	background: #fff;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	transition-duration: .3s;
}
nav li a:hover::before,
nav li.ac a::before {
	width: 100%;
}

nav li.hasChild{
	position: relative;
	gap: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}

nav .subMenu{
	width: 220px;
	background: #fff;
	padding: 8px 16px;
	position: absolute;
	top: 100%;
	left: 50%;
	box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.1);
	visibility: hidden;
	opacity: 0;
	z-index: 1000;
	transition-duration: .3s;
	transform: translateX(-50%);
}

nav .nav__item.hasChild::after {
	content: "";
	width: 10px;
	height: 6px;
	background: url("../img/i_arrow-nav.svg") no-repeat center center/cover;
	display: inline-block;
}

nav .subMenu ul{
	flex-direction: column;
	align-items: center;
	padding-top: 4px;
}

nav .subMenu ul li{
	width: 100%;
	text-align: center;
}

nav .subMenu ul li:not(:last-of-type){
	border-bottom: 1px solid #ccc;
}

nav .subMenu ul li a{
	color: #111;
	font-size: 14px;
	display: block;
	padding: 8px 0;
}

nav .hasChild:hover .subMenu {
  visibility: visible;
  opacity: 1;
}



/* pagetop
------------------------------------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  right: calc(2.6vw - 25px);
  bottom: 5vh;
  z-index: 100;
}
.pagetop a {
  line-height: 50px;
  width: 50px;
  background: #fff;
  display: block;
  text-align: center;
  border-radius: 50%;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  transition: .3s;
}
.pagetop a span {
  width: 12px;
  height: 12px;
  border-left: 2px solid;
  border-top: 2px solid;
  display: inline-block;
  position: relative;
  top: 4px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: .3s;
  transition: .3s;
}
.pagetop a:hover {
  background: #111;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}
.pagetop a:hover span {
  color: #fff;
}


/* footer
------------------------------------------------------------*/
footer {
  font-size: 1.4rem;
	padding-top: 40px;
	margin-top: 24px;
	border-top: 1px solid #ccc;
}
footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer .footer__txt .name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
footer .footer__link {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .footer__link ul {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
footer .footer__link .link__box ul{
	padding-left: 24px;
	position: relative;
}
footer .footer__link .link__box ul li{
	min-width: 100px;
}
footer .footer__link .link__box ul::before{
	content: "";
    width: 1px;
    background: #ccc;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
footer .footer__link p a{
	font-weight: bold;
}
footer .footer__link a {
  text-decoration: none;
  transition-duration: .3s;
}
footer .footer__link a:hover {
  opacity: .6;
}
footer .footer__copy {
  font-size: 1.2rem;
  background: #fff;
  padding: 24px;
  margin-top: 40px;
  text-align: center;
}


/* トップページ
------------------------------------------------------------*/
#kv {
	padding: 120px 0 140px;
}
.sec01__list {
	gap: 40px;
	-webkit-display: flex;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 80px;
}
.sec01__box {
	width: 46%;
	background: #fff;
	display: block;
	text-decoration: none;
	box-shadow: 0 15px 25px 0 rgba(0,0,0,.08);
	transition-duration: .3s;
}
.sec01__box:hover {
	background: #f5f5f5;
	box-shadow: none;
}
.sec01__box:hover figure::before {
	background: rgba(0,0,0,.4);
}
.sec01__box:hover figure img {
	transform: scale(1.05);
}
.sec01__box figure {
	margin-bottom: 0;
	overflow: hidden;
	position: relative;
}
.sec01__box figure::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	transition-duration: .3s;
}
.sec01__box figure img {
	transition-duration: .3s;
}
.sec01__box .txtArea {
	padding: 16px 24px;
}
.sec01__box .txtArea h2 {
	font-size: 1.8rem;
	font-weight: 700;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #ccc;
}
.sec01__box .txtArea p {
	font-size: 1.4rem;
	text-align: right;
}
#sec02 {
	margin: 72px 0;
	border-top: 1px solid #111;
	border-bottom: 1px solid #111;
}
#sec02 h2 {
	margin: 24px 0;
	gap: 24px;
	-webkit-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
#sec02 h2 .en {
	font-family: "Outfit", sans-serif;
	font-size: 3.2rem;
	font-weight: 700;
	letter-spacing: 1px;
}
#sec02 dl {
	margin-bottom: 24px;
	gap: 16px 0;
	-webkit-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#sec02 dl dt {
	width: 120px;
}
#sec02 dl dd {
	width: calc(100% - 120px);
}

.cont{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: calc(1200px + 10vw) !important;
}
main{
	margin-right: 40px;
    -ms-flex-preferred-size: 830px;
    flex-basis: 860px;
    max-width: 860px;
}
aside{
	flex-basis: 300px;
    max-width: 300px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.bnr__list li{
	margin-bottom: 20px;
}

.bnr__list li a img{
	width: 100%;
}

/* 下層ページ
------------------------------------------------------------*/
.pankuzu {
	gap: 16px 0;
	-webkit-display: flex;
	display: flex;
}
.pankuzu li {
	font-size: 1.4rem;
	color: #111;
}
.pankuzu li:not(:last-of-type)::after {
	content: "";
	width: 10px;
	height: 1px;
	background: #111;
	margin: 0 10px;
	display: inline-block;
	position: relative;
	top: -2px;
}
.pankuzu li a {
	color: #111;
}
.inner {
	width: 100%;
	max-width: calc(1200px + 10vw);
	padding: 0 5vw;
	margin: auto;
}
/* .bnr__list {
	gap: 40px;
	-webkit-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	justify-content: center;
}
.bnr__list > * {
	width: calc((100% - 80px) / 3);
} */
h1 {
	font-size: 1.2rem;
	color: #fff;
}
.pageTtl {
	padding: 80px 0 40px;
}
.pageTtl .inner {
	-webkit-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.pageTtl h2 {
	color: #fff;
	margin-bottom: 40px;
	gap: 8px;
	-webkit-display: flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.pageTtl h2 .jp {
	font-size: 4.8rem;
	font-weight: bold;
	letter-spacing: 2px;
}
.pageTtl h2 .en {
	font-family: "Outfit", sans-serif;
	font-size: 1.6rem;
	letter-spacing: 4px;
}
.ttl__l {
	font-size: 2.4rem;
	font-weight: 600;
	padding: 16px 0 16px calc(4px + 20px);
	margin: 80px 0 24px;
	position: relative;
	letter-spacing: 1px;
	border-bottom: 1px solid #68c8d3;
	-webkit-border-image: linear-gradient(to right, #008FA0 1%, #68c8d3 100%);
	-ms-border-image: linear-gradient(to right, #008FA0 1%, #68c8d3 100%);
	-moz-border-image: linear-gradient(to right, #008FA0 1%, #68c8d3 100%);
	border-image: linear-gradient(to right, #008FA0 1%, #68c8d3 100%);
	border-image-slice: 1;
	border-image-width: 0 0 1px;
}
.ttl__l:first-of-type {
	margin-top: 0;
}
.ttl__l::before {
	content: "";
	width: 4px;
	height: 24px;
	background: #008FA0;
	display: inline-block;
	position: absolute;
	top: calc(50% - 12px);
	left: 0;
}
.ttl__m,.ttl__m__polygon {
	font-size: 1.8rem;
	font-weight: 600;
	color: #fff;
	background: rgb(134, 215, 224);
	background: linear-gradient(270deg, rgb(134, 215, 224) 0%, rgba(0,143,160,1) 100%);
	padding: 8px 24px;
	margin: 64px 0 32px;
	position: relative;
}
.ttl__m__polygon::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 5%;
	border-style: solid;
	border-width: 15px 10px 0 10px;
	border-color: rgba(0,143,160,1) transparent transparent;
	translate: -50% 100%;
}

.ttl__m .label {
	font-size: 1.4rem;
	font-weight: 500;
	color: #111;
	background: #fff;
	padding: 4px 16px;
	margin-left: 16px;
	display: inline-block;
	border-radius: 30px;
}
.ttl__l + .ttl__m,
.ttl__m:first-child {
	margin-top: 0;
}
.ttl__s {
	font-size: 1.8rem;
	font-weight: 600;
	padding-bottom: 16px;
	margin: 40px 0 16px;
	border-bottom: 1px solid #ddd;
}
.ttl__s.align__c {
	-ms-align-items: center;
	align-items: center;
}
.ttl__s:has(span) {
	gap: 8px;
	-webkit-display: flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.ttl__s .label {
	font-family: "Outfit", sans-serif;
	font-size: 1.4rem;
	width: max-content;
	color: #fff;
	background: rgb(134, 215, 224);
	background: linear-gradient(270deg, rgb(134, 215, 224) 0%, rgba(0,143,160,1) 100%);
	padding: 4px 16px;
	display: inline-block;
}
.ttl__m + .ttl__s,
.ttl__s:first-child {
	margin-top: 0;
}
.ttl__count{
	counter-reset: titlenum;
}
.ttl__count a{
	transition-duration: .3s;
	text-decoration: none;
}
.ttl__count__num::before{
	counter-increment: titlenum;
	content: "0" counter(titlenum);
	font-size: 2rem;
	color: #008FA0;
	margin-right: 1.4rem;
}

.outLink{
	transition: .3s;
}

.outLink::after{
	content: "";
    display: inline-block;
    background: url(../img/i_outLink.svg) no-repeat center center / cover;
    width: 16px;
    height: 13px;
    margin-left: 6px;
    margin-right: 10px;
}

.i_pdf {
	padding: 4px 0;
	display: inline-flex;
	align-items: center;
	transition: .3s;
	text-decoration: none;
}

.i_pdf::after {
	content: "PDF";
	font-size: 10px;
	font-weight: bold;
	line-height: 1;
	padding: 2px 3px;
	margin-left: 8px;
	border: 1px solid #008FA0;
	border-radius: 2px;
	background-color: transparent;
	color: #008FA0;
	flex-shrink: 0;
	text-transform: uppercase;
}

.i_arrow{
	position: relative;
	padding-left: 32px;
}

.i_arrow::before{
	content: "";
	position: absolute;
	display: inline-block;
	background: url(../img/i_arrow.svg) no-repeat center center / cover;
	width: 24px;
	height: 7px;
	top: 8px;
	left: 0;
}

.sp{
	display:none;
}
.align__r {
	text-align: right;
}
.align__c {
	text-align: center;
}
.mb__s {
	margin-bottom: 4px !important;
}
.mb__m {
	margin-bottom: 40px !important;
}
.indent {
	padding-left: 1em;
	text-indent: -1em;
}
ol {
	padding-left: 20px;
}
ol > li {
	list-style-type: disc;
}
ol.decimal > li {
	list-style-type: decimal;
}
.x1 {
	gap: 24px;
	-webkit-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}
/* .x1 > * {
	width: 100%;
} */
.x2 {
	gap: 24px;
	-webkit-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.x2 > * {
	width: calc((100% - 24px) / 2);
}
.x3 {
	gap: 40px;
	-webkit-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.x3 > * {
	width: calc((100% - 80px) / 3);
}
.x3 figure{
	margin-bottom: 8px;
}
.x3 p{
	text-align: center;
	margin-top: 0;
}
iframe {
	width: 800px;
	height: 400px;
	border: none;
}
ul.disc li{
	margin-left: 24px;
	list-style-type: disc;
}
.btn__wrap {
	text-align: right;
}
.btn__more {
	color: #fff;
	padding: 16px 40px;
	display: inline-block;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition-duration: .3s;
}
.btn__more::before,
.btn__more::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition-duration: .3s;
}
.btn__more::before {
	background: rgb(113,234,175);
	background: linear-gradient(270deg, rgba(113,234,175,1) 0%, rgba(83,165,100,1) 100%);
	z-index: -1;
}
.btn__more::after {
	background: #333;
	z-index: -10;
}
.btn__more:hover::before {
	opacity: 0;
}
.btn__more.ac {
	pointer-events: none;
}
.btn__more.ac::before {
	background: #111;
}
.btn__more.gray {
	color: #111;
}
.btn__more.gray::before {
	background: #f6f9fc;
}
.btn__more.gray::after {
	background: #eee;
}
.contents {
	background: #fff;
	margin-bottom: 80px;
	box-shadow: 0 15px 25px 0 rgba(0,0,0,.08);
}
.contents:has(.subNav) {
	padding-top: 56px;
	position: relative;
}
.subNav {
	border-bottom: 1px solid #ddd;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.subNav ul {
	-webkit-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.subNav ul li {
	width: 100%;
}
.subNav ul li:not(:last-of-type) {
	border-right: 1px solid #ddd;
}
.subNav ul li.ac a {
	background: #f6f9fc;
}
.subNav ul li a {
	padding: 16px;
	-webkit-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	transition-duration: .3s;
	height: 80px;
}
.subNav ul li a:hover {
	background: #f6f9fc;
}
.contBox {
	padding: 64px 0;
}
.table__basic dl {
	background: #f6f9fc;
	-webkit-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	border-bottom: 1px solid #ddd;
}
.table__basic dl dt,
.table__basic dl dd {
	padding: 16px 24px;
}
.table__basic dl dt {
	width: 20%;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
}
.table__basic dl dd {
	width: 80%;
	background: #fff;
}
.table__line dl {
	-webkit-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.table__line dl dt,
.table__line dl dd {
	padding: 24px;
	border-bottom: 1px solid #ddd;
}
.table__line dl dt {
	width: 20%;
	border-bottom-color: #2c625d;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
}
.table__line dl dd {
	width: 80%;
}
table.table__basic{
	width: 90%;
}
table.table__basic tr:nth-of-type(1) th,
table.table__basic tr:nth-of-type(1) td,
table.table__basic tr:nth-of-type(2) th,
table.table__basic tr:nth-of-type(2) td{
	padding: 8px 8px;
	background-color: #f6f9fc;
	color: #008FA0;
	font-weight: bold;
	font-size: 16px;
}
table.table__basic th,
table.table__basic td{
	border: 1px solid #333;
	text-align: center;
	padding: 16px 8px;
}
table.table__basic .dashed_b td{
	border-bottom: 1px dashed #333 !important;
}
table.table__basic .dashed_t td{
	border-top: 1px dashed #333 !important;
}
table.table__basic .red{
	color: red;
}
.msg__sign {
	text-align: right;
}
.multi {
	width: 100%;
	gap: 40px;
	-webkit-display: flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.multi + .multi {
	margin-top: 40px;
}
.multi__img {
	-ms-flex-shrink: 0;
	flex-shrink: 0;
}
.multi__img figure{
	margin-bottom: 8px;
}
.multi__txt {
	width: 100%;
}
.wrap__bg {
	background: #f6f9fc;
	padding: 24px 32px;
	text-align: center;
}
.flow__arrow > *{
	position: relative;
}
.flow__arrow > *:not(:last-child)::after{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 0 12px 16px;
	border-color: transparent transparent transparent #008FA0;
	position: absolute;
	top: 0;
	right: -30px;
	bottom: 0;
	margin: auto;
}
.btm__arrow{
	position: relative;
	margin-bottom: 80px;
}
.btm__arrow::after{
	content: "";
	position: absolute;
	bottom: -55px;
	right: 50%;
	transform: translateX(50%);
	width: 60px;
	height: 30px;
	background: linear-gradient(270deg, rgb(134, 215, 224) 0%, rgba(0, 143, 160, 1) 100%);
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.flow__box{
	-webkit-display: flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	gap: 24px;
	position: relative;
}
.flow__box figure{
	margin-bottom: 8px;
}
.flow__box figure img{
	width: auto;
	height: 200px;
}
.strong,.case {
	gap: 16px;
	-webkit-display: flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.strongBox,.caseBox {
	-webkit-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.strongBox dt,.caseBox dt {
	font-size: 4rem;
	font-weight: 600;
	line-height: 1;
	color: #ddd;
	width: 10%;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	border-right: 1px solid #ccc;
	text-align: center;
	letter-spacing: 2px;
}
.strongBox dt {
	width: 10%;
}
.caseBox dt{
	width: 18%;
}
.strongBox dd,.caseBox dd {
	font-size: 1.8rem;
	padding-left: 24px;
	letter-spacing: 1px;
	font-weight: bold;
}
.strongBox dd span,.caseBox dd span {
	display: inline-block;
	border-bottom: 1px dotted;
}
.tab__btn {
	margin-bottom: 24px;
	gap: 16px;
	-webkit-display: flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.tab__btn-item {
	padding: 8px 24px;
	border-radius: 30px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition-duration: .3s;
}
.tab__btn-item::before,
.tab__btn-item::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition-duration: .3s;
}
.tab__btn-item::before {
	background: #f6f9fc;
	z-index: -1;
}
.tab__btn-item::after {
	background: rgb(113,234,175);
	background: linear-gradient(270deg, rgba(113,234,175,1) 0%, rgba(83,165,100,1) 100%);
	z-index: -10;
}
.tab__btn-item:hover::before {
	background: #eee;
}
.tab__btn-item.ac {
	color: #fff;
}
.tab__btn-item.ac::before {
	opacity: 0;
}
.tab__cont-item {
	display: none;
}
.tab__cont-item.ac {
	display: block;
}
.news__list {
	-webkit-display: flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.news__list dt,
.news__list dd {
	padding: 16px 0;
	border-bottom: 1px solid #ddd;
}
.news__list dt {
	width: 120px;
}
.news__list dd {
	width: calc(100% - 120px);
}
.news__article {
	margin-bottom: 40px;
}
.sitemap__box {
	background: #f6f9fc;
	padding: 24px 32px;
}
.sitemap__box a {
	text-decoration: none;
}
.sitemap__box a:hover {
	text-decoration: underline;
}
.sitemap__box ul {
	font-size: 1.4rem;
	padding-left: 24px;
	border-left: 1px solid #aaa;
	gap: 8px;
	-webkit-display: flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.schedule__item {
  padding-left: 48px;
  position: relative;
}
.schedule__item::after {
  content: "";
  width: 11px;
  height: 11px;
	background: rgb(113,234,175);
	background: linear-gradient(270deg, rgba(113,234,175,1) 0%, rgba(83,165,100,1) 100%);
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}
.schedule__item:not(:last-of-type) {
  padding-bottom: 24px;
}
.schedule__item:not(:last-of-type)::before {
  content: "";
  width: 1px;
  background: #aaa;
  display: block;
  position: absolute;
  top: 8px;
  left: 5px;
  bottom: -8px;
}
.schedule__item dl {
  gap: 0 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.schedule__item dl dt {
  font-size: 1.8rem;
	width: 10%;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	letter-spacing: 1px;
}
.schedule__item dl dd .ttl {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 8px !important;
}
.staff__item a {
  height: 100%;
  color: #111;
	background: #f5f5f5;
  display: block;
	text-decoration: none;
	transition-duration: .3s;
}
.staff__item a:hover {
	box-shadow: none;
}
.staff__item a:hover .staff__img figure::before {
	background: rgba(0,0,0,.4);
}
.staff__item a:hover .staff__img figure img {
  transform: scale(1.05);
}
.staff__img figure {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.staff__img figure::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition-duration: .3s;
}
.staff__img figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  font-family: 'object-fit: cover;';
  transition-duration: .3s;
}
.staff__txt {
	padding: 16px 24px;
  gap: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.staff__txt > * {
  margin-bottom: 0 !important;
}
.staff__txt-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.staff__txt-name span {
  background: #fff;
  padding: 8px 24px;
  display: inline-block;
  border-radius: 30px;
  letter-spacing: 1px;
  transition-duration: .3s;
}
.staff__txt-job {
  padding-top: 16px;
  border-top: 1px solid #ddd;
}
.remodal-wrapper {
}
.remodal {
	max-width: 1000px!important;
	padding: 40px 80px!important;
	text-align: left!important;
}
.staffDetail__kv-img {
  margin-bottom: 40px;
}
.staffDetail__kv-txt {
  width: 100%;
  text-align: left;
  gap: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.staffDetail__kv-txt > * {
  margin-bottom: 0 !important;
}
.staffDetail__kv-name {
}
.staffDetail__kv-name span {
  background: #F4F5F6;
  padding: 8px 24px;
  display: inline-block;
  border-radius: 30px;
  letter-spacing: 1px;
  transition-duration: .3s;
}
.staffDetail__kv-profile {
  padding: 24px;
  margin-top: auto;
  border: 1px solid #E8E8E8;
  gap: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.staffDetail__kv-profile dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.staffDetail__kv-profile dl dt {
  width: 30%;
}
.staffDetail__kv-profile dl dd {
  width: 70%;
}
.num__txt {
	gap: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.num__txt > dt {
  width: 40px;
}
.num__txt > dd {
  width: calc(100% - 40px);
}

.flex__end{
	display: flex;
	justify-content: flex-end;
}

/* .casestudy_img{
	width: 70%;
	margin: 0 auto;
} */

/* contact
------------------------------------------------------------*/

.formIcon{
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 2px;
    color: #fff;
    background: #008FA0;
    padding: 2px 10px 0;
    margin-right: 5px;
    display: inline-block;
}

.formIcon.option{
	color: #111;
    background: #fff;
    border: 1px solid #ddd;
}

form input:not([type="file"]), form textarea, form select {
	width: 100%;
	padding: 15px 20px;
	border: 1px solid #ddd;
}
form textarea {
	width: 100% !important;
	min-height: 20vh;
	display: block;
	resize: vertical;
}

form select {
	background: url("../img/i_select.svg") no-repeat center right 20px #fff;
}

form ::-ms-input-placeholder {
	color: #aaa;
}

form :-ms-input-placeholder {
	color: #aaa;
}

form ::placeholder {
	color: #aaa;
}

form .agreeArea {
	margin: 32px 0;
	text-align: center;
}

form input[type=radio], form input[type=checkbox] {
	display: none;
}

form label {
	padding-left: 30px;
	display: inline-block;
	cursor: pointer;
	position: relative;
}

form label:not(:last-child) {
	margin-right: 1vw;
}

form label .radio-icon, form label .checkboxIcon {
	line-height: 20px;
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 4px;
	left: 0;
}

form label .radio-icon::after, form label .checkboxIcon::after {
	content: "";
	background: #fff;
	width: 16px;
	height: 16px;
	margin-top: -11px;
	display: block;
	border: 2px solid #ccc;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transition: border-color .2s linear;
	transition: border-color .2s linear;
}

form label .radio-icon::after {
	border-radius: 50%;
}

form label .radio-icon::before {
	content: "";
	width: 10px;
	height: 10px;
	background-color: #09537C;
	margin-top: -6px;
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 5px;
	opacity: 0;
	-webkit-transition: opacity .2s linear;
	transition: opacity .2s linear;
	z-index: 10;
}

form label.agree {
	background: #fff;
	padding: 15px 30px 15px 60px;
	display: inline-block;
	border: 1px solid #ddd;
	transition: .3s;
}

form label.agree .radio-icon, form label.agree .checkboxIcon {
	top: calc(50% - 8px);
	left: 30px;
}

form label.agree:hover {
	background: #F4F9FC;
}

form input[type=radio]:checked ~ .radio-icon::before {
	opacity: 1;
}

form .checkbox ~ .checkboxIcon::before {
	content: "";
	width: 5px;
	height: 9px;
	margin-top: -9px;
	display: block;
	border-right: 3px solid #09537C;
	border-bottom: 3px solid #09537C;
	position: absolute;
	top: 50%;
	left: 6px;
	opacity: 0;
	transition: opacity 0.2s linear;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 1;
}

form .checkbox:checked ~ .checkboxIcon::before {
	opacity: 1;
}

form .addressTxt {
	margin-top: 10px;
}

form .fileUpload label{
	padding-left:0;
}

form .fileUpload #resume,form .fileUpload #workHistory{
	margin-bottom:8px;
}

form .fileUpload #resume{
	padding-left:3rem;
}

.formTable dl {
  background: #f6f9fc;
  -webkit-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.formTable dl dt,
.formTable dl dd {
	padding: 16px 24px;
}

.formTable dl dt {
	width: 25%;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
}

.formTable dl dd {
	width: 75%;
	background: #fff;
}


@media screen and (max-width:600px) {
	* {
		-webkit-appearance: none;
	}
  html {
    font-size: 58%;
    min-width: inherit;
    height: -webkit-fill-available;
  }
  body {
    font-size: 1.6rem;
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }

  /* header
  ------------------------------------------------------------*/
  header {
    height: 60px;
    background: #111;
		padding: 0;
    position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 1000;
  }
	header .inner {
		height: 100%;
		align-items: center;
		max-width: 100% !important;
	}
	header .logo__area{
		gap: 8px;
		flex-direction: column;
        align-items: flex-start;
	}
	.header__left .logo {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		height: auto;
	}
	.header__left .logo img {
		width: 50%;
	}
	.header__left .logo img.logo__s{
		width: 72%;
		height: auto;
	}
	.header__right {
		display: none;
	}

  /* nav
  ------------------------------------------------------------*/
	#menuBtn {
		width: 40px;
		height: 20px;
		padding: 20px 0;
		display: block;
		cursor: pointer;
		position: fixed;
		top: 10px;
		right: 5vw;
		z-index: 1000;
		transition: .3s;
	}
	#menuBtn > span {
		width: 40px;
		height: 2px;
		background: #fff;
		display: inline-block;
		position: absolute;
		left: calc(50% - 20px);
		transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1) 0.2s, width 0.3s cubic-bezier(0.65, 0, 0.35, 1), background 0.3s;
	}
	#menuBtn > span:nth-of-type(1) {
		top: calc(50% - 9px);
	}
	#menuBtn > span:nth-of-type(2) {
		top: calc(50% - 1px);
	}
	#menuBtn > span:nth-of-type(3) {
		width: 24px;
		top: calc(50% + 8px);
	}
	/* #menuBtn.ac > span {
		background: #111;
	} */
	#menuBtn.ac > span:nth-of-type(1) {
		-webkit-transform: translateY(9px) rotate(-45deg);
		transform: translateY(9px) rotate(-45deg);
	}
	#menuBtn.ac > span:nth-of-type(2) {
		width: 0;
	}
	#menuBtn.ac > span:nth-of-type(3) {
		width: 40px;
		-webkit-transform: translateY(-8px) rotate(45deg);
		transform: translateY(-8px) rotate(45deg);
	}
	/* #menuBtn.ac:hover > span {
		background: #666;
	} */
	nav {
		background: #fff;
		padding-top: 10vh;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 100;
		opacity: 0;
		pointer-events: none;
		transition: opacity .3s;
	}
	nav.ac {
		pointer-events: auto;
		opacity: 1;
	}
	nav ul {
		gap: 0;
		flex-direction: column;
		padding: 0;
	}
	nav li a {
		font-size: 1.6rem;
		color: #111;
		padding: 16px;
		display: block;
		border-bottom: 1px solid #ddd;
		text-align: center;
		height: 60px;
	}
	nav li a::before {
		display: none;
	}

	nav .subMenu {
    width: 100%;
    height: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
    position: static;
    box-shadow: none;
    transform: none;
	}
	nav .subMenu ul li {
		text-align: left;
	}
	nav .subMenu ul li:not(:last-of-type) {
		border-bottom: none;
	}
	nav .subMenu ul li a {
		font-size: 1.4rem;
		font-weight: 500;
		height: auto;
		padding: 12px 24px;
		text-decoration: none;
		transition-duration: .3s;
		line-height: 24px;
	}
	
	nav > ul > li.hasChild {
		position: relative;
		gap: 0 !important;
		display: block;
	}
	nav > ul > li.hasChild:hover {
		box-shadow: none;
	}
	
	nav > ul > li.hasChild:hover .subMenu {
		visibility: hidden;
		opacity: 0;
	}
	
	nav > ul > li.hasChild::after {
		content: none !important;
	}
	
	nav > ul > li.hasChild .nav_arrow {
		width: 40px;
		height: 59px;
		background: #f6f9fc;
		display: flex;
		justify-content: center;
		align-items: center;
		border-left: 1px dotted #ddd;
		position: absolute;
		top: 0;
		right: 0;
	}
	
	nav > ul > li.hasChild .nav_arrow::after {
		content: "";
		width: 6px;
		height: 6px;
		border-left: 1px solid;
		border-top: 1px solid;
		display: inline-block;
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
		transition-duration: .3s;
	}
	
	nav > ul > li.hasChild .nav_arrow.ac::after {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	nav > ul > li.hasChild .nav_arrow.ac ~ .subMenu {
		height: auto;
	}

	nav > div{
		display: flex !important;
		flex-direction: column;
		align-items: center;
		gap: 24px;
		margin-top: 40px;
	}

	nav > div .btn,nav > div .btn02{
		width: 320px;
		text-align: center;
	}

	nav > div .btn {
		font-weight: bold;
		color: #fff;
		background: #111;
		display: inline-block;
		text-decoration: none;
		letter-spacing: 1px;
		transition-duration: .3s;
		cursor: pointer;
		padding: 16px 24px 12px;
	}
	
	nav > div .btn02{
		transition-duration: .3s;
		cursor: pointer;
		border: 1px solid #ddd;
	}


	nav > div .btn02 img{
		height: 52px;
		background-color: #fff;
		padding: 0 24px;
	}
	
	/* pagetop
	------------------------------------------------------------*/
	.pagetop {
		right: 0;
		bottom: 0;
	}
	.pagetop a {
		line-height: 40px;
		width: 40px;
		background: #000;
		border-radius: 0;
		filter: none;
	}
	.pagetop a span {
		color: #fff;
		border-width: 1px;
	}
	
	
	/* footer
	------------------------------------------------------------*/
	footer {
		background: #f6f9fc;
		padding-top: 0;
		margin-top: 0;
	}
	footer .inner {
    gap: 20px;
    flex-wrap: wrap;
  }
  footer .footer__txt {
    width: 100%;
    text-align: center;
		order: 2;
  }
  footer .footer__txt .sns {
    justify-content: center;
  }
  footer .footer__txt .name img{
	width: 70%;
  }
  footer .footer__link {
    width: 100%;
    gap: 0;
  }
  footer .footer__link .link__box{
	width: 100%;
  }
  footer .footer__link .link__box:first-of-type p:first-of-type{
	margin-top: 0;
	border-top: none;
  }
  footer .footer__link .link__box:last-of-type p:last-of-type{
	padding-bottom: 16px;
	border-bottom: 1px solid #ccc;
  }
  footer .footer__link .link__box p{
	padding-top: 18px;
    margin-top: 16px;
	border-top: 1px solid #ccc;
  }
  footer .footer__link ul {
    width: 100%;
    margin-bottom: 0;
    gap: 0;
  }
  footer .footer__link p > a{
	padding: 0;
	display: flex;
	align-items: center;
  }
  footer .footer__link a {
    display: block;
  }
  footer .footer__link ul li a{
	margin-bottom: 8px;
  }
  footer .footer__copy {
    padding: 16px;
    margin-top: 16px;
  }
	.top footer {
		margin-top: 40px;
	}
	
	
	/* トップページ
	------------------------------------------------------------*/
	#kv {
		padding: 56px 0 40px;
		margin-top: 60px;
	}
	#kv img {
		max-width: 70%;
	}
	.cont{
		flex-direction: column;
	}
	main{
		margin-right: 0;
	}
	aside{
		max-width: 90vw !important;
		flex-basis: auto;
	}
	.sec01__list {
		gap: 24px;
		flex-wrap: wrap;
		margin-bottom: 56px;
	}
	.sec01__box {
		width: 100%;
	}
	.sec01__box figure img {
		width: 100%;
	}
	#sec02 {
		padding: 0;
		margin: 48px 0;
	}
	#sec02 h2 {
		gap: 0;
		flex-direction: column;
	}
	#sec02 dl {
		margin-bottom: 0;
		gap: 0;
	}
	#sec02 dl dt {
		width: 100%;
	}
	#sec02 dl dd {
		width: 100%;
		padding-bottom: 16px;
		margin-bottom: 16px;
		border-bottom: 1px solid #ddd;
	}


	/* 下層ページ
	------------------------------------------------------------*/
	.pankuzu {
		padding: 0 5vw;
		margin-top: 40px;
	}
	.pankuzu li {
		font-size: 1.4rem;
		color: #111;
	}
	.pankuzu li:not(:last-of-type)::after {
		background: #ccc;
	}
	.pankuzu li a {
		color: #111;
	}
	.inner {
		max-width: 90vw !important;
	}
	.bnr__list {
		gap: 16px;
		display: flex;
		justify-content: space-between;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.bnr__list > * {
		width: calc((100% - 16px) / 2);
	}
	h1 {
		display: none;
	}
	.pageTtl {
		padding: 40px 0;
		margin-top: 60px;
		text-align: center;
	}
	.pageTtl .inner {
		flex-direction: column;
	}
	.pageTtl h2 {
		margin-bottom: 0;
		gap: 0;
	}
	.pageTtl h2 .jp {
		font-size: 3.6rem;
		letter-spacing: 0;
	}
	.pageTtl h2 .en {
		font-size: 1.4rem;
		letter-spacing: 2px;
	}
	.ttl__l {
		font-size: 2.1rem;
		padding: 8px 0 8px calc(4px + 16px);
		margin: 40px 0 16px;
		letter-spacing: 0;
	}
	.ttl__l::before {
		height: 20px;
	}
	.ttl__m {
		font-size: 1.6rem;
		padding: 8px 16px;
		margin: 40px 0 16px;
	}
	.ttl__m .label {
		font-size: 1.2rem;
		padding: 4px 8px;
		margin-left: 8px;
	}
	.ttl__m__polygon::after{
		left: 8%;
	}
	.ttl__s:has(span) {
		gap: 4px;
	}
	.ttl__s {
		padding-bottom: 8px;
	}
	.ttl__s .label {
		width: auto;
		padding: 4px 8px;
	}
	.sp{
		display: block;
	}
	.mb__m {
		margin-bottom: 24px;
	}
	.x2 > * {
		width: 100%;
	}
	.x3 {
		gap: 24px;
	}
	.x3 > * {
		width: 100%;
	}
	iframe {
		height: 240px;
	}
	.btn__wrap {
		text-align: center;
	}
	.btn__wrap .btn__more {
		padding: 16px 40px;
	}
	.btn__more {
		padding: 8px 16px;
	}
	.contents {
		max-width: 100vw;
		margin-bottom: 40px;
	}
	.contents:has(.subNav) {
		padding-top: 0;
	}
	.subNav {
		padding: 24px 2vw 0;
		border-bottom: none;
		position: static;
	}
	.subNav ul {
		gap: 8px;
		flex-wrap: wrap;
	}
	.subNav ul li {
		width: calc((100% - 8px) / 2);
		border: 1px solid #ddd;
	}
	.subNav ul li a {
		font-size: 1.4rem;
		padding: 8px;
		height: 55px;
	}
	.contBox {
		padding: 24px 2vw;
	}
	.table__basic {
		width: 100%;
		min-width: 600px;
		border-top: 1px solid #ddd;
	}
	.table__basic dl dt {
		width: 100%;
		padding: 8px 16px;
		flex-shrink: 1;
	}
	.table__basic dl dd {
		width: 100%;
		padding: 16px;
	}
	.js-scrollable{
		width: 90%;
		margin: 0 auto;
		overflow-x: scroll;
	}
	.table__line dl dt {
		font-weight: 600;
		color: #666;
		width: 100%;
		padding: 16px 0 0;
		flex-shrink: 1;
		border-bottom: none;
	}
	.table__line dl dd {
		width: 100%;
		padding: 8px 16px 16px;
	}
	table.table__basic{
		width: 100%;
	}
	.msg__sign {
		text-align: center;
	}
	.msg__sign img {
		max-width: 60vw;
	}
	.multi {
		gap: 24px;
		flex-wrap: wrap;
	}
	.multi + .multi {
		margin-top: 24px;
	}
	.multi__img {
		width: 100%;
		flex-shrink: 1;
		text-align: center;
	}
	.wrap__bg {
		padding: 16px 24px;
	}
	.strongBox dt{
		font-size: 2.8rem;
		width: 16%;
	}
	.caseBox dt  {
		font-size: 2.2rem;
		width: 33%;
		letter-spacing: 0;
	}
	.strongBox dd,.caseBox dd {
		font-size: 1.6rem;
		padding-left: 16px;
		letter-spacing: 0;
	}
	.strongBox dd span,.caseBox dd span {
		display: inline;
	}
	.news__list dt {
		width: 100%;
		padding-bottom: 0;
		border-bottom: none;
	}
	.news__list dd {
		width: 100%;
		padding: 0 0 16px;
	}
	.sitemap__box {
		padding: 16px 24px;
	}
	.sitemap__box ul {
		padding-left: 16px;
	}
	.schedule__item {
		padding-left: 24px;
	}
	.schedule__item::after {
		top: 6px;
	}
	.schedule__item:not(:last-of-type)::before {
		top: 6px;
		bottom: -6px;
	}
	.schedule__item dl {
		gap: 0;
	}
	.schedule__item dl dt {
		font-size: 1.6rem;
		width: 20%;
		letter-spacing: 0;
	}
	.staff__txt {
		padding: 16px;
	}
	.staff__txt-name span {
		padding: 4px 16px;
	}
	.remodal {
		max-width: 90vw!important;
		padding: 24px 5vw!important;
	}
	.staffDetail__kv-img {
		margin-bottom: 16px;
	}
	.staffDetail__kv-txt {
		gap: 16px 0;
	}
	.staffDetail__kv-name span {
		padding: 4px 16px;
		letter-spacing: 0;
	}
	.staffDetail__kv-profile {
		padding: 16px;
		gap: 0;
	}
	.staffDetail__kv-profile dl {
		flex-wrap: wrap;
	}
	.staffDetail__kv-profile dl:not(:last-of-type) {
		padding-bottom: 16px;
		margin-bottom: 16px;
		border-bottom: 1px solid #ddd;
	}
	.staffDetail__kv-profile dl dt {
		font-weight: 600;
		color: #666;
		width: 100%;
	}
	.staffDetail__kv-profile dl dd {
		width: 100%;
		padding-left: 16px;
	}
	.flow__arrow > *:not(:last-child)::after{
		bottom: -110%;
		right: 47%;
		transform:rotate(90deg); 
	}
	.flow__box{
		flex-direction: column;
	}
	.flow__arrow > .flow__box::after{
		bottom: -545px;
	}

	.casestudy_img{
		width: 100%;
	}

	/* form
	------------------------------------------------------------*/

	.formIcon {
		padding: 2px 8px;
		margin-right: 0;
	}
  
	form input:not([type="file"]), form textarea, form select {
		padding: 10px;
	}
  
	form select {
		background-position: center right 10px;
	}
  
	form .agreeArea {
		margin-bottom: 20px;
	}
  
	form .agreeArea p br {
		display: none;
	}

	form .formTable dl dt,form .formTable dl dd{
		width: 100%;
	}
  
	form .formTable dl dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	}
  
	form .formTable dl dt br {
		display: none;
	}
	
	form .fileUpload #resume{
		padding-left: 0;
	}
}