@charset "utf-8";

#container #contents {
  max-width: none;
  padding: 0;
}

@media screen and (min-width: 768px) {
  main a[href^="tel:"] {
    pointer-events: none;
  }
}

main a {
  transition: opacity 0.3s;
  color: inherit;
  text-decoration: none !important;
}
@media screen and (min-width: 768px) {
  main a:hover {
    opacity: 0.7;
  }
}

main a span {
  text-decoration: none !important;
}

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

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

main *,
main *::before,
main *::after {
  box-sizing: border-box;
}

main ul,
main ol {
  padding: 0;
}

/* body, */
main h1,
main h2,
main h3,
main h4,
main p,
main ul,
main ol,
main figure,
main blockquote,
main dl,
main dd {
  margin: 0;
}

/* body {
  text-rendering: optimizeSpeed;
  min-height: 100vh;
} */

main ul,
main ol {
  list-style: none;
}

main img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  opacity: 0;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
} */

.inner {
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1260px;
  }
}

.card {
  box-shadow: 2px 2px 10px rgba(11, 31, 100, 0.2);
  border-radius: 6px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .card {
    width: calc((100% - 45px) / 3);
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .card {
    width: calc((100% - 60px) / 3);
  }
}

.card a {
  display: block;
}
.card__img {
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}
.card__img img {
  -o-object-fit: cover;
  -o-object-position: top;
  transition: all 0.5s ease-in-out 0s;
  aspect-ratio: 335/137;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media screen and (min-width: 768px) {
  .card__img img {
    -o-object-position: center;
    aspect-ratio: 221/197;
    object-position: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .card__img img {
    aspect-ratio: 377/197;
  }
}

.card__body {
  padding: 19px 13px 20px;
}
@media screen and (min-width: 768px) {
  .card__body {
    padding: 22px 17px 20px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .card__body {
    padding: 22px 20px 20px;
  }
}

.card__text {
  position: relative;
  padding-right: 20px;
  color: #0B1F64;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .card__text {
    padding-right: 50px;
    font-size: 18px;
  }
}

.card__text::before {
  display: inline-block;
  position: absolute;
  top: 13px;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
  transition: all 0.3s ease-in-out 0s;
  border-top: 1px solid #0B1F64;
  border-right: 1px solid #0B1F64;
  background-color: transparent;
  width: 5px;
  height: 5px;
  content: "";
}
@media screen and (min-width: 768px) {
  .card__text::before {
    right: 12px;
    width: 7px;
    height: 7px;
  }
}

.card__text::after {
  display: inline-block;
  position: absolute;
  top: 13px;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s ease-in-out 0s;
  border: 1px solid #0B1F64;
  border-radius: 50%;
  background-color: #FFF;
  width: 24px;
  height: 24px;
  content: "";
}
@media screen and (min-width: 768px) {
  .card__text::after {
    width: 29px;
    height: 29px;
  }
}

.card a:hover {
  opacity: 1;
  transition: all 0.3s ease-in-out 0s;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .card a:hover .card__text::before {
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
  }
}
@media screen and (min-width: 768px) {
  .card a:hover .card__text::after {
    border: 1px solid #FFF;
    background-color: #0B1F64;
  }
}
@media screen and (min-width: 768px) {
  .card a:hover .card__img img {
    transform: scale(1.05);
  }
}

@media screen and (min-width: 768px) {
  .cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.cards__item:not(:first-of-type) {
  margin-top: 33px;
}
@media screen and (min-width: 768px) {
  .cards__item:not(:first-of-type) {
    margin-top: 0;
  }
}

.linkTitle a {
  display: flex;
  position: relative;
  align-items: baseline;
  padding-left: 0.8em;
  color: #0B1F64;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .linkTitle a {
    transition: all 0.3s ease-in-out 0s;
  }
}

.linkTitle a::before {
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  transform: rotate(45deg);
  border-top: 1px solid #0B1F64;
  border-right: 1px solid #0B1F64;
  background-color: transparent;
  width: 5px;
  height: 5px;
  content: "";
}

.linkTitle._cat a {
  text-transform: capitalize;
}

.linkTitle._cat a span {
  display: block;
}

.linkTitle img {
  margin-left: 10px;
  width: 18px;
}


.service .linkTitle a::before {
  margin-bottom: 2px;
  width: 7px;
  height: 7px;
}

@media screen and (min-width: 768px) {
  .linkTitle a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}

.linkTitle._cat a {
  text-transform: capitalize;
}

.linkTitle._cat a span {
  display: block;
}

.linkTitle img {
  margin-left: 10px;
  width: 19px;
}

.mvUnder {
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .mvUnder {
    height: 350px;
  }
}

.servicePage .mvUnder {
  background-image: url(../../service/img/mv-service_02.jpg?ver=251021);
}

.irPage .mvUnder {
  background-image: url(../../investor/img/mv-ir.jpg);
}

.sustainaPage .mvUnder {
  background-image: url(../../sustainability/img/mv-sustaina.jpg);
}

.companyPage .mvUnder {
  background-image: url(../../company/img/mv-company.jpg);
}

.mvUnder__heading {
  color: #FFF;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .mvUnder__heading {
    font-size: 32px;
  }
}
.mvUnder__heading--service {
  text-shadow: 2px 2px 5px rgba(4, 138, 191, 0.6);
}
.breadcrumbWrap {
  height: 66px;
  font-size: 12px;
  line-height: 66px;
}
@media screen and (min-width: 768px) {
  .breadcrumbWrap {
    margin-top: 36px;
  }
}

.breadcrumb {
  display: flex;
}

.breadcrumb__item a {
  color: #0B1F64;
}


.breadcrumb__item:not(:first-of-type) {
  margin-left: 10px;
}

.breadcrumb__item:not(:last-of-type)::after {
  display: inline-block;
  transform: rotate(45deg);
  margin-right: 5px;
  margin-left: 5px;
  border-top: 1px solid #0B1F64;
  border-right: 1px solid #0B1F64;
  background-color: transparent;
  width: 8px;
  height: 8px;
  content: "";
}

.breadcrumb__item:not(:last-of-type):hover {
  text-decoration: underline;
}
.breadcrumb__item:not(:last-of-type):hover .breadcrumb__item a {
  opacity: 1;
}




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

================================================================================ */
:root
{

--colorBlueDeep: rgba(20, 30, 100, 1.0);
--colorBlueDeepT: rgba(20, 30, 100, 0.0);

--transition03: 0.3s ease-in-out 0s;
--transition05: 0.5s ease-in-out 0s;

}


.circleArrow
{
	display: flex;	justify-content: center;	align-items: center;
	width: 29px;	height: 29px;
	padding: 0 2px 0 0;
	border: 1px solid var(--colorBlueDeep);
	border-radius: 50%;
	background-color: var(--colorBlueDeepT);

	transition: 0.3s ease-in-out 0s;
	transition-property: background-color;
}
.circleArrow::before
{
	content: "";
	display: block;
	width: 7px;	height: 7px;
	border-top: 1px solid var(--colorBlueDeep);
	border-right: 1px solid var(--colorBlueDeep);
	transform: rotate(45deg);

	transition: 0.3s ease-in-out 0s;
	transition-property: border-color;
}

/* hoverさせたい任意の箇所に */
/*
@media screen and (min-width: 768px)
{
*:hover .circleArrow{	background-color: var(--colorBlueDeep);	}
*:hover .circleArrow::before{	border-color: white;	}
}
 */



/* ================================================================================
animation
================================================================================ */
.IV.Ifade, .IV .Ifade
{
	opacity: 0;
	transition: 0.5s ease-in-out 0.2s;
	transition-property: opacity;
}
.IV.inview.Ifade, .IV.inview .Ifade{	opacity: 1;	}


.IV.IfadeBottom, .IV .IfadeBottom
{
	opacity: 0;
	transform: translate(0, 10px) scale(1.02);

	transition: 0.5s ease-in-out 0.2s;
	transition-property: opacity, transform;
}
.IV.inview.IfadeBottom, .IV.inview .IfadeBottom
{
	opacity: 1;
	transform: translate(0, 0) scale(1.00);
}


.IV.IfadeRight, .IV .IfadeRight
{
	opacity: 0;
	transform: translate(10px, 0) scale(1.00);

	transition: 0.5s ease-in-out 0.2s;
	transition-property: opacity, transform;
}
.IV.inview.IfadeRight, .IV.inview .IfadeRight
{
	opacity: 1;
	transform: translate(0, 0) scale(1.00);
}


.IV.IfadeLeft, .IV .IfadeLeft
{
	opacity: 0;
	transform: translate(-10px, 0) scale(1.00);

	transition: 0.5s ease-in-out 0.2s;
	transition-property: opacity, transform;
}
.IV.inview.IfadeLeft, .IV.inview .IfadeLeft
{
	opacity: 1;
	transform: translate(0, 0) scale(1.00);
}

/* ========================================
-767
======================================== */
@media screen and (min-width: 768px)
{
.IV.d1,.IV .d1{	transition-delay: 0.2s !important;	}
.IV.d2,.IV .d2{	transition-delay: 0.4s !important;	}
.IV.d3,.IV .d3{	transition-delay: 0.6s !important;	}
.IV.d4,.IV .d4{	transition-delay: 0.8s !important;	}
.IV.d5,.IV .d5{	transition-delay: 1.0s !important;	}
.IV.d6,.IV .d6{	transition-delay: 1.2s !important;	}
.IV.d7,.IV .d7{	transition-delay: 1.4s !important;	}
.IV.d8,.IV .d8{	transition-delay: 1.6s !important;	}
.IV.d9,.IV .d9{	transition-delay: 1.8s !important;	}
}
