@charset "UTF-8";

:root {
  --main-color: #0074be;
  --ac-color: #36b593;
  --bgsax: #e8eff9;
  --red: #d70505;
  --max-width: 1140px;
  --n-width: 840px;
  --f-20: min(calc(40/1140*100vw),20px);
  --f-18: min(calc(36/1140*100vw),18px);
  --f-16: min(calc(32/1140*100vw),16px);
  --f-14: min(calc(28/1140*100vw),14px);
  --f-13: min(calc(26/1140*100vw),13px);
  --f-20sp: calc(40/750*100vw);
  --f-18sp: calc(36/750*100vw);
  --f-16sp: calc(32/750*100vw);
  --f-14sp: calc(28/750*100vw);
  --f-13sp: calc(26/750*100vw);
  --f-12sp: calc(24/750*100vw);
  --roboto: "Roboto", sans-serif;
}


body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}


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

a:hover {
  opacity: 0.8;
}

/* flex-box */
.flex {
  display: flex;
}

.flex-sb {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

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

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

.aline-c {
  align-items: center;
}

.flex-c {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

img {
  vertical-align: bottom;
}
@media screen and (max-width: 750px) {
  img {
    width: 100%;
  }
} 


.sp-only {
  display: none;
}
.pc-only {
  display: block;
}
@media screen and (max-width: 750px){
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}

/*背景*/
.bg-sax {
  background: #ecf4f8;
}

.bg-blue {
  background: #4d7388;
}

.bg-pattern {
  background: url(../img/common/bg_pattern.gif);
}

.en {
  font-family: "Cormorant Infant", serif;
}

.wrapper {
  width: 100%;
  background: #fff;
  font-size: 1rem;
  overflow: hidden;
}
main {
  padding-top: 56px;
}
@media screen and (max-width: 750px) {
  main {
    padding-top: 50px;
  }
}
#header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.header .header-inner {
  width: 100%;
  /* max-width: var(--max-width); */
  margin-left: auto;
  margin-right: auto;
  padding: 8px 10px;
  position: relative;
  align-items: center;
}
@media screen and (max-width: 1030px){
  .header .header-inner {
    height: 50px;
  }
}
.header .header-logo {
  width: min(80%,349px);
}

.header .header__nav {
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}
@media screen and (max-width: 1030px) {
  .header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 50px;
    width: 100%;
    height: calc(100vh - 50px);
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .4s;
    flex-direction: column;
    justify-content: flex-start!important;
    align-items: center;
  }
}

.header .header__nav .nav__items {
  width: 100%;
  display: flex;
  align-items: center;
  height: initial;
  justify-content: flex-end;
}
@media screen and (max-width: 1030px) {
  .header .header__nav .nav__items {
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0; */
    padding-top: 70px;
    width: 80%;
    display: flex;
    flex-direction: column;
    height: initial;
    justify-content: flex-start;
    padding-left: 0;
    align-items: flex-start;
    margin-bottom: 2em;
  }
}

.header .header__nav .nav__items li {
  font-size: 14px;
  margin-right: 1.5em;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 1030px) {
  .header .header__nav .nav__items li {
    font-size: calc(36/1030*100vw);
    margin-right: 0;
    font-weight: 500;
    padding: 1em;
    border-bottom: #808080 1px solid;
    width: 100%;
    position: relative;
  }
  .header .header__nav .nav__items li:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #808080;
    border-right: solid 2px #808080;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
  }
  .header .header__nav .nav__items li .sp-only {
    display: inline;
  }
}


/* ハンバーガーメニュー */
.hamburger {
  display: none;
}
@media screen and (max-width: 1030px) {
  .header__hamburger {
    width: 32px;
    height: 100%;

  }
  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
    display: block;
  }
  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    position: relative;
    transition: ease .4s;
    display: block;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }

  .hamburger span:nth-child(3) {
    top: 0;
  }


  /* ハンバーガーメニュークリック後のスタイル */
  .header__nav.active {
    transform: translateX(0);
  }

  .hamburger.active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;

  }

  .hamburger.active span:nth-child(3) {
    top: -14px;
    transform: rotate(-45deg);
  } 
}



.header .btn-translation {
  width: 118px;
  height: 35px;
  padding: 0;
  text-align: center;

}
@media screen and (max-width: 1030px) {
  .header .btn-translation {
      width: 80%;
      height: 50px;
    }
  }
.header .btn-translation a {
  background-image: -moz-linear-gradient( 0deg, rgb(0,116,190) 0%, rgb(54,181,147) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(0,116,190) 0%, rgb(54,181,147) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(0,116,190) 0%, rgb(54,181,147) 100%);
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-family: var(--roboto);
  font-size: var(--f-18);
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .header .btn-translation a {
    font-size: var(--f-20sp);
  }
}
.header .btn-translation a:hover{
  background-image: -moz-linear-gradient( 0deg, rgb(7,103,158) 0%, rgb(21,145,219) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(7,103,158) 0%, rgb(21,145,219) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(7,103,158) 0%, rgb(21,145,219) 100%);
}

.header ul.bogo-language-switcher {
  display: flex;
  align-items: baseline;
}

.header ul.bogo-language-switcher li {
  text-align: center;
}



.top-mv {
  background: url("../img/top_mv.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  min-height: 440px; 
}
@media screen and (max-width: 1140px){
  .top-mv {
    background: url("../img/top_mv.jpg") no-repeat left top;
    background-size: cover;
  }
}
@media screen and (max-width: 750px){
  .top-mv {
    background: url("../img/top_mv_sp.jpg") no-repeat left top;
    background-size: cover;
  }
}
.top-mv .inner{
  max-width: var(--max-width);
  min-height: 440px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1140px){
  .top-mv .inner{
    max-width: 100%;
    min-height: 440px;
    padding: 0 1em;
    /* justify-content: center; */
  }
}
h1.top-mv-title {
  color: #fff;
  font-size: min(calc(60/1140*100vw),60px);
  font-weight: bold;
  text-align: right;
}
/* @media screen and (max-width: 1140px){
  h1.top-mv-title {
    text-align: center;
  }
} */
@media screen and (max-width: 750px){
  h1.top-mv-title {
   font-size: calc(78/750*100vw);
   line-height: 1.3;
  }
}

/*********************************
タイトル・テキスト・装飾など
*********************************/
h2.title01 {
  position: relative;
  margin-bottom: 40px;
  display: inline-block;
}
@media screen and (max-width: 750px) {
  h2.title01{
    margin-bottom: 50px;
  }
}
h2.title01 .en {
  color: var(--main-color);
  font-family: "Bebas Neue", sans-serif;
  font-size: min(calc(96/1140*100vw),96px);
  font-weight: 500;
  letter-spacing: 5px;
}
@media screen and (max-width: 750px){
  h2.title01 .en {
    font-size: calc(96/365*100vw);
    letter-spacing: 1px;
  }
  h2.title01 .en .sp-ls-1 {
    font-size: calc(90/365*100vw);
    letter-spacing: -1px;
  }
}
h2.title01 .en .accent {
  color: var(--ac-color);
}
h2.title01 .ja {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8em;
  width: 100%;
  font-size: min(calc(14/750*100vw),14px);
  font-weight: 700;
  position: absolute;
  left: 0;
  bottom: -1.8em;
}
@media screen and (max-width: 750px){
  h2.title01 .ja {
    font-size: calc(28/750*100vw);
  }
}
h2.title01 .ja::before {
  content: "";
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  border-top: 1px solid var(--main-color);
}

h2.title02 {
  font-size: min(calc(70/750*100vw),40px);
  line-height: 1.5;
  color: var(--main-color);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
  h2.title02.sp-small {
  font-size: calc(45/750*100vw);
 }
 h2.title02.sp-small2 {
  font-size: calc(60/750*100vw);
 }
 h2.title02.sp-small3 {
  font-size: calc(55/750*100vw);
 }
} 
h2.title03 {
  font-size: min(calc(60/750*100vw),34px);
  line-height: 1.5;
  color: var(--main-color);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  font-feature-settings: "palt";
}
h3.h3-title {
  font-size: min(calc(30/1140*100vw),30px);
  color: var(--main-color);
  margin-bottom: 0.5em;
}
@media screen and (max-width: 750px){
  h3.h3-title {
    font-size:calc(50/750*100vw);
    margin-bottom: 0.5em;
  }
}
h3.h3-title02 {
  font-size: min(calc(20/1140*100vw),20px);
  margin-bottom: 0.5em;
}
@media screen and (max-width: 750px){
  h3.h3-title02 {
    font-size:calc(40/750*100vw);
    margin-bottom: 0.5em;
  }
}
h1.sub-mv-title {
  position: relative;
  display: inline-block;
}
h1.sub-mv-title .en{
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: min(calc(96/1140*100vw),96px);
  font-weight: 500;
  letter-spacing: 5px;
  margin-bottom: 20px;
  display: block;
}
@media screen and (max-width: 750px){
  h1.sub-mv-title .en {
    font-size: calc(80/365*100vw);
    letter-spacing: 1px;
  }
}
h1.sub-mv-title .ja {
  color: #fff;
  font-size: min(calc(14/750*100vw),14px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .8em;
  width: 100%;
  font-weight: 700;
  position: absolute;
  left: 0;
  bottom: -1.8em;
  letter-spacing: 0;
}
@media screen and (max-width: 750px){
  h1.sub-mv-title .ja {
    font-size: calc(28/750*100vw);
  }
}
h1.sub-mv-title .ja::before {
  content: "";
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  border-top: 1px solid #fff;
}


.txt01 {
  font-size: var(--f-20);
  line-height: 2.25;
}
@media screen and (max-width: 750px) {
  .txt01 {
    font-size: var(--f-16sp);
    line-height: 1.7;
  }
}
.txt02 {
  font-size: var(--f-16);
  line-height: 2.25;
}
@media screen and (max-width: 750px) {
  .txt02 {
    font-size: var(--f-16sp);
    line-height: 1.7;
  }
}
.txt03 {
  font-size: var(--f-14);
  line-height: 1.643;
}
@media screen and (max-width: 750px) {
  .txt03 {
    font-size: var(--f-14sp);
  }
}
.f-red {
  color: var(--red);
}
.f-16 {
  font-size: var(--f-16);
}

.t-center {
  text-align: center;
}
.t-right {
  text-align: right;
}

/*********************************
TOPページ
*********************************/
.top-contents {
  padding-top: 80px;
}
.top-contents li {
  margin-bottom: 135px;
}
@media screen and (max-width: 750px) {
  .top-contents li{
    margin-bottom: 80px;
  }
}
.top-contents li:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.top-contents .textBlock {
  width: calc(100% - 52% - 8%);
  padding-top: 2.5em;
}
@media screen and (max-width: 750px){
  .top-contents .textBlock {
    width: 100%;
    padding-top: .5em;
  }
}
.top-contents .imgBlock {
  width: 52%;
}
@media screen and (max-width: 750px){
  .top-contents .imgBlock {
    width: 100%;
    padding-top: .5em;
  }
}



/*********
お知らせ・ニュース
**********/
.top-news .inner{
  border-radius: 20px;
  background-image: -moz-linear-gradient( -60deg, rgb(0,116,190) 36%, rgb(54,181,147) 100%);
  background-image: -webkit-linear-gradient( -60deg, rgb(0,116,190) 36%, rgb(54,181,147) 100%);
  background-image: -ms-linear-gradient( -60deg, rgb(0,116,190) 36%, rgb(54,181,147) 100%);
  box-shadow: 0px 0px 20px 0px rgba(0, 35, 54, 0.2);
  padding: 60px;
  align-items: center;
}
@media screen and (max-width: 1140px) {
  .top-news .inner{
    padding: 40px;
  }
}
@media screen and (max-width: 750px) {
  .top-news .inner{
    flex-direction: column;
    padding: 40px 20px ;
  }
}
.top-news .leftBox {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-right: 40px;
  position: relative;
  padding-top: 20px;
}
@media screen and (max-width: 750px) {
  .top-news .leftBox {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 0;
  }
}
.top-news .leftBox:after {
  content: '';
  width: 1px;
  height: 150%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .top-news .leftBox:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    right: auto;
    left: auto;
    top: auto;
    bottom: -10px;
    transform: none;
  }
}
.top-news .rightBox {
  width: 80%;
}
@media screen and (max-width: 750px) {
  .top-news .rightBox {
    width: 100%;
  }
}

h2.top-news-title .en {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: min(calc(96/1140*100vw),96px);
  font-weight: 500;
  letter-spacing: 5px;
  margin-bottom: 8px;
  display: block;
}
@media screen and (max-width: 750px) {
  h2.top-news-title .en{
    font-size: calc(150/750*100vw);
  }
}
h2.top-news-title .ja {
  color: #fff;
  font-size: min(calc(28/750*100vw),14px);
  display: block;
}
/* @media screen and (max-width: 750px) {
  h2.top-news-title .ja {
    margin-top: -8px;
  }
} */
.top-news .link{
  margin-top: 1em;
}
.top-news .link a {
  position: relative;
  color: #fff;
  text-align: center;
  padding-right: 3em;
  font-size: min(calc(28/750*100vw),14px);
}
.top-news .link a:before {
  content: '';
  background: url(../img/arrow-maru.png) no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 4em;
}
.top-news .news-list {
  flex-wrap: wrap;
  /* color: #fff; */
  padding-left: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .top-news .news-list {
    padding-left: 0;
    margin-top: 20px;
  }
}
.top-news .news-list.f-w,
.top-news .news-list.f-w a {
  color: #fff;
} 
.top-news .news-list dt {
  width: 14.78%;
  margin-bottom: 1em;
  font-family: var(--roboto);
  font-weight: 500;
  font-size: var(--f-16);
  padding-top: 2px;
}
@media screen and (max-width: 1140px) {
  .top-news .news-list dt {
    width: 100%;
    margin-bottom: 0;
    font-size: var(--f-14sp);
  }
}
.top-news .news-list dd {
  width: 80%;
  margin-bottom: 1em;
  font-size: var(--f-16);
}
@media screen and (max-width: 1140px) {
  .top-news .news-list dd {
    width: 100%;
    font-size: var(--f-14sp);
  }
}

.cta {
  padding: 8em 0;
}
@media screen and (max-width: 750px) {
  .cta {
    padding: 2em 1em 6em;
  }
}
.btn01 {
  border-radius: 15px;
  background-color: rgb(54, 181, 147);
  box-shadow: 0px 0px 29px 0px rgba(54, 181, 147, 0.48);
  width: 516px;
  height: 104px;
  margin: 0 auto;
  
}
@media screen and (max-width: 750px) {
 .btn01 {
  width: 100%;
  height: 90px;
 }
}
.btn01 a {
  color: #fff;
  font-size: min(calc(40/750*100vw),24px);
  font-weight: bold;
  position: relative;
  padding-left: 40px;
  text-align: center;
  line-height: 1.35;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .btn01 a {
    padding-left: 20px;
  }
}
.btn01 a:before {
  content: '';
  background: url(../img/icon_mail.png) no-repeat;
  width: 35px;
  height: 28px;
  position: absolute;
  left: 30px;
  top:50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .btn01 a:before {
    left: 20px;
  }
}


.footer .bg_blue {
  background: var(--main-color);
}
.footer .banners {
  padding: 4em 0;
}
.footer .banners li {
  margin: 10px;
}
.footer .bg_gray{
  background: #f2f5f8;
  padding-top: 50px;
}
.footer .footer-logos {
  align-items: flex-end;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .footer .footer-logos {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .footer-logos li + li {
  padding-left: 34px;
}
@media screen and (max-width: 750px) {
  .footer .footer-logos li + li {
    padding-left: 0;
    margin-top: 1em;
  }
}
.footer .f-addr {
  font-size: min(calc(28/750*100vw),14px);
  color: #707477;
  padding-left: 2em;
}
@media screen and (max-width: 750px) {
  .footer .f-addr {
    padding-left: 0;
  }
}
.footer .footer-bottom {
  padding-top: 60px;
  padding-bottom: 20px;
}
 
.footer .f-nav a,
.footer .copyright{
  font-size: min(calc(28/750*100vw),14px);
  color: #707477;
}
.footer .f-nav li + li {
  margin-left: 15px;
}
.footer .copyright {
  text-align: center;
  padding-top: 10px;
  font-size: min(calc(24/750*100vw),12px);
}


/*********************************
下層ページ
*********************************/
.sub-mv {
  background: url("../img/main_title_bg.jpg") no-repeat center top;
  background-size: cover;
}
.sub-mv .inner {
  align-items: center;
  background: linear-gradient(115deg, var(--main-color) 0%, var(--main-color) 45%, transparent 45%, transparent 100%);
  display: flex;
  height: 316px;
  justify-content: center;
}

/*******
パンくず
*******/
.breadcrumb {
  z-index: 1;
  position: static;
}
.breadcrumb .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1em;
  font-size: min(calc(24/750*100vw),12px);
}
.breadcrumb-list {
  display: flex;
  justify-content: flex-start;
}
.breadcrumb-list-item {
  margin-right: 2em;
  position: relative;
  display: inline-block;
}
.breadcrumb-list-item a {
  border-bottom: 1px solid #333;
}
.breadcrumb-list-item a:hover {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

.breadcrumb-list-item + .breadcrumb-list-item:before {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  left: -1.3em;
  top: 37%;
  transform: rotate(45deg);
}

/*******
レイアウト・パーツ
*******/
/* .l-container {
  margin-top: 80px;
} */
/* @media screen and (max-width: 750px) {
  .l-container {
    margin-top: 40px;
  }
} */
.l-contents {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .l-contents {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.margin {
  height: 80px;
}
@media screen and (max-width: 750px) {
  .margin {
    height: 40px;
  }
}
.width {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1140px) {
 .width {
  padding: 0 1em;
 }
}
.n-width {
  width: min(90%,var(--n-width));
  margin-left: auto;
  margin-right: auto;
}

.bg-sax {
  background: var(--bgsax);
}

.imgArea,
.txtArea{
  padding-top: 40px;
}
@media screen and (max-width: 750px) {
.txtArea {
  padding-top: 0;
}
}
h2 + .imgArea {
  padding-top: 0;
}
.i-caption {
  padding-top: 10px;
  font-size: var(--f-16);
}
@media screen and (max-width: 750px) {
  .i-caption {
    font-size: var(--f-12sp);
  }
}

.mt4 {
  margin-top: 40px;
}
.mt6 {
  margin-top: 60px;
}


/*******
社長メッセージ
*******/
.message-txt {
  padding-top: 0;
}
.message-img {
  margin: 4em auto;
  align-items: flex-end;
}
@media screen and (max-width: 750px) {
.message-img {
  flex-direction: column-reverse;
  align-items: center;
}
}
@media screen and (max-width: 750px) {
  .message-img01 {
    width: 70%;
    margin-bottom: 1em;
  }
}
.message-img02 {
  width: 310px;
  padding-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .message-img02 {
    width: 70%;
    padding-bottom: 20px;
  }
}

.message-img02 .name {
  font-weight: bold;
  margin-bottom: 10px;
}

/*******
会社概要
*******/
.companyList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: 500;
  margin-bottom: 40px;
}
.companyList dt {
  width: 21.9%;
  border-bottom: 1px solid var(--main-color);
  padding: 1em;
  font-size: var(--f-20);
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .companyList dt {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
    color: var(--main-color);
    font-size: var(--f-14sp);
  }
}
.companyList dd {
  width: 78.1%;
  border-bottom: 1px solid #bbb;
  padding: 1em 1em 1em 2.5em;
  font-size: var(--f-20);
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .companyList dd {
    width: 100%;
    padding: 1em;
    font-size: var(--f-14sp);
  }
}
.group-logo {
  margin-bottom: 1em;
}
@media screen and (max-width: 750px) {
  .group-logo {
    width: 48.13%;
  }
}

/*******
サービス
*******/
.service-top-list {
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .service-top-list {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.card-item {
  background-color: rgb(255, 255, 255);
  box-shadow: 10px 17.321px 20px 0px rgba(0, 35, 54, 0.15);
  width: min(30%,355px);
  margin-right: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .card-item {
    width: 48%;
    margin-right: 4%;
  }
  .card-item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .card-item {
    width: 100%;
    margin-right: 0;
  }
}
.card-item:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .card-item:nth-of-type(3){
    margin-right: 4%;
  }
}
@media screen and (max-width: 750px) {
  .card-item:nth-of-type(3){
    margin-right: 0;
  }
}
.card-item .card-img {
  aspect-ratio: 354/261;
}
.card-item .card-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.card-txt {
  padding: 10px;
  position: relative;
}
.card-item a:hover .card-txt {
  color: var(--main-color);
}
.card-txt:after {
  content: '';
  background: url("../img/icon-arrow.png") no-repeat;
  width: 25px;
  height: 13px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.service-block.col2 {
  margin-bottom: 80px;
}
.service-block.col2:last-child {
  margin-bottom: 0;
}
.service-block.col2:nth-last-of-type(odd){
  flex-direction: row-reverse;
}
.service-block.col2:nth-last-of-type(odd) .i-caption {
  text-align: left;
}
.service-block.col2:nth-last-of-type(even) .i-caption {
  text-align: right;
}
@media screen and (max-width: 750px) {
  .service-block.col2:nth-last-of-type(even) .i-caption {
    text-align: left;
  }
}
.service-block.col2 .txtArea,
.service-block.col2 .imgArea {
  padding-top: 0
}


@media screen and (max-width: 750px) {
  .h3-title.t-center,
  .txt02.t-center{
    text-align: left;
  }
}

/*******
今後の挑戦
*******/
.challengesList .col3-item {
  display: flex;
  flex-direction: column;
  align-content: stretch; 
}
@media screen and (max-width: 750px) {
  .challengesList .col3-item {
    margin-bottom: 2em;
  }
} 
.challenges-h3{
  text-align: center;
  color: var(--main-color);
  margin-top: 1em;
  margin-bottom: 1em;
}
.txt03 {
  margin-top: auto;
  
}

/*******
ニュース・お知らせ
*******/
.updateYear {
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.updateYear li {
  background-color: #d6d6d6;
  padding: 2px 20px;
  margin-right: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.updateYear li.current {
  background-color: var(--main-color);
}
.updateYear li a {
  color: #fff;
}
.news .news-list {
  flex-wrap: wrap;
}
.news .news-list a:hover {
  text-decoration: underline;
}
.news .news-list dt {
  width: 14.78%;
  margin-bottom: 1em;
  font-family: var(--roboto);
  font-weight: bold;
  padding-top: 2px;
  color: #808080;
}
@media screen and (max-width: 750px) {
  .news .news-list dt {
    width: 100%;
    margin-bottom: 0;
  }
}
.news .news-list dd {
  width: 80%;
  margin-bottom: 1em;
}

@media screen and (max-width: 750px) {
  .news .news-list dd {
    width: 100%;
    margin-bottom: 2em;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  list-style-type: none;
  padding: 0;
  margin-top: 60px;
}

.pagination a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 1px;
  background-color: #f2f2f2;
  color: var(--main-color);
}

.pagination a:not(:hover) {
  text-decoration: none;
}

.pagination .current a {
  background-color: var(--main-color);
  color: #fff;
  pointer-events: none;
}

/*******
お問い合わせ
*******/
.contact .title02 {
  margin-bottom: 8px;
}
input[type=text],
input[type=email],
textarea {
  width: 100%;
  max-width: 100%;
  border: none;
  margin: 0.5rem 0;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: #ccc;
}
textarea {
  height: 10rem;
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border: 1px solid var(--main-color);
  outline: none;
}
input[type=submit] {
  background-image: -moz-linear-gradient( 0deg, rgb(0,116,190) 0%, rgb(54,181,147) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(0,116,190) 0%, rgb(54,181,147) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(0,116,190) 0%, rgb(54,181,147) 100%);
  color: #fff;
  width: min(90%,480px);
  height: 80px;
  border: none;
  margin: 40px auto;
  font-size: 26px;
  display: block;
  transition: 1s;
}
input[type=submit]:hover{
  background-image: -moz-linear-gradient( 0deg, rgb(7,103,158) 0%, rgb(21,145,219) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(7,103,158) 0%, rgb(21,145,219) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(7,103,158) 0%, rgb(21,145,219) 100%);
}



.contact-form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  color: #000;
  font-size: var(--f-18);
  margin: 50px auto;
}
@media screen and (max-width: 750px) {
  .contact-form {
    margin: 30px auto;
  }
} 
.contact-form dt {
  width: 27.38%;
  padding-left: 1em;
}
@media screen and (max-width: 750px) {
  .contact-form dt {
    width: 100%;
  }
}
.contact-form dt .attention {
  font-size: 80%;
}

.contact-form dd {
  width: calc(100% - 27.38%);
}
@media screen and (max-width: 750px) {
  .contact-form dd {
    width: 100%;
  }
}

.contact-form dd .p-country-name {
  display: none;
}
.contact-notes {
  text-align: center;
  font-size: var(--f-13);
}
@media screen and (max-width: 750px) {
  .contact-notes {
    font-size: var(--f-13sp);
  }
}
.contact-notes a {
  text-decoration: underline;
}


/*******
サイトマップ
*******/
.sitemapList {
  width: 100%;
}
.sitemapList  > li {
  border-bottom: 1px solid #ddd;
}
.sitemapList li a {
  position: relative;
  display: block;
  padding: 1.5em;
}
.sitemapList li a::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #5070e3;
  border-right: solid 2px #5070e3;
  position: absolute;
  right: 20px;
  top: calc(50% - 3px);
}
.sitemapList li a::before {
  transform: rotate(45deg);
}
.sitemapList .sitemap_child {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid #ddd;
}
.sitemapList .sitemap_child li {
  width: 48%;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 750px) {
  .sitemapList .sitemap_child li {
    width: 90%;
    border-top: 1px solid #ddd;
  }
} 
.sitemapList .sitemap_child li:nth-of-type(1),
.sitemapList .sitemap_child li:nth-of-type(2) {
  border-top: none;
}
@media screen and (max-width: 750px) {
  .sitemapList .sitemap_child li:nth-of-type(2) {
    border-top: 1px solid #ddd;
  }
} 

/*******
プライバシーポリシー
*******/
.privacypolicy {
  border-bottom: 1px solid #ddd;
  padding-bottom: 4em;
}
.privacypolicy + .privacypolicy {
  padding-top: 4em;
}
.privacypolicy .txt03{
  margin-bottom: 2em;
}
.privacypolicy .disc {
  list-style: disc;
  font-size: var(--f-14);
  line-height: 1.643;
  padding-left: 2em;
  margin-bottom: 2em;
}
@media screen and (max-width: 750px) {
  .privacypolicy .disc {
    font-size: var(--f-14sp);
  }
}
/*******
レイアウト
*******/

.block {
  margin-bottom: 40px;
}
.flex-sb.col2 {
  flex-wrap: wrap;
}
.col2-item img,
.col3-item img {
  width: 100%;
}
.txtBlock { width: 45%;}
.imgBlock { width: 52%;}
.col3-item { width: 31.14%}

@media screen and (max-width: 750px) {
  .txtBlock,
  .imgBlock,
  .col3-item {
    width: 100%;
  }

}

.wrapper {
  opacity: 0;
  pointer-events: none;
}
body.appear .wrapper {
  animation-name: PageAnime-content;
  animation-duration: 0.55s;
  animation-delay: 0.55s;
  animation-fill-mode: forwards;
  opacity: 0;
  pointer-events: auto;
}
.animation .wrapper {
  opacity: 1;
  pointer-events: auto;
}
@keyframes PageAnime-content {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

.move .animation-bg {
  background: var(--main-color);
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.ltr .animation-bg {
  animation-name: PageAnime-ltr;
}
@keyframes PageAnime-ltr {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}


/* アニメーションCSS */
.animate {
  opacity: 0;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition-delay: .5s;
}

.animate.from-bottom {
  transform: translateY(100px);
}

.animate.from-right {
  transform: translateX(100px);
}

.animate.from-left {
  transform: translateX(-100px);
}

.animate.scale-up {
  transform: scale(0.8);
}

.animate.pop {
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.animate.fade-in {
  opacity: 0;
  transform: none;
  transition: opacity 2s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: none;
  /* 透明度のみを変化させる */
}

.animate:nth-child(1) {
  transition-delay: 0s;
}

.animate:nth-child(2) {
  transition-delay: 0.2s;
}

.animate:nth-child(3) {
  transition-delay: 0.4s;
}

.animate:nth-child(4) {
  transition-delay: 0.6s;
}

.animate:nth-child(5) {
  transition-delay: 0.8s;
}

.animate:nth-child(6) {
  transition-delay: 1s;
}
.animate.delay55s {
  transition-delay: 0.55s;
}
.animate.delay1s {
  transition-delay: 1s;
}
.animate.delay12s {
  transition-delay: 1.2s;
}
