/* @charset "utf-8";
/* <weight>: Use a value from 100 to 900 */
/* <uniquifier>: Use a unique and descriptive class name */

body {
  font-family: 'Work Sans','Noto Sans JP', sans-serif;
  line-height: 100%;
  margin: 0;
  letter-spacing: 0;
  font-feature-settings: "pwid";
  position: relative;
  color: #333;
  font-weight: 600;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
h1, h2, h3, h4, h5, p, ul, li, div, dl, dt, dd, ol {
	margin: 0px;
	padding: 0px;
	line-height: 100%;
	list-style-type: none;
}
:root {
  --header: 160px;
  scroll-padding: var(--header);
}
a {
	text-decoration: none;
	color: #333;
}
img {
	border-style: none;
	padding: 0px;
	margin: 0px;
	line-height: 100%;
}
html,
html.overflow-y-hidden {
  overflow-y: scroll;
}

.top-sp-header {
  position: fixed;
  display: none;
}
@media screen and (max-width: 768px) {
  .top-sp-header {
    position: fixed;
    display: block;
    z-index: 101;
    background: #FFF;
    width: 100%;
    height: 70px;
  }
  
  .top-sp-header div {
    width: 238px;
    padding: 15px 20px;
  }
  
  .top-sp-header div img {
    width: 100%;
  }
}

/*totop*/
#page-top {
  position: fixed;
  bottom: -38px;
  right: 5%;
  z-index: 100;
  height: 62px;

  li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 51px;
    padding-top: 5px;
    color: #fff;
    background: #0071BC;
    font-size: 1rem;
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-weight: 400;
    cursor: pointer;
    border-radius: 50%;
  }

  &::before {
    position: absolute;
    content: "";
    z-index: 1;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-image: url(../images/arrow-whi-b.png);
    background-repeat: no-repeat;
    background-size: cover;
    transition: top 0.3s ease;
  }

  &:hover::before {
    top: 7px;
  }

  &.stop {
    position: absolute;
    right: 5%;
    /* footer の top に 38px 食い込む */
    bottom: -38px;
  }
}
/*totop*/
/*mb*/
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb70 {
	margin-bottom: 70px;
}
.mb100 {
	margin-bottom: 100px;
}
/*mb*/
/*pb*/
.pb10 {
	padding-bottom: 10px;
}
.pb20 {
	padding-bottom: 20px;
}
.pb30 {
	padding-bottom: 30px;
}
.pb40 {
	padding-bottom: 40px;
}
.pb50 {
	padding-bottom: 50px;
}
.pb70 {
	padding-bottom: 70px;
}
.pb100 {
	padding-bottom: 100px;
}
/*pb*/
.bp {
  display: inline-block;
  white-space: nowrap;
}
.bp-b {
  display: inline-block;
}
/*flex*/
.f-box {
	display: flex;
	position: relative;
}
.f-box-sp {
	display: flex;
	position: relative;
}
@media screen and (max-width:768px) {
  .f-box-sp {
    display: block;
  }
}
.f-box-contents,
.f-box-contents-b {
  position: relative;
  width: 50%;
  display: block;
}
@media screen and (max-width:768px) {
  .f-box-contents {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 30px;

    br {
      display: none;
    }
  }
  .f-box-contents-b {
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }
}
.js-sa {
	justify-content: space-around;
}
.js-sb {
	justify-content: space-between;
}
/*flex*/
/*another*/
.h-img img {
	width: 100%;
	vertical-align: top;
}
.v-img img {
	height: 100%;
	vertical-align: top;
}
/*another*/
#container,#container-top {
	width: 100%;
	overflow: hidden;
  position: relative;
}
#contents {
  position: relative;
}
.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 100;
  
  &.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  &.hide {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.menu-logo {
  max-width: 322px;

  a {
    display: block;
    text-decoration: none;

    &:hover {
      opacity: 0.8;
    }
  }

  img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.top-menu-r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  min-width: 850px;
  flex-wrap: nowrap;
  position: relative;

  li {
    font-size: 1rem;
    white-space: nowrap;
    padding: 5px;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
    overflow: hidden;

    a {
      color: transparent;
      padding: 0 10px;
      text-shadow: 0 -1.5em 0 #333, 0 0 0 #333;
      transition: text-shadow 0.3s;
      display: inline-block;
    }

    &.current a,
    &:hover > a {
      text-shadow: 0 0 0 #0071bc, 0 1.5em 0 #0071bc;
    }

    &.has-sub {
      position: relative;
      overflow: hidden;

      &:hover {
        overflow: visible;

        .nav-inner {
          opacity: 1;
          max-height: 520px;
        }

         &::before {
          position: absolute;
          content: "";
          z-index: 101;
          top: 25px;
          left: 50%;
          transform: translateX(-50%);
          width: 0;
          height: 0;
          border-style: solid;
          border-right: 10px solid transparent;
          border-left: 10px solid transparent;
          border-bottom: 20px solid #0071bc;
          border-top: 0;
          transition: all 0.4s ease;
        }

        &::after {
          position: absolute;
          content: "";
          z-index: 100;
          top: 25px;
          left: -30%;
          width: 162%;
          height: 20px;
          background: #FFF;
        }
      }
    }

    &.menu-rec {
      overflow: visible;

      a {
        color: #0071bc !important;
        border: solid 1px #0071bc;
        padding: 10px 30px !important;
        border-radius: 5px;
        position: relative;
        transition: none !important;
        text-shadow: none !important;
        z-index: 1;

        &::after {
          content: "";
          position: absolute;
          z-index: -1;
          bottom: 0;
          left: 0;
          width: 0;
          height: 100%;
          background: #0071bc;
          transition: all 0.3s;
          opacity: 0;
          border-radius: 5px;
        }
      }

      &.current a::after,
      a:hover::after {
        width: 100%;
        opacity: 1;
      }

      &.current a,
      a:hover {
        color: #FFF !important;
        text-shadow: none !important;
      }
    }
  }
}
@media screen and (max-width:1285px) {
  .top-menu-r {
    display: none;
  }
}

/* ▼ サブメニュー */
.nav-inner {
  position: absolute;
  top: 130%;
  left: -30%;
  padding: 20px 0 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 99;
  border: solid 1px #FFF;
  background: #0071BC;

  &::before {
    position: absolute;
    content: "";
    z-index: 101;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 20px solid #0071bc;
    border-top: 0;
    transition: all 0.4s ease;
  }
  
  &::after {
    position: absolute;
    content: "";
    z-index: 100;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 10px;
    height: 10px;
    background: #0071bc;
    transition: all 0.4s ease;
  }

  li {
    font-size: 1rem;
    color: transparent;
    background: #0071bc;

    a {
      color: #FFF;
      padding: 10px 30px;
      display: block;
      white-space: nowrap;
      text-shadow: none;
      transition: text-shadow 0.3s;

      &:hover {
        color: #29abe2;
      }
    }
  }
}
#main-visual {
  width: 100%;
  height: 110vh;
  position: relative;
  display: flex;
  z-index: 3;
  overflow: hidden;
}
@media screen and (max-width:1135px) {
  #main-visual {
    height: 75vw;
    display: flex;
  }
}
@media screen and (max-width:768px) {
  #main-visual {
    height: 750px;
    display: block;
  }
}
.main-l {
  width: 40%;
  padding: 4% 0 5% 5vw;
  display: block;
}
@media screen and (max-width:768px) {
  .main-l {
    display: none;
  }
}
.main-r {
  width: 60%;
  margin-top: 25vw;
}
@media screen and (max-width:1135px) {
  .main-r {
    margin-top: 30vh;
  }
}
@media screen and (max-width:768px) {
  .main-r {
    width: 100%;
    margin-top: 38vh;
  }
}
.main-r-inner {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width:768px) {
  .main-r-inner {
    width: auto;
    margin-left: 30px;
    margin-right: 30px;
  }
}
.main-img-txt {
  width: 60%;
  margin-right: auto;

  img {
    width: 100%;
    height: auto;
  }
}
.main-txt-top {
  width: 70%;
  margin-right: auto;

  img {
    width: 100%;
  }
}
.main-txt-down {
  width: 90%;
  margin-right: auto;

  img {
    width: 100%;;
  }
}
@media screen and (max-width:768px) {
  .main-txt-top {
    width: 70%;
  }
  .main-txt-down {
    width: 100%;
  }
}
.visual-logo {
  max-width: 420px;
  margin-bottom: 10%;

  img {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .visual-logo {
    width: ;
  }
}
.visual-menu-inner {
  position: relative;
  width: 50%;
  display: block;

  li {
    font-size: 1.14rem;
    font-family: "Noto Sans JP", sans-serif;
    margin-bottom: 3.5vw;
    position: relative;
    padding-bottom: 10px;
    white-space: nowrap;

    a {
      position: relative;
      display: inline-block;

      &::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #0071bc;
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform 0.25s ease-out;
      }

      &:hover {
        color: #0071bc;

        &::after {
          transform: scaleX(1);
        }

        &::before {
          position: absolute;
          content: "";
          background-image: url(../images/arrow-bl.png);
          background-repeat: no-repeat;
          background-size: cover;
          width: 7px;
          height: 8px;
          left: -10px;
          top: 40%;
        }
      }
    }
  }
}
@media screen and (max-width:768px) {
  .visual-menu-inner {
    display: none;
  }
}

/* 🔹 会社概要（親 a のみ幅拡張 & 下線） */
.vis-sub {
  position: relative;

  > a {
    display: block;
    width: 90%;

    &::after {
      width: calc(100% + 20px);
    }
  }

  &:hover > a {
    color: #0071bc;
  }

  /* 🔹 vis-sub に hover している間は会社概要リンクの下線を維持 */
  &:hover > a::after {
    transform: scaleX(1);
  }

  &:hover > a::before {
    position: absolute;
          content: "";
          background-image: url(../images/arrow-bl.png);
          background-repeat: no-repeat;
          background-size: cover;
          width: 7px;
          height: 8px;
          left: -10px;
          top: 40%;
  }

  /* 🔹 サブメニュー */
  .vis-dub {
    position: absolute;
    top: -6vw;
    left: 100%; /* 初期は左に隠す */
    border-left: solid 0.025em #0071bc;
    padding-left: 30px;
    opacity: 0;
    transition: all 0.3s ease;

    li {
      margin-bottom: 0 !important;
      padding: 15px 0 !important;

      a {
        display: inline-block !important;

        &::after {
          width: 100% !important;
        }
      }
    }
  }

  /* 🔹 hover時に左からスライドイン */
  &:hover .vis-dub {
    left: 90%;   /* 会社概要の右端までスライド */
    opacity: 1;
  }
}
.top-rec {
	width: 320px;
  border-radius: 20px;
  display: block;

	li {
		position: relative;
		font-size: 1.312rem;
		transition-duration: .2s;
		
		a {
			display: flex;
			align-items: center;
			color: #0071bc;
			padding-left: 20px;
			height: 140px;
			background-image: url(../images/rec-back.svg);
      background-repeat: no-repeat;
      background-size: contain;
			position: relative;
		}

		&:hover {
			transform:scale(1.1,1.1);
		}
  }
}
@media screen and (max-width:768px) {
  .top-rec {
    display: none;
  }
}
.rec-rotating {
	position: relative;
	z-index: 2;
	display: inline-block;
	margin-right: 30px;
	width: 88px;
	animation: spin 7s linear infinite;

	img {
		width: 100%;
	}
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
        transform: rotate(360deg);
	}
}
.arrow-a {
	display: inline-block;
	width: 32px;
	height: 32px;
	background: #0071bc;
	border-radius: 50%;
	margin-left: 25px;
	position: relative;
	z-index: 2;

	&::before {
		position: absolute;
		content: "";
		width: 8px;
		height: 8px;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		-webkit-transform: translateY(-50%) translateX(-50%);

		background-image: url(../images/arrow-whi.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
}

.rec-txt {
	position: relative;
	z-index: 2;
}
#first-contents {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #0071bc;
  padding-top: 7vw;
  padding-bottom: 7vw;
}
@media screen and (max-width:768px) {
  #first-contents {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.contents-inner,.contents-inner-b {
  position: relative;
  z-index: 2;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width:768px) {
  .contents-inner-b {
    padding: 0;
    z-index: 2;
  }
}

.first-inner {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width:768px) {
  .first-inner {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.first-txt-top {
  width: 60%;
  margin-right: auto;

  img {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .first-txt-top {
    width: 100%;
  }
}
.first-txt-down {
  width: 100%;
  margin-right: auto;

  img {
    width: 100%;;
  }
}
.first-txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 230%;
  color: #FFF;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5vw;
}
@media screen and (max-width:768px) {
  .first-txt {
    font-size: 0.875rem;
    margin-bottom: 40px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
.first-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2.4375rem;
  color: #FFF;
  line-height: 150%;
  text-align: center;
  margin-bottom: 4vw;
}
@media screen and (max-width:768px) {
  .first-title {
    font-size: 1.3125rem;
    margin-bottom: 30px;
  }
}
/* 共通 */
.first-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  transition: transform 0.1s linear;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .first-flex {
    overflow-x: auto;
    overflow-y: visible;
    padding-left: 30px;
    margin-bottom: 0px;
  }
}
.first-flex-inner {
  cursor: pointer;
  padding: 20px 0;
  border-radius: 30px;
  border: solid 3px #FFF;
  box-sizing: border-box;
  background: linear-gradient(90deg, rgba(0, 113, 188, 0.8) 0%, rgba(0, 113, 188, 0.8) 35%, rgba(41, 171, 226, 0.8) 100%);
  transition: transform 0.3s ease;
}

/* ホバーはPC向け */
@media (hover: hover) {
  .first-flex-inner:hover {
    transform: translateY(-20px);
  }
}

/* wrapperで高さ固定 */
.first-flex-wrapper {
  position: relative;
}

/* スマホ用 */
@media screen and (max-width: 768px) {
  .first-flex-inner {
    flex: 0 0 90%;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

/* PC用 */
@media screen and (min-width: 768px) {
  .first-flex {
    overflow: visible;
  }

  .first-flex-inner {
    width: 31%;
    margin-right: 0;
  }
}

.epi-mark {
  position: relative;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.epi-rotating {
	position: relative;
	z-index: 2;
	display: inline-block;
	margin-right: 30px;
	width: 100%;
	animation: spin 7s linear infinite;

	img {
		width: 100%;
	}
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
    transform: rotate(360deg);
	}
}
.epi-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  font-size: 3.25rem;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;						
  color: #FFF;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .epi-txt {
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-size: 2.75rem;
    padding-bottom: 0;
  }
}
.epi-photo {
  display: block;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 40px;
  
  img {
    width: 100%;
    height: auto;
  }
}
.epi-title {
  position: relative;
  padding-left: 65px;
  font-size: 1.175rem;
  line-height: 150%;
  color: #FFF;
  margin-bottom: 20px;

  &::before {
    display: inline-block;
    width: 32px;
    height: 32px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
    background: #FFF;
    border-radius: 50%;
    position: absolute;
    content: "";
    background-image: url(../images/arrow-bl.png);
		background-repeat: no-repeat;
    background-position: 50% 50%;
		background-size: 8px;
    z-index: 0;
  }
}
@media screen and (max-width: 768px) {
  .epi-title {
    font-size: 1rem;
  }
}

.top-link-whi {
  width: 330px;
  position: relative;
  font-size: 1.25rem;
  margin-left: auto;
  margin-right: auto;

  a {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0071bc;
    text-align: center;
    background: #FFF;
    border-radius: 10px;

    &:hover {
      background: #0071bc;
      color: #FFF;
      border: solid 1px #FFF;
      box-sizing: border-box;
    }
  }

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: #0071bc;
    border-radius: 50%;
    background-image: url("../images/arrow-whi.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
    z-index: 0;
  }
  
  &:hover::before {
    background: #fff;
    background-image: url("../images/arrow-bl.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
  }
}
@media screen and (max-width:768px) {
  .top-link-whi {
    width: 266px;
    font-size: 1rem;

    a {
      height: 48px;
    }

    &::before {
      right: 10px;
      width: 26px;
      height: 26px;
    }
  }
}
#second-contents {
  background: #FFF;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 7vw 0;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  #second-contents {
    padding: 50px 0;
  }
}
.sec-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4vw;
  
  h2 {
    font-size: 2.375rem;
    color: #0071bc;
    width: 43%;
    font-weight: 400;
    display: flex;
    align-items: center;
  }

  p {
    font-size: 1rem;
    line-height: 180%;
    width: 57%;
  }
}
@media screen and (max-width:768px) {
  .sec-title {
    display: block;

    h2 {
      width: 100%;
      font-size: 1.625rem;
      margin-bottom: 20px;
    }

    p {
      width: 100%;
      font-size: 0.875rem;
    }
  }
}
.city-map {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 4vw;
}
.city-map-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: hidden;

  img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width:640px) {
  .city-map {
    margin-bottom: 30px;
  }
}
.top-kujira {
  position: absolute;
  z-index: 0;
  bottom: 12%;
  right: 0;
  transform-origin: center center;
  width: 70%;

  img {
    width: 100%;
    animation: kujira-float 10s ease-in-out infinite;
  }
}
@media screen and (max-width:640px) {
  .top-kujira {
    width: 80%;
    top: 22%;
  }
}
@keyframes kujira-float {
  0%   { transform: rotate(-3deg) translateY(0); }
  25%  { transform: rotate(0deg) translateY(-10px); }
  50%  { transform: rotate(3deg) translateY(0); }
  75%  { transform: rotate(0deg) translateY(10px); }
  100% { transform: rotate(-3deg) translateY(0); }
}
.top-droon {
  position: absolute;
  z-index: 1;
  top: 55%;
  left: 26%;
  width: 68px;

  img {
    width: 100%;
    animation: droon-float 2s ease-in-out infinite;
  }
}
@media screen and (max-width:640px) {
  .top-droon {
    top: 25%;
    left: 21%;
  }
}
@keyframes droon-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}
@media screen and (max-width:640px) {
  .top-droon {
    width: 28px;
  }
}
.top-bard-a {
  position: absolute;
  z-index: 1;
  width: 38px;
  top: 8%;
  left: 17%;
}
.top-bard-b {
  position: absolute;
  z-index: 1;
  width: 48px;
  top: 2%;
  left: 28%;
}
@media screen and (max-width:640px) {
  .top-bard-a {
    width: 15px;
    top: 10px;
  }
  .top-bard-b {
    width: 20px;
    top: 5px;
  }
}
.top-bard-a img,.top-bard-b img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bird1 {
  animation: bird1-flap 0.6s infinite;
}
.bird2 {
  animation: bird2-flap 0.6s infinite;
}

@keyframes bird1-flap {
  0%, 50% { opacity: 1; }
  51%,100% { opacity: 0; }
}
@keyframes bird2-flap {
  0%, 50% { opacity: 0; }
  51%,100% { opacity: 1; }
}

.top-link-bl {
  width: 330px;
  position: relative;
  font-size: 1.25rem;
  margin-left: auto;
  margin-right: auto;

  a {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
    background: #0071bc;
    border-radius: 10px;

    &:hover {
      background: #FFF;
      color: #0071bc;
      border: solid 1px #0071bc;
      box-sizing: border-box;
    }
  }
  &::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: #FFF;
    border-radius: 50%;
    background-image: url("../images/arrow-bl.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
    z-index: 0;
  }
  
  &:hover::before {
    background: #0071bc;
    background-image: url("../images/arrow-whi.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
  }
}
@media screen and (max-width:768px) {
  .top-link-bl {
    width: 266px;
    font-size: 1rem;

    a {
      height: 48px;
    }

    &::before {
      right: 10px;
      width: 26px;
      height: 26px;
    }
  }
}
#third-contents {
  width: 100%;
  background: #0071bc;
  padding: 7vw 0;
  position: relative;
  z-index: 2;

  h2 {
    font-size: 2.375rem;
    color: #FFF;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width:768px) {
  #third-contents {
    padding: 50px 0;

    h2 {
      font-size: 1.625rem;
    }
  }
}
.thi-flex {
  display: flex;
  justify-content: space-between;
  border-top: solid 0.025em #3fa9f5;
  width: 100%;
  position: relative;
}
@media screen and (max-width:768px) {
  .thi-flex {
    display: block;
    border-top: none;
    border-top: solid 0.025em #3fa9f5;
  }
}
.thi-flex-bar::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1px;
  background: #3fa9f5;
  width: 50%;
}
.thi-flex-inner {
  cursor: pointer;
  position: relative;
  width: 50%;
  margin: 20px 0;
  padding: 10px 0;
  transition: transform 0.3s ease;

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 4%;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/arrow-bl.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 8px;
    z-index: 0;
  }
  
  &:hover {
     transform: translateY(-5px);
  }

  &:hover::before {
    background: #29abe2;
    background-image: url(../images/arrow-whi.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
  }

  a {
    display: flex;
    justify-content: space-between;
  }

  a:hover .thi-r img {
    transform: scale(1.1);
    transition-duration: 0.5s;
  }

  &.r-bar {
    border-right: solid 0.025em #3fa9f5;
  }
}
@media screen and (max-width:768px) {
  .thi-flex-inner {
    width: 100%;
    padding: 20px 0;
    margin: 0;

    &::before {
      right: 10px;
      width: 26px;
      height: 26px;
    }
    &.r-bar {
      border-right: none;
      border-bottom: solid 0.025em #3fa9f5;
    }
  }
}
.thi-l {
  padding-left: 10%;
  width: 35%;
  padding-top: 20px;

  h3 {
    font-size: 1.75rem;
    color: #FFF;
    font-weight: 400;
  }
}
@media screen and (max-width:768px) {
  .thi-l {
    padding-left: 20px;
    padding-top: 0;

    h3 {
      font-size: 1.325rem;
    }
  }
}
.thi-r {
  margin-right: 15%;
  position: relative;
  width: 40%;
  overflow: hidden;
  border-radius: 20px;

  img {
    width: 100%;
    transition-duration: 0.5s;
  }
}
@media screen and (max-width:768px) {
  .thi-r {
    height: 122px;
    margin-right: 15%;
  }
}
.overview {
  width: 100px;
  padding-top: 30px;
  background-image: url(../images/top-overview.png);
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 3.25rem;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  color: #FFF;
  text-align: center;
  margin-bottom: 4vw;
}
@media screen and (max-width:768px) {
  .overview {
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    width: 65px;
    padding-top: 20px;
    font-size: 2.25rem;
    margin-bottom: 30px;
  }
}
#forth-contents {
  background: #FFF;
  width: 100%;
  padding: 7vw 0;
  position: relative;
  z-index: 2;

  h2 {
    font-size: 2.375rem;
    color: #0071bc;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width:768px) {
  #forth-contents {
    padding: 40px 0;

    h2 {
      font-size: 1.625rem;
    }
  }
}
.for-flex {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width:768px) {
  .for-flex {
    display: block;
  }
}
.top-news-r {
  width: 75%;
  border-top: solid 0.025em #3fa9f5;
}
.news-cont {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 0 20px;
  height: 115px;
  border-bottom: solid 0.025em #3fa9f5;

  a {
    display: flex;
    align-items: center;
    padding-right: 30%;
  }

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: #0071bc;
    border-radius: 50%;
    background-image: url("../images/arrow-whi.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
    z-index: 0;
  }
  
  &:hover .news-title {
    color: #0071BC;
    text-decoration: underline;
  }
}
@media screen and (max-width:950px) {
  .top-news-r {
    width: 100%;
    margin-bottom: 30px;
  }
  .news-cont {
    display: block;
    align-items: normal;
    height: auto;
    padding: 20px;

    a {
      display: block;
      padding-right: 10%;
    }

    &::before {
      right: 10px;
      width: 26px;
      height: 26px;
    }
  }
}
.news-data {
  font-size: 1rem;
  line-height: 150%;
  max-width: 100px;
}
@media screen and (max-width:768px) {
  .news-data {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
}
.news-title {
  font-size: 1rem;
  line-height: 150%;
  padding: 0 30px;
  max-width: 600px;
  font-weight: 400;
}
@media screen and (max-width:950px) {
  .news-title {
    font-size: 0.875rem;
    padding: 0;
  }
}
.news-cat {
  position: absolute;
  top: 50%;
  right: 62px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-size: 1rem;
  line-height: 150%;
  background: #0071BC;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 30px;
  color: #FFF;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}
@media screen and (max-width:950px) {
  .news-cat {
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    top: 30px;
    height: 20px;
    font-size: 0.75rem;
    right: auto;
    left: 120px;
  }
}
.top-news-l {
  width: 20%;
  position: relative;

  li {
    font-size: 1.25rem;
    cursor: pointer;
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-weight: 400;
    width: 100%;
    background: #0071BC;
    border-radius: 30px;
    margin-bottom: 10px;

    a {
      display: flex;
      align-items: center;
      height: 40px;
      color: #FFF;
      padding: 0 20px;

      &:hover {
        background: #FFF;
        color: #0071bc;
        border: solid 2px #0071bc;
        box-sizing: border-box;
        border-radius: 30px;
      }
    }

    &.carrent {
      background: #FFF;
      color: #0071BC;
      border: solid 2px;
      box-sizing: border-box;
      height: 40px;
      padding: 0 20px;
      display: flex;
      align-items: center;
    }
  }
}
@media screen and (max-width:950px) {
  .top-news-l {
    margin-right: 5%;

    li {
      font-size: 1rem;
    }
  }
}
@media screen and (max-width:768px) {
  .top-news-l {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 30px;
    position: sticky;

    li {
      font-size: 0.825rem;
      width: auto;
      text-align: center;
      white-space: wrap;
      margin-right: 10px;

      a {
        height: 25px;
      }

      &.carrent {
        height: 25px;
      }
    }
  }
}

/*フッター*/
footer {
  position: relative;
  z-index: 2;
  background: #FFF;
}
.footer-spac {
  width: 100%;
  background: #deedf6;
  padding: 3vw 0;
}
.footer-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}
.footer-flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer-flex {
    display: block;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer-l {
  width: 40%;
  position: relative;
  border-right: solid 0.025em #3fa9f5;
  padding-right: 5%;
  margin-right: 5%;
}
.footer-c {
  width: 30%;
  position: relative;
  border-right: solid 0.025em #3fa9f5;
  padding-right: 5%;
}
.footer-r {
  width: 25%;
  position: relative;
  padding-left: 5%;
}

@media screen and (max-width: 768px) {
  .footer-l {
    width: auto;
    padding: 20px 0;
    border-right: none;
    border-bottom: solid 0.025em #3fa9f5;
    text-align: center;
    margin-right: 0;
  }
  .footer-c {
    width: auto;
    padding: 20px 0;
    border-right: none;
    border-bottom: solid 0.025em #3fa9f5;
    text-align: center;
    margin-right: 0;
  }
  .footer-r {
    width: auto;
    padding: 20px 0;
    border-right: none;
    text-align: center;
    margin-right: 0;
  }
}
.footer-title {
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  color: #0071bc;
  font-size: 1.4375rem;
  margin-bottom: 2vw;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer-title {
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    justify-content: center;
    font-size: 1.1725rem;
  }
}
.f-icon {
  margin-right: 20px;

  img {
    object-fit: contain;
    height: 29px;
  }
}
@media screen and (max-width: 768px) {
  .f-icon {
    img {
      height: 24px;
    }
  }
}
.f-contact {
  position: relative;
  cursor: pointer;
  max-width: 407px;
  font-size: 1.375rem;
  margin-bottom: 20px;

  a {
    background: #0071BC;
    color: #FFF;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 10px;

    &:hover {
      background: #FFF;
      color: #0071bc;
      border: solid 2px #0071bc;
      box-sizing: border-box;
      border-radius: 10px;
    }
  }

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: #FFF;
    border-radius: 50%;
    background-image: url("../images/arrow-bl.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
    z-index: 0;
  }
  
  &:hover::before {
    background: #0071BC;
    background-image: url("../images/arrow-whi.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
  }
}
.f-txt-a {
  text-align: center;
  font-size: 0.875rem;
  color: #0071BC;
  font-weight: 600;
  line-height: 120%;
}
.f-txt-b {
  text-align: center;
  font-size: 0.875rem;
  color: #0071BC;
  font-weight: 600;
}
@media screen and (max-width: 1260px) {
  .f-contact {
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    
    a {
      height: 52px;
    }

    &::before {
      right: 10px;
      width: 26px;
      height: 26px;
    }
  }
  .f-txt-a {
    font-size: 0.675rem;
  }
}
.f-tel {
  margin-bottom: 10px;
  
  p {
    display: block;
    font-size: 2.1875rem;
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-weight: 400;
    color: #0071bc;

    a {
      color: #0071BC;
    }
  }
  
  span {
    font-size: 1.25rem;
    margin-right: 5px;
  }
}
@media screen and (max-width: 1260px) {
  .f-tel {
    p {
      font-family: "Work Sans", sans-serif;
      font-variant-numeric: tabular-nums;
      font-size: 1.8725rem;
    }
  }
}
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.f-rec {
  position: relative;
  cursor: pointer;
  max-width: 407px;
  font-size: 1.375rem;
  margin-bottom: 20px;

  a {
    background: #0071BC;
    color: #FFF;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 10px;

    &:hover {
      background: #FFF;
      color: #0071bc;
      border: solid 2px #0071bc;
      box-sizing: border-box;
      border-radius: 10px;
    }
  }

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: #FFF;
    border-radius: 50%;
     background-image: url("../images/arrow-bl.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
    z-index: 0;
  }
  
  &:hover::before {
    background: #0071BC;
    background-image: url("../images/arrow-whi.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
  }
}
@media screen and (max-width: 1260px) {
  .f-rec {
    max-width: 200px;
    margin: 0 auto;
    font-size: 1rem;
    
    a {
      height: 53px;
    }

    &::before {
      right: 10px;
      width: 26px;
      height: 26px;
    }
  }
}
.footer-b-l {
  width: 45%;
  border-right: solid 0.025em #3fa9f5;
  margin: 4vw 0;
  padding-right: 30px;
}
.footer-logo {
  max-width: 360px;
  margin-bottom: 10px;

  img {
    width: 100%;
  }
}
.f-txt-c {
  font-size: 1rem;
  line-height: 170%;
  margin-bottom: 15px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .footer-b-l {
    width: 100%;
    border-right: none;
    margin: 30px 0 0;
    padding-right: 0px;
  }
  .footer-logo {
    max-width: 310px;
  }
  .f-txt-c {
    font-size: 0.875rem;
  }
}
.digital-panf {
  cursor: pointer;
  font-size: 0.75rem;
  width: 145px;
  position: relative;
  margin-bottom: 62px;

  a {
    background: #0071BC;
    color: #FFF;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding-left: 15px;
    
    &:hover {
      background: #FFF;
      border-radius: 20px;
      border: solid 1px #0071bc;
      box-sizing: border-box;
      color: #0071bc;
    }

    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 5px;
      width: 22px;
      height: 22px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      background: #FFF;
      border-radius: 50%;
      background-image: url("../images/arrow-bl.png");
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: 6px;
      z-index: 0;
    }
    
    &:hover::before {
      background: #0071BC;
      background-image: url("../images/arrow-whi.png");
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: 6px;
    }
  }
}
.copy {
  position: relative;
  font-size: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .copy {
    position: absolute;
    bottom: 20px;
    font-size: 0.6725rem;
  }
}
.footer-b-r {
  width: 50%;
  margin: 4vw 0 4vw 5%;
}
@media screen and (max-width: 768px) {
  .footer-b-r {
    width: auto;
    margin: 0;
  }
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
  margin-bottom: 55px;

  li {
    font-size: 1rem;
    margin-right: 8%;
    display: inline-flex;
    margin-bottom: 35px;
    white-space: no-wrap;

    a:hover {
      color: #0071BC;
    }
    &:nth-child(4n) {
      margin-right: 0;
    }
  }
}
@media screen and (max-width: 768px) {
  .footer-menu {
    display: none;
  }
}
  .fm-icon {
    position: relative;

    &::after {
      position: absolute;
      content: "";
      width: 13px;
      height: 13px;
      background-image: url(../images/link-b.png);
      background-repeat: no-repeat;
      background-size: cover;
      right: -18px;
    }

    &:hover::after {
      background-image: url(../images/link-hover.png);
    }
  }
  .fm-inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;

    ul {
      display: inline-flex;
      flex-wrap: wrap;
      margin-left: 10px;

      li {
        position: relative;
        white-space: nowrap;
        margin-left: 35px!important;
        margin-right: 0;
        margin-bottom: 0;

        &::before {
          position: absolute;
          content: "";
          left: -10px;
          width: 8px;
          height: 8px;
          background-image: url(../images/arrow-bra.png);
          background-repeat: no-repeat;
          background-size: cover;
          top: 50%;
          transform: translateY(-50%);
          -webkit-transform: translateY(-50%);
        }
        &:hover::before {
          background-image: url(../images/arrow-bl.png);
          background-repeat: no-repeat;
          background-position: 50% 50%;
          background-size: 8px;
        }
      }
    }
  }
@media screen and (max-width: 1260px) {
  .fm-inner {
    ul {
      margin-left: 0;
      margin-top: 10px;

      li {
        margin-left: 15px!important;
        margin-right: 20px!important;
        margin-bottom: 10px;
      }

    }
  }
}
.f-banner {
  width: 100%;
  display: flex;
}
.f-banner-inner {
  height: 67px;
  margin-right: 5%;

  img {
    height: 100%;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .f-banner {
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
  }
  .f-banner-inner {
    margin-right: 0;
  }
}
#back-anime {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  mix-blend-mode: multiply;

  > div {
    position: absolute;
    width: 72%;
    left: 28%;
    top: 0;

    img {
      width: 100%;
      height: auto;
      display: block;
    }

    &.anime-p {
      left: 56%!important;
    }

    /* 拡大余韻の設定 */
    transform: scale(1);
    transition: transform 0.8s ease-out;
    will-change: transform, opacity;
  }

  .anime-a { z-index: 17; }
  .anime-f { z-index: 11; }
  .anime-i { z-index: 8; }
  .anime-o { z-index: 1; }
  .anime-p { 
    z-index: 12;
    width: 215px;
  }
}
/* 初期は停止 */
.anime-a, .anime-f, .anime-i, .anime-o {
  animation-play-state: paused;
}

/* 初期化後に動かす */
.anime-ready .anime-a,
.anime-ready .anime-f,
.anime-ready .anime-i,
.anime-ready .anime-o {
  animation-play-state: running;
}

.anime-a,
.anime-f,
.anime-i{
  transform: translateY(0);
  will-change: transform;
}
@media screen and (max-width:768px) {
  #back-anime {
    top: 70px;
    left: -30%;
    width: 150%;
    height: 100vh;
    
    > div {
      position: absolute;
      z-index: 1;
      width: 100%;
      height: auto;
      left: 0;

      &.anime-p {
        left: 30%!important;
      }
    }
  }
}
@media screen and (max-width:768px) {
  #back-anime .anime-p {
    width: 165px;
    bottom: 0;
    top: auto;
    animation: moveHalfCircle 1200s linear infinite;
    transform: none !important;
  }

  @keyframes moveHalfCircle {
    0%   { bottom: 0; left: 30%; }
    25%  { bottom: 50%; left: 10%; }
    50%  { bottom: 70%; left: 50%; }
    75%  { bottom: 50%; left: 10%; }
    100% { bottom: 0; left: 30%; }
  }
}
@media screen and (max-width:1175px) {
  #back-anime div.anime-a::after {
    position: absolute;
    content: "";
    z-index: 0;
    background: #FFF;
    bottom: -300px;
    width: 100%;
    height: 300px;
    display: block;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}

.map-button {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;

  div {
    position: absolute;
    cursor: pointer;
	  width: 6.8%;
    height: 8.9%;

    &::before,
    &::after {
      position: absolute;
      display: inline-block;
      z-index: -1;
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      aspect-ratio: 1 / 1;
      border: 1px solid #0071BC;
      border-radius: 50%;
      opacity: 0;
      pointer-events: none;
    }
    
    &:hover::before {
      opacity: 1;
      animation: ripple 1200ms ease-out infinite;
    }
    &:hover::after {
      opacity: 1;
      animation: ripple 1200ms ease-out 600ms infinite;
    }
  }

  //SPタップ時にJSで追加する一時要素
  .ripple-temp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #0071BC;
    border-radius: 50%;
    pointer-events: none;
    opacity: 1;
    animation: ripple 1200ms ease-out;
    z-index: -1;
  }
}

@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  8% {
    transform: scale(1);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.map-a {
  right: 18.6%;
  top: 3%;
}
.map-b {
  left: 0.59%;
  top: 47.5%;
}
.map-c {
  left: 0.745%;
  bottom: 25.3%;
}
.map-d {
  left: 0.75%;
  bottom: 7.7%;
}
.map-e {
  left: 52.15%;
  top: 4.21%;
}
.map-f {
  left: 57.6%;
  top: 15.5%;
}
.map-g {
  right: 13.6%;
  top: 15%;
}
.map-h {
  right: 0.9%;
  bottom: 56.2%;
}

@media screen and (max-width:640px) {
  .map-button {
    top: 49.5%;
    bottom: 0;
    height: 48.5%;

    div {
      width: 18%;
      height: 18%;
    }
  }
  .map-a {
    left: 2.1%;
    top: 0.2%;
  }
  .map-b {
    left: 50.3%;
    top: 0.2%;
  }
  .map-c {
    left: 2.1%;
    top: 27.1%;
  }
  .map-d {
    left: 50.3%;
    top: 27.1%;
  }
  .map-e {
    left: 2.1%;
    top: 54.1%;
  }
  .map-f {
    left: 50.3%;
    top: 54.1%;
  }
  .map-g {
    left: 2.15%;
    top: 80.4%;
  }
  .map-h {
    left: 50.3%;
    top: 80.4%;
  }
}

.map-bar {
	position: absolute;
	z-index: 1;
	width: 100%;
	top: 0;
	left: 0;
	bottom: 0;

  div {
    position: absolute;
    width: 35%;
  }

  img {
    width: 100%;
		height: auto
  }
}
.map-bar > div {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;

  &.bar-visible {
    pointer-events: auto;
    opacity: 1;
  }
}
.bar-a {
	top: 27%;
	right: 10%;
}
.bar-b {
	top: 42%;
	left: 10%;
}
.bar-c {
	top: 60%;
	left: 12%;
}
.bar-d {
	bottom: 4%;
	right: 14%;
}
.bar-e {
	top: 0%;
	left: 15%;
}
.bar-f {
	top: 24%;
	right: 18%;
}
.bar-g {
	top: 27%;
	right: 12%;
}
.bar-h {
	top: 49%;
	left: 65%;
}
.map-bar > div {
  transform: translateX(20%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* JSで付けるクラス */
.map-bar > div.bar-visible {
  transform: translateX(0);
  opacity: 1;
}

.map-bar > div.bar-visible {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width:640px) {
  .map-bar {
    div {
      width: 100%;
      top: 15%;
      bottom: auto;
      z-index: 5;
    }
  }
  .bar-a,.bar-b,.bar-c,.bar-d,.bar-e,.bar-f,.bar-g,.bar-h {
    bottom: auto;
    left: 0;
    right: 0;
  }
}

/*サブページ*/
.sub-top-menu {
  position: relative;
  left: 0;
  top: 0;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #fff;
}
.sub-header {
  height: 100px;
  width: 100%;
  position: relative;
  background: #0071BC;
  padding: 0 30px;
  margin-bottom: 23px;
}
@media screen and (max-width:768px) {
  .sub-header {
    margin-top: 70px;
    height: 60px;
    margin-bottom: 18px;
  }
}
.sub-header-inner {
  position: relative;
  height: 100px;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
  background: #FFF;
  display: flex;
  align-items: center;

  h1 {
    position: relative;
    z-index: 5;
    font-size: 1.8125rem;
    font-weight: 400;
    color: #FFF;
    margin-left: 55px;
  }
}
@media screen and (max-width:768px) {
  .sub-header-inner {
    height: 60px;

    h1 {
      font-size: 1.25rem;
      margin-left: 35px;
    }
  }
}
.r-kaku {
  position: absolute;
  left: 20px;
  right: 0;
  background: #0071BC;
  height: 100px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media screen and (max-width:768px) {
  .r-kaku {
    left: 15px;
    height: 60px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
.l-kaku {
  position: absolute;
  left: -25px;
  width: 30px;
  height: 100px;
  background: #FFF;

  span {
    display: block;
    width: 30px;
    height: 100px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #0071BC;
  }
}
@media screen and (max-width:768px) {
  .l-kaku {
    height: 60px;

    span {
      height: 60px;
      border-top-right-radius: 15px;
      border-bottom-right-radius: 15px;
    }
  }
}
.r-header-back {
  position: absolute;
  content: "";
  z-index: 2;
  right: 0;
  top: 0;
  width: 60%;
  height: 100px;
  background-image: url(../images/sub-title-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .r-header-back {
    height: 60px;
  }
}
.pan {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 55px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;

  li {
    font-size: 0.875rem;
    position: relative;
    margin-bottom: 10px;
    line-height: 130%;

    a {
      padding-right: 75px;

      &::after {
        position: absolute;
        top: 50%;
        content: "";
        right: 10px;
        width: 55px;
        height: 1px;
        background: #0071BC;
      }

      &:hover {
        color: #0071bc;
      }
    }
  }
}
@media screen and (max-width:768px) {
  .pan {
    padding-left: 60px;
    padding-right: 10px;
    margin-bottom: 50px;

    li {
      font-size: 0.8125rem;
    }
  }
}
.sub-contents-inner {
  position: relative;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}
.sub-epi-mark {
  position: relative;
  width: 100px;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .sub-epi-mark {
    width: 80px;
    margin-bottom: 0px;
  }
}
.sub-epi-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  font-size: 3.25rem;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  color: #0071BC;
  font-weight: 400;
}
@media screen and (max-width:768px) {
  .sub-epi-txt {
    font-size: 2rem;
  }
}
.sub-epi-txt-b {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  font-size: 3.25rem;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  color: #FFF;
  font-weight: 400;
}
@media screen and (max-width:768px) {
  .sub-epi-txt-b {
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-size: 2rem;
  }
}
/*コンセプト*/
.concept-title {
  font-size: 2.265rem;
  font-weight: 500;
  color: #0071BC;
  line-height: 150%;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .concept-title {
    font-size: 1.425rem;
    margin-left: 20px;
    width: 75%;
    margin-bottom: 0;
  }
}
.concept-txt {
  font-size: 1rem;
  line-height: 200%;
}
@media screen and (max-width:768px) {
  .concept-txt {
    font-size: 0.875rem;

    br {
      display: none;
    }
  }
}
.concept-title-b {
  font-size: 2.065rem;
  font-weight: 400;
  color: #FFF;
  line-height: 150%;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .concept-title-b {
    font-size: 1.425rem;
    margin-left: 20px;
    margin-bottom: 0;
  }
}
.concept-txt-b {
  font-size: 1rem;
  line-height: 200%;
  color: #FFF;
  padding-bottom: 70px;
}
@media screen and (max-width:768px) {
  .concept-txt-b {
    font-size: 0.875rem;
    padding-bottom: 50px;

    br {
      display: none;
    }
  }
}
.concept-history {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.concept-nami {
  position: absolute;
  width: 100%;
  height: 300px;
  background-image: url(../images/concept-nami.png);
  background-repeat: repeat-x;
  background-size: 50%;
  overflow: hidden;

  /* 独立スクロールさせたい場合 */
  animation: nami-scroll 20s linear infinite;
}
@media screen and (max-width:1280px) {
  .concept-nami {
    animation: nami-scroll 15s linear infinite;
  }
}
@media screen and (max-width:768px) {
  .concept-nami {
    animation: nami-scroll 10s linear infinite;
  }
}
@keyframes nami-scroll {
  from { background-position: 0 0; }
  to { background-position: -100% 0; }
}
.concept-list-outer {
  overflow: hidden;
  width: 100%;
  margin-top: 20vw;
  padding-left: 4vw;
  position: relative;
}
.concept-list-outer::before {
  position: absolute;
  content: "";
  left: 2vw;
  right: 0;
  height: 1px;
  background: #29abe2;
}
.concept-list {
   display: flex;
   margin-bottom: 50px;
   transition: transform 1.5s ease;
  }
.concept-list-inner {
  width: 465px;
  padding: 40px 30px;
  margin-right: 20px;
  display: flex;
  border-left: solid 0.025em #29abe2;
  flex-shrink: 0;
}
@media screen and (max-width:768px) {
  .concept-list-inner {
    width: 325px!important;
    padding: 30px 20px;
  }
}
.con-his-l {
  width: 30%;
}
.concept-year {
  font-size: 2.5rem;
  color: #0071BC;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  margin-bottom: 0;
  
  span {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.875rem;
    color: #333;
  }
}
@media screen and (max-width:768px) {
  .concept-year {
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-size: 1.875rem;

    span {
      font-size: 0.8125rem;
    }
  }
}
.con-his-r {
  width: 70%;
}
.con-his-r h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 150%;
}
@media screen and (max-width:768px) {
  .con-r h3 {
    font-size: 0.925rem;
  }
}
.con-his-r p {
  font-size: 0.8125rem;
  line-height: 170%;
}
.concept-year-list {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}
@media screen and (max-width:768px) {
  .concept-year-list {
    width: 280px!important;
    margin-left: auto;
    margin-right: auto;
  }
}
.concept-year-list li {
  font-size: 1.25rem;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  color: #29abe2;
  opacity: 0.6;
  margin: 0 15px;
  cursor: pointer;
}
@media screen and (max-width:768px) {
  .concept-year-list li {
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-size: 1rem;
    margin: 0 7px;
  }
}
.concept-year-list li.current {
  color: #0071BC;
  opacity: 1;
}
#concept-second {
  width: 100%;
  background: #0071BC;
  padding: 70px 0;
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
.concept-second-l {
  width: 35%;
  position: relative;
}
@media screen and (max-width:768px) {
  .concept-second-l {
    width: 100%;
  }
}
.c-flex {
  display: block;
}
@media screen and (max-width:768px) {
  .c-flex {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
}
.concept-second-l-inner {
  width: 100%;
  position: relative;
}
.concept-second-r {
  width: 60%;
}
@media screen and (max-width:768px) {
  .concept-second-r {
    width: auto;
  }
}
.concept-second-r-inner {
  width: 100%;
  border-top: solid 0.025em #3fa9f5;
  padding: 0 4vw 70px;

  h4 {
    font-size: 1.5625rem;
    line-height: 150%;
    color: #FFF;
    margin-bottom: 30px;
    font-weight: 400;
  }

  p {
    font-size: 1rem;
    font-weight: 400;
    color: #FFF;
    line-height: 200%;
  }
}
@media screen and (max-width:768px) {
  .concept-second-r-inner {
    width: auto;
    padding: 0 0 50px;

    h4 {
      font-size: 1.25rem;
    }

    p {
      font-size: 0.875rem;
    }
  }
}
.concept-second-photo {
  width: 100%;

  img {
    width: 100%;
  }
}
#concept-third {
  width: 100%;
  position: relative;
  padding: 70px 0;
}
.concept-txt-center {
  font-size: 1.125rem;
  color: #0071BC;
  text-align: center;
  line-height: 200%;
}
@media screen and (max-width:768px) {
  .concept-txt-center {
    font-size: 0.875rem;
  }
}
.concept-pt {
  margin-top: 100px;
}
@media screen and (max-width:768px) {
  .concept-pt {
    margin-top: 0;
  }
}
.concept-thi-title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: #0071BC;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .concept-thi-title {
    font-size: 1.125rem;
  }
}
.concept-txt-c {
  font-size: 1rem;
  line-height: 200%;
  margin-bottom: 30px;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width:768px) {
  .concept-txt-c {
    font-size: 0.875rem;
  }
}
.concept-model {
  position: relative;
  width: 100%;
  
  &::before {
    position: absolute;
    content: "";
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 150px;
    background: #187FC4;
    background: linear-gradient(90deg,rgba(24, 127, 196, 1) 0%, rgba(44, 65, 152, 1) 95%, rgba(0, 94, 173, 1) 99%);
  }
  &::after {
    position: absolute;
    content: "";
    top: 0;
    left: 150px;
    right: 0;
    border-top: dashed 1px #0071BC;
  }
}
@media screen and (max-width:768px) {
  .concept-model {
    &::before {
      width: 57px;
    }
    &::after {
      left: 57px;
    }
  }
}
.concept-model-inner {
  position: relative;
  width: 100%;
  display: flex;

  &::before {
    position: absolute;
    z-index: 1;
    content: "";
    bottom: 0;
    left: 150px;
    right: 0;
    border-top: dashed 1px #0071BC;
  }
}
@media screen and (max-width:768px) {
  .concept-model-inner {
    &::before {
      left: 58px;
    }
  }
}
.tri-a::after {
  position: absolute;
  z-index: 1;
  content: "";
  bottom: -85px;
  left: 0;
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
  line-height: 1;
  width: 150px;
  height: 150px;
  border: 7px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
@media screen and (max-width:768px) {
  .tri-a::after {
    width: 57px;
    height: 58px;
    bottom: -35px;
  }
}
.tri-b::after {
  position: absolute;
  content: "";
  z-index: 8;
  bottom: -4rem;
  left: 0;
  background: #a7dae2;
  height: calc(tan(60deg) * 75px / 2);
  width: 150px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width:768px) {
  .tri-b::after {
    width: 57px;
    bottom: -1.5rem;
    height: calc(tan(60deg) * 29px / 2);
  }
}
.tri-bod {
  position: absolute;
  content: "";
  z-index: 0;
  bottom: -4.5rem;
  left: -7px;
  background: #FFF;
  height: calc(tan(60deg) * 82px / 2);
  width: 164px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width:768px) {
  .tri-bod {
    width: 73px;
    bottom: -1.9rem;
    height: calc(tan(60deg) * 36px / 2);
  }
}
.cm-a {
  position: relative;
  z-index: 11;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cm-b {
  position: relative;
  z-index: 11;
  background: #a7dae2;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .cm-a {
    width: 58px;
  }
  .cm-b {
    width: 58px;
  }
}
.cm-inner {
  position: relative;
  z-index: 0;
  text-align: center;
  width: 150px;

  p {
    color: #FFF;
    font-size: 2.575rem;
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-weight: 300;

    span {
      font-size: 0.65rem;
      margin-right: 5px;
    }
  }

  h5 {
    font-size: 1.125rem;

    &.cm-whi {
      color: #fff;
    }

    &.cm-bl {
      color: #0071BC;
    }
  }
}
@media screen and (max-width:768px) {
  .cm-inner {
    width: 58px;
    p {
      font-family: "Work Sans", sans-serif;
      font-variant-numeric: tabular-nums;
      font-size: 1.875rem;

      span{
        margin-right: 3px;
      }
    }
    h5{
      &.cm-whi {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-size: 1rem;
        margin-left: 20px;
      }
      &.cm-bl {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-size: 1rem;
        margin-left: 20px;
      }
    }
  }
}
.mt55 {
  margin-top: 55px;
}
.mt105 {
  margin-top: 105px;
}
.mt25 {
  margin-top: 25px;
}
@media screen and (max-width:768px) {
  .mt55 {
    margin-top: 0;
  }
  .mt105 {
    margin-top: 50%;
  }
  .mt25 {
    margin-top: 0;
  }
}
.cm-txt {
  width: 80%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 200%;
  margin-left: 5vw;
  padding: 30px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width:768px) {
  .cm-txt {
    font-size: 0.875rem;
  }
}
.half-a {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 3px;
  bottom: -75px;
  content: "";
  width: 150px;
  background: #29abe2;
  clip-path: polygon(50% 75px, 100% 0%, 100% 100%, 50% 100%);
}
@media screen and (max-width:768px) {
  .half-a {
    width: 57px;
    clip-path: polygon(50% 30px, 100% 0%, 100% 100%, 50% 100%);
    top: 3px;
    bottom: -34px;
  }
}
.half-b {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 3px;
  bottom: 0;
  content: "";
  width: 150px;
  background: #a7dae2;
  clip-path: polygon(50% 75px, 100% 0%, 100% 100%, 50% 100%);
}
@media screen and (max-width:768px) {
  .half-b {
    width: 57px;
    clip-path: polygon(50% 30px, 100% 0%, 100% 100%, 50% 100%);
    top: 3px;
  }
}
.half-c {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 65%;
  bottom: -75px;
  content: "";
  width: 150px;
  background: #29abe2;
  clip-path: polygon(50% 75px, 100% 0%, 100% 100%, 50% 100%);

  span {
    position: absolute;
    content: "";
    bottom: 50%;
    right: 20px;
    z-index: 15;
    color: #FFF;
    font-size: 1.125rem;
  }
}
@media screen and (max-width:768px) {
  .half-c {
    width: 57px;
    top: 65%;
    bottom: -34px;
    clip-path: polygon(50% 30px, 100% 0%, 100% 100%, 50% 100%);

    span {
      font-size: 1rem;
      right: 6px;
      bottom: 45%;
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
    }
  }
}

.flow001 {
  position: absolute;
  content: "";
  top: 40px;
  right: -50px;
  width: 85px;

  img {
    width: 100%;
    height: auto;
  }
}
.flow002 {
  position: absolute;
  content: "";
  top: 30px;
  right: -60px;
  width: 85px;

  img {
    width: 100%;
    height: auto;
  }
}
.flow003 {
  position: absolute;
  content: "";
  top: 40px;
  right: -60px;
  width: 85px;

  img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width:768px) {
  .flow001 {
    width: 45px;
    right: auto;
    left: 10px;
    top: 50px;
  }
  .flow002 {
    width: 45px;
    right: auto;
    left: 10px;
    top: 50px;
  }
  .flow003 {
    width: 45px;
    right: auto;
    left: 10px;
    top: 50px;
  }
}

/*ご挨拶*/
.gree-flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0 35px;
  margin-bottom: 70px;
}
@media screen and (max-width:768px) {
  .gree-flex {
    display: block;
    padding: 0;
  }
}
.gree-r {
  width: 52%;

   h3 {
    font-size: 1.575rem;
    color: #0071BC;
    font-weight: 400;
    margin-bottom: 40px;
   }
   p {
    font-size: 0.925rem;
    line-height: 200%;
    margin-bottom: 30px;
    font-weight: 400;
   }
}
@media screen and (max-width:768px) {
  .gree-r {
    width: 100%;
    font-size: 0.925rem;

    h3 {
      font-size: 1.25rem;
      margin-bottom: 20px;
    }
  }
}
.gree-l {
  width: 40%;

  img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width:768px) {
  .gree-l {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
.sub-contents-title {
  font-size: 1.875rem;
  color: #0071BC;
  font-weight: 400;
  padding-bottom: 20px;
  margin-bottom: 50px;
  border-bottom: solid 0.025em #0071BC;
  line-height: 130%;
}
@media screen and (max-width:768px) {
  .sub-contents-title {
    font-size: 1.375rem;
    margin-bottom: 30px;
  }
}
.pre-name {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media screen and (max-width:768px) {
  .pre-name {
    margin-top: 10px;
    margin-bottom: 30px;
    max-width: 230px;
  }
}

/*経営理念*/
.philo-contents {
  width: 100%;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media screen and (max-width:768px) {
  .philo-contents {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 70px;
  }
}
.philo-l {
  width: 25%;
  padding: 20px 5% 30px 0;
  color: #deedf6;
  text-align: center;
  border-right: solid 0.025em #deedf6;
}
@media screen and (max-width:768px) {
  .philo-l {
    width: 100%;
    display: flex;
    align-items: baseline;
    border-right: none;
    border-bottom: solid 0.025em #deedf6;
  }
}
.philo-nom {
  font-size: 12.5rem;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 300;
  line-height: 90%;
}
@media screen and (max-width:920px) {
  .philo-nom {
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-size: 9.25rem;
  }
}
@media screen and (max-width:768px) {
  .philo-nom {
    font-size: 6.5625rem;
  }
}
.philo-nom-name {
  font-size: 2rem;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 300;
  margin-bottom: 30px;
}
@media screen and (max-width:920px) {
  .philo-nom-name {
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-size: 1.725rem
  }
}
@media screen and (max-width:768px) {
  .philo-nom-name {
    font-size: 0.9125rem;
  }
}
.philo-photo {
  width: 100%;
  margin-left: auto;
  margin-right: auto;

  img {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .philo-photo {
    width: 120px;
    margin-left: auto;
    margin-right: auto;
  }
}
.philo-r {
  width: 70%;
  padding: 20px 0 30px 5%;
  display: flex;
  align-items: center;

  h3 {
    font-size: 2rem;
    line-height: 170%;
    color: #0071BC;
    font-weight: 400;
    margin-bottom: 30px;
  }
  p {
    font-size: 1rem;
    line-height: 200%;
    width: 95%;
  }
}
@media screen and (max-width:920px) {
  .philo-r {
    h3{
      font-size: 1.525rem;
    }
    
  }
}
@media screen and (max-width:768px) {
  .philo-r {
    width: 100%;

    h3 {
      font-size: 1.125rem;
    }

    p {
      font-size: 0.9325rem;
    }
  }
}
.ls {
  letter-spacing: -0.0155em;
}
.quality-back {
  background: #e8edf6;
  padding: 50px 7%;
  border-radius: 20px;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}
.quality-en {
  font-size: 2.375rem;
  font-family: 'Work Sans','Noto Sans JP', sans-serif;
  color: #29abe2;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
}
.quality-txt-a {
  color: #0071bc;
  font-size: 1.375rem;
  line-height: 200%;
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
}
.quality-txt-b {
  color: #0071bc;
  font-size: 1rem;
  line-height: 200%;
  font-weight: 400;
}
.quality-r {
  display: block;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 900px) {
.quality-en {
  font-size: 1.875rem;
  margin-bottom: 40px;
  font-weight: 500;
}
.quality-txt-a {
  font-size: 1.125rem;
  line-height: 200%;
  font-weight: 400;
  margin-bottom: 20px;
}
.quality-txt-b {
  font-size: 0.925rem;
  line-height: 200%;
  font-weight: 400;
}
}
@media screen and (max-width: 600px) {
.quality-back {
  padding: 20px 10px;
}
.quality-en {
  font-size: 1.575rem;
  margin-bottom: 30px;
  font-weight: 500;
}
.quality-txt-a {
  font-size: 1rem;
  line-height: 200%;
  font-weight: 400;
  margin-bottom: 20px;
}
}
@media screen and (max-width: 768px) {
.quality-back {
  padding: 7% 10%;
  border-radius: 20px;
  width: auto;
} 
}

/*会社案内*/
.over-list {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: solid 0.025em #0071BC;
  margin-bottom: 2.5vw;

  dt {
    width: 20%;
    color: #0071BC;
    padding: 0 0 2.5vw 2.5vw;
    line-height: 170%;
  }

  dd {
    width: 80%;
    padding: 0 2.5vw 2.5vw 0;
    line-height: 170%;
  }
}
@media screen and (max-width:768px) {
  .over-list {
    font-size: 0.9125rem;

    dt {
      width: 25%;
    }
    dd {
      width: 75%;
    }
  }
}
.list-bot {
  padding-bottom: 80px;
}
@media screen and (max-width:768px) {
  .list-bot {
    padding-bottom: 50px;
  }
}
.over-flex {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .over-flex {
    display: block;
  }
}
.over-photo {
  width: 47%;

  img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width:768px) {
  .over-photo {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}
.over-soshiki-pc {
  display: block;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  
  img {
    width: 100%;
  }
}
.over-soshiki-sp {
  display: none;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  
  img {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .over-soshiki-pc {
    display: none;
  }
  .over-soshiki-sp {
    display: block;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*サイドアンカー*/
#scroll-menu {
	position: fixed;
  z-index: 98;
  right: 0;
  display: block;
  transition: top 0.3s ease;
}
#scroll-menu_open {
	width: 180px;
	background: #0071BC;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	padding: 20px 0px 1px 15px;
  
  li a {
    font-size: 0.825rem;
    line-height: 150%;
    font-weight: 400;
    position: relative;
    margin-bottom: 25px;
    display: block;
    color: #FFF;
    padding-left: 30px;

    &:hover {
      color: #a7dae2;
    }

    &::before{
      content: "";
      position: absolute;
      pointer-events: none;
      top: 50%;
      left: 0;
      width: 24px;
      height: 24px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      background: #FFF;
      border-radius: 50%;
      background-image: url("../images/arrow-bl-b.png");
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: 8px;
      z-index: 1;
    }

    &:hover::before {
      background: #3fa9f5;
      background-image: url("../images/arrow-whi-c.png");
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: 8px;
    }
  }
}
#scroll-menu_close {
  background: #0071BC;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width:768px) {
  #scroll-menu_close {
    width: 45px;
    height: 45px;
  }
}
#scroll-menu_close figure {
  position: absolute;
  z-index: 1;
	width: 38px;
	height: 30px;
}
@media screen and (max-width:768px) {
  #scroll-menu_close figure {
    width: 32px;
    height: 28px;
  }
}
#scroll-menu_close figure img {
	width: 100%;
}
/* 初期状態で非表示にする */
#scroll-menu_open,
#scroll-menu_close {
  display: none;
}

/* 表示制御クラス */
#scroll-menu_open.show {
  display: block;
  z-index: 1;
}
#scroll-menu_open.show::after {
  position: absolute;
  pointer-events: none;
  content: "";
  width: 1px;
  background: #FFF;
  left: 27px;
  top: 20px;
  bottom: 35px;
}
#scroll-menu_close.show {
  display: flex;
}

/* スムーズな2段階折りたたみアニメーション（cubic-bezierで滑らかに） */
@keyframes foldCollapse {
  0% {
    height: auto;
    width: 180px;
    transform: translateX(0);
  }
  50% {
    height: 80px;
    width: 180px;
    transform: translateX(0);
  }
  100% {
    height: 80px;
    width: 80px;
    transform: translateX(100px);
  }
}

#scroll-menu_open.fold-animate::after {
  content: none;
}

#scroll-menu_open.fold-animate {
  animation: foldCollapse 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  overflow: hidden;
  transform-origin: top right;
}

#scroll-menu_open.fold-animate li {
  opacity: 0;
  transition: opacity 0.3s ease;
}

#scroll-menu_close.delayed-show figure {
  opacity: 0;
  animation: fadeInFigure 1s ease forwards;
}

@keyframes fadeInFigure {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

#scroll-menu_open.fadein {
  animation: fadeInFromRight 0.6s ease forwards;
}
html {
  scroll-behavior: auto; /* デフォルト */
}

/*事業所一覧*/
.list-bot-b {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  .list-bot-b {
    margin-bottom: 30px;
  }
}
.nw-title {
  background: #0071BC;
  width: 130px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 30px;
  border-radius: 13px;
}
@media screen and (max-width:768px) {
  .nw-title {
    margin-bottom: 20px;
  }
}
.nw-sub {
  font-size: 16px;
  font-weight: 400;
  padding: 0 40px 20px;
  margin-bottom: 20px;
  border-bottom: solid 0.025em #0071BC;
}
@media screen and (max-width:768px) {
  .nw-sub {
    padding: 0 20px 20px;
  }
}
.nw-list {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  
  padding: 0 40px 20px;

  dt {
    width: 152px;
    line-height: 130%;
  }

  dd {
    width: auto;
    line-height: 130%;

    span.map a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #0071BC;
      height: 18px;
      width: 36px;
      font-size: 0.7725rem;
      color: #FFF;
      cursor: pointer;
      vertical-align: middle;
      margin-left: 10px;
    }
  }
}
@media screen and (max-width:768px) {
  .nw-list {
    padding: 0 20px 20px;

    dt {
      width: 25%
    }

    dd {
      width: 70%;
      
    }
  }
}

/*沿革*/
.list-bot-c {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 0 0 50px;
}
@media screen and (max-width:860px) {
  .list-bot-c {
    padding: 0 0 0 30px;
  }
}
.his-yn {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.1875rem;
  color: #29abe2;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  writing-mode: sideways-rl;
}
@media screen and (max-width:860px) {
  .his-yn {
    font-size: 1.575rem;
  }
}
.his-list {
  display: flex;
  padding: 0 10px 20px;
  border-bottom: solid 0.025em #0071BC;
  margin-bottom: 30px;
}
@media screen and (max-width:860px) {
  .his-list {
    display: block;
  }
}
.his-l {
  width: 10%;
  color: #29abe2;
  font-size: 3rem;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  line-height: 80%;
  padding: 0 5% 0 2%;

  span {
    display: block;
    font-size: 1.0625rem;
    color: #333;
    text-align: center;
  }
}
@media screen and (max-width:1030px) {
  .his-l {
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-size: 2.5rem;
    
    span {
      font-size: 0.925rem;
    }
  }
}
@media screen and (max-width:860px) {
  .his-l {
    font-size: 1.875rem;
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    padding: 0;

    span {
      font-size: 0.875rem;
      margin-left: 20px;
    }
  }
}
.his-r {
  display: flex;
  align-items: center;
  width: 92%;
  font-weight: 400;
}
.his-r-b {
  width: 92%;
  font-weight: 400;

  span {
    display: flex;
    align-items: center;
    margin-bottom: 20px;

    &:last-child {
      margin-bottom: 10px;
    }
  }
}
@media screen and (max-width:860px) {
  .his-r {
    align-items: baseline;
    display: block;
    width: 100%;
  }
  .his-r-b {
     
    span {
      display: block;
      align-items: baseline;
      margin-left: 0;
     }
  }
}
.his-in-a {
  width: 13%;
  font-size: 1.0625rem;
  line-height: 150%;
  display: flex;
  align-items: center;
}
.his-in-b {
  width: 87%;
  font-size: 0.875rem;
  line-height: 170%;
  display: flex;
  align-items: center;
}
@media screen and (max-width:860px) {
  .his-in-a {
    width: 100%;
  }
  .his-in-b {
    width: 100%;
  }
}
/*個人情報保護*/
.pol-bot {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}
.pol-txt {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 30px;
}
.pol-list-a {
  position: relative;
  font-weight: 400;
  margin-left: 20px;

  li {
    list-style: decimal;
    font-size: 1.125rem;
    color: #0071BC;
    line-height: 170%;
    margin-bottom: 20px;
  }
  p {
    margin-top: 10px;
    font-size: 0.875rem;
    color: #333;
    line-height: 170%;
  }
}
.pol-r {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 170%;
  text-align: right;
}
.list-inner-a {
  position: relative;

  li {
    margin-left: 20px;
    color: #333;
    list-style: disc;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 170%;
    margin-bottom: 3px;
  }
}
.list-inner-b {
  position: relative;

  li {
    margin-left: 20px;
    color: #333;
    list-style: decimal;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 170%;
    margin-bottom: 20px;
  }

  p {
    margin: 10px 0;
    font-size: 0.875rem;
    color: #333;
    line-height: 170%;
  }
}
.list-inner-c {
  position: relative;

  li {
    margin-left: 20px;
    color: #333;
    list-style: lower-roman;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 170%;
    margin-bottom: 5px;
  }

  p {
    margin-top: 10px;
    font-size: 0.875rem;
    color: #333;
    line-height: 170%;
  }
}
.list-inner-d {
  position: relative;

  li {
    margin-left: 20px;
    color: #333;
    list-style: none;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 170%;
    margin-bottom: 20px;
  }

  li ol li {
    margin-left: 20px;
    color: #333;
    list-style: decimal;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 170%;
    margin-bottom: 20px;
  }

  p {
    margin: 10px 0;
    font-size: 0.875rem;
    color: #333;
    line-height: 170%;
  }
}
.red {
  color: red;
}

/*ニュース＆トピックス*/
.news-footer {
  position: relative;
  padding: 15px 10px;
  margin: 50px 0;
  border-top: solid 0.025em #3fa9f5;
  border-bottom: solid 0.025em #3fa9f5;
}
@media screen and (max-width:768px) {
  .news-footer {
    border-top: none;
    margin: 20px 0 50px;
    padding: 15px 0;
  }
}
.news-footer-inner {
  display: flex;
}
@media screen and (max-width:768px) {
  .news-footer-inner {
    border-top: solid 0.025em #3fa9f5;
    padding-top: 15px;
  }
}
.news-l {
  position: relative;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 1.25rem;
  font-weight: 300;
  color: #0071BC;
  cursor: pointer;
  padding-left: 38px;
  
  a {
    color: #0071BC;

    &:hover {
      color: #29abe2;
    }
  }
  
  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: #0071bc;
    border-radius: 50%;
    background-image: url("../images/arrow-whi-l.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
    z-index: 0;
  }
  
  &:hover::before {
    background: #FFF;
    border-radius: 50%;
    border: solid 1px #0071BC;
    box-sizing: border-box;
    background-image: url("../images/arrow-bl-l.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
  }
}
.news-r {
  position: relative;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 1.25rem;
  font-weight: 300;
  color: #0071BC;
  cursor: pointer;
  padding-right: 38px;
  margin-left: auto;
  
  a {
    color: #0071BC;

    &:hover {
      color: #29abe2;
    }
  }
  &::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: #0071bc;
    border-radius: 50%;
    background-image: url("../images/arrow-whi.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
    z-index: 0;
  }
  
  &:hover::before {
    background: #FFF;
    border-radius: 50%;
    border: solid 1px #0071BC;
    box-sizing: border-box;
    background-image: url("../images/arrow-bl.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
  }
}
.page-list {
  max-width: 60%;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translatex(-50%) translateY(-50%);
  -webkit-transform: translatex(-50%) translateY(-50%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 200%;
 
  li {
    margin: 0 10px;
    color: #0071BC;

    a {
      color: #0071BC;
      opacity: 0.6;

      &:hover {
        opacity: 1;
        text-decoration: underline;
      }
    }
  }
}
@media screen and (max-width:768px) {
  .page-list {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }
}
.news-detail-title {
    padding: 20px 10px;
    position: relative;
    display: flex;
    justify-content: space-between;
    border-bottom: solid 0.025em #29abe2;
    line-height: 150%;
    margin-bottom: 20px;

    h2 {
        width: 80%;
        font-size: 1.4375rem;
        line-height: 150%;
        font-weight: 500;
    }
}
@media screen and (max-width:768px) {
  .news-detail-title {
    display: block;
    padding: 15px 10ox;

    h2 {
      width: 100%;
      font-size: 1.125rem;
      margin-bottom: 10px;
    }
  }
} 
.news-cat-d {
  font-size: 1rem;
  line-height: 150%;
  background: #0071BC;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 30px;
  color: #FFF;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}
@media screen and (max-width:768px) {
  .news-cat-d {
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-size: 0.875rem;
    height: 25px;
  }
}
.detail-contents {
    margin: 0 10px;
    position: relative;

    p {
        font-size: 1rem;
        line-height: 170%;
        margin-bottom: 30px;
        font-weight: 400;
    }

    img {
        width: auto;
        height: auto;
    }
    figcaption {
        font-size: 1rem;
        margin-top: 10px;
        line-height: 120%;
    }
    h3 {
      font-size: 1rem;
      margin-bottom: 20px;
      font-weight: 500;
    }
}
@media screen and (max-width:768px) {
  .detail-contents {

    p {
      font-size: 0.9275rem;
    }

    img {
      width: 100%;
    }
    figcaption {
        font-size: 0.925rem;
        margin-top: 10px;
        line-height: 120%;
    }
  }
}
.detail-data {
    font-size: 1.0625rem!important;
    font-weight: 400;
}
@media screen and (max-width:768px) {
  .detail-data {
    font-size: 0.9725rem;
  }
}

/*業務案内*/
.bus-bot {
  position: relative;
  border-top: solid  2px #29abe2;
}
.bus-contents {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.bus-flex {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width:768px) {
  .bus-flex {
    display: block;
  }
}
.bus-contents {
  max-width: 1080px;
  margin: 40px auto;
  position: relative;

  h2 {
    padding-left: 80px;
    font-size: 1.875rem;
    color: #29abe2;
    font-weight: 400;
    
    span {
      color: #333;
      font-size: 1.25rem;
      display: block;
      margin-top: 5px;
    }

    &.bus-icon-a::before {
      position: absolute;
      content: "";
      top: -5px;
      left: 0;
      width: 70px;
      height: 70px;
      background-image: url(../images/bus001.png);
      background-repeat: no-repeat;
      background-size: cover;
    }

    &.bus-icon-b::before {
      position: absolute;
      content: "";
      top: -5px;
      left: 0;
      width: 70px;
      height: 70px;
      background-image: url(../images/bus002.png);
      background-repeat: no-repeat;
      background-size: cover;
    }

    &.bus-icon-c::before {
      position: absolute;
      content: "";
      top: -5px;
      left: 0;
      width: 70px;
      height: 70px;
      background-image: url(../images/bus003.png);
      background-repeat: no-repeat;
      background-size: cover;
    }

    &.bus-icon-d::before {
      position: absolute;
      content: "";
      top: -5px;
      left: 0;
      width: 70px;
      height: 70px;
      background-image: url(../images/bus005.png);
      background-repeat: no-repeat;
      background-size: cover;
    }

    &.bus-icon-e::before {
      position: absolute;
      content: "";
      top: -5px;
      left: 0;
      width: 70px;
      height: 70px;
      background-image: url(../images/bus004.png);
      background-repeat: no-repeat;
      background-size: cover;
    }
  }
}
@media screen and (max-width:768px) {
  .bus-contents {
    margin:  30px auto;

    h2 {
      font-size: 1.3375rem;
      line-height: 140%;
      padding-right: 15%;

      span {
        font-size: 1rem;
        margin-top: 0;
      }

      &.bus-icon-a::before,
      &.bus-icon-b::before,
      &.bus-icon-c::before,
      &.bus-icon-d::before,
      &.bus-icon-e::before {
        width: 60px;
        height: 60px;
        top: 0;
      }
    }
  }
}
.bus-title {
  cursor: pointer;
  position: relative;

  &::after {
    position: absolute;
    content: "";
    width: 32px;
    height: 30px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background-image: url(../images/pulse.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width:768px) {
  .bus-title {
    &::after {
      width: 25px;
      height: 25px;
    }
  }
}
.bus-l {
  width: 60%;
  margin-bottom: 50px;

  p {
    margin-top: 30px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 200%;

    span {
      display: block;
      font-size: 0.875rem;
      margin-top: 10px;
    }
  }
}
@media screen and (max-width:768px) {
  .bus-l {
    width: 100%;
    margin-bottom: 0;

    p {
      font-size: 0.875rem;
    }
  }
}
.bus-r {
  width: 30%;

  img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width:768px) {
  .bus-r {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.bus-sub {
  border-top: solid 0.025em #29abe2;
  font-size: 1.5625rem;
  font-weight: 400;
  color: #0071BC;
  padding: 20px;
}
@media screen and (max-width:768px) {
  .bus-sub {
    font-size: 1.175rem;
    padding: 20px 0 20px;
  }
}
.mt30 {
  margin-top: 30px;
}
.bus-sub-c {
  background: #0071BC;
  color: #FFF;
  font-size: 1.3625rem;
  font-weight: 400;
  padding: 15px 25px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
  margin-top: 30px;

  &::after {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background-image: url(../images/pulse.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width:768px) {
  .bus-sub-c {
    font-size: 1.175rem;
    padding: 10px 20px;
    margin-top: 20px;
  }
}
.bus-list {
  display: block;
  margin: 0px 40px 20px;

  li {
    font-size: 1rem;
    font-weight: 600;
    line-height: 170%;
    margin: 0px 0px 0;
    position: relative;
    padding: 0 0 25px 30px;
    
    &::before {
      content: "";
      position: absolute;
      top: 13px;
      left: 0;
      width: 24px;
      height: 24px;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      background: #0071bc;
      border-radius: 50%;
      background-image: url("../images/arrow-whi-c.png");
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: 8px;
      z-index: 0;
    }
  }
}
@media screen and (max-width:768px) {
  .bus-list {
    margin: 0 20px;

    li {
      font-size: 0.925rem;
      padding: 2px 0 5px 27px;
    }
  }
}
.list-inner {
  margin-left: 0px;
  padding-top: 10px;
  position: relative;

  &::before {
    position: absolute;
    content: "";
    left: -4%;
    height: 1px;
    width: 104%;
    background: #0071BC;
  }
}
.list-inner li {
  margin: 10px 0 0;
  padding: 0;
  font-size: 0.925rem;
  display: flex;
  font-weight: 400;
}
.list-inner li span {
  white-space: nowrap;
  padding-right: 5px;
}
.list-inner li::before {
  background-image: none;
  background-color: transparent;
}
@media screen and (max-width:768px) {
  .list-inner {
    margin-bottom: 30px;

    &::before {
      left: -8%;
    }
  }
  .list-inner li {
    font-size: 0.875rem;
    line-height: 130%;
    padding: 0 ;
  }
}
.bus-sub-b {
  border-top: solid 0.025em #29abe2;
  font-size: 1.175rem;
  font-weight: 400;
  color: #0071BC;
  padding: 20px;
  margin-left: 20px;
  margin-right: 20px;
  cursor: pointer;
  position: relative;

  &::after {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background-image: url(../images/pulse.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width:768px) {
  .bus-sub-b {
    padding: 20px 0;
    font-size: 1rem;
  }
}
.bus-open {
  margin: 0 30px;
}
@media screen and (max-width:768px) {
  .bus-open {
    margin: 0;
  }
}
.bus-open-inner {
  padding: 0 20px 20px;
  margin-left: 20px;
  margin-right: 20px;

  h5 {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 150%;
    margin-left: 20px;
    margin-bottom: 5px;
    position: relative;

    &::before {
      position: absolute;
      content: "●";
      color: #0071BC;
      left: -20px;
    }
  }

  p {
    padding-top: 10px;
    font-size: 0.875rem;
    line-height: 170%;
    font-weight: 400;
    padding-bottom: 20px;
    border-top: solid 0.025em #29abe2;
  }
}
@media screen and (max-width:768px) {
  .bus-open-inner {
    margin: 0;
  }
}

.bus-title,
.bus-sub-b,
.bus-sub-c {
  &::after {
    background-image: url("../images/pulse.png");
    transition: transform 0.3s, background-image 0.3s;
  }

  &.active::after {
    background-image: url("../images/minus.png");
  }
}

/*お問い合わせ*/
.cont-inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 50px;
}
.tel-no {
  font-size: 2.6875rem;
  color: #0071BC;
  width: 390px;
  font-family: "Work Sans", sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  line-height: 70%;
  margin-bottom: 10px;

  a {
    color: #0071BC;
  }
}
@media screen and (max-width: 768px) {
  .tel-no {
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-size: 2.25rem;
  }
}
.tel-txt {
  font-size: 1.25rem;
  color: #333;
  margin-right: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
.tel-cap {
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  color: #333;
  padding-left: 50px;
}
.cont-txt {
  font-size: 1rem;
  font-weight: 400;
  line-height: 200%;
  margin-bottom: 30px;

  a {
    color: #0071BC;
  }
  a:hover {
    text-decoration: underline;
  }
}
.cont-level {
  max-width: 407px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  margin-bottom: 30px;

  &::after {
    position: absolute;
    content: "";
    z-index: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 20px;
    right: 20px;
    height: 1px;
    background: #29abe2;
  }

  div {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: solid 0.025em #0071BC;
    box-sizing: border-box;
    color: #0071BC;
    background: #FFF;
    font-size: 1rem;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

    &.current {
    background: #0071BC;
    color: #FFF;
  }
  }

  span {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 50%;
    font-size: 0.75rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}
.hiss {
  height: 20px;
  background: #ff0000;
  color: #FFF;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.725rem;
  border-radius: 5px;
  margin-right: 5px;
}
.form-table {
  position: relative;
  border-top: solid 0.025em #29abe2;

  dl {
    display: flex;
    padding: 30px 40px;
    border-bottom: solid 0.025em #29abe2;
  }

  dt {
    width: 25%;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 400;
    margin-right: 5%;
    line-height: 170%;

    span {
      position: absolute;
      content: "";
      right: 0;
    }
  }

  dd {
    position: relative;
    width: 70%;
    font-size: 1rem;
    line-height: 170%;
  }
}
@media screen and (max-width: 768px) {
  .form-table {
    dl {
      padding: 20px 0;
      display: block;

      span {
        position: relative;
        margin-left: 20px;
      }
    }

    dt {
      width: 100%;
      margin-bottom: 10px;
      margin-right: 0;
    }

    dd {
      width: 100%;

      span {
        margin-left: 0;
      }
    }
  }
}
.f-flex {
  display: flex;
  align-items: center;
}
.form-item-a {
  height: 30px;
  width: 95%;
  background-color: #FFF;
  border: solid 0.025em #29abe2;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  padding: 10px;
}
.form-item-b {
  height: 30px;
  width: 91%;
  background-color: #FFF;
  border: solid 0.025em #29abe2;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  padding: 10px;
  margin-left: 10px;
}
.form-item-c {
  height: 30px;
  width: 63.6%;
  background-color: #FFF;
  border: solid 0.025em #29abe2;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  padding: 10px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .form-item-c {
    margin-left: 0;
  }
}
.form-item-d {
  width: 95%;
  background-color: #FFF;
  border: solid 0.025em #29abe2;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  padding: 10px;
}
.cont-bl {
  background: #0071BC;
  color: #FFF;
  height: 30px;
  border-radius: 15px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  padding: 0 10px 0 8px;
  margin-right: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cont-bl {
    margin-left: 0!important;
    width: 200px;
    margin-bottom: 10px;
  }
}
/*Webkit*/
::-webkit-input-placeholder {color: #999}
/*Firefox 19以降*/
::-moz-placeholder  {color: #999}
/*Firefox 18以前*/
:-moz-placeholder   {color: #999}
/*Windows IE*/
:-ms-input-placeholder  {color: #999} 

input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
	background: #FFF;
  border: 0.025em solid #FFF;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
          margin: 0 5px 0 0;
}
input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0071BC;
  border: 1px solid #FFF;
  content: "";
}
input[type="radio"]:checked:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 1px;
  width: 11px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
input[type="checkbox"] {
  position: relative;
  width: 18px;
  height: 18px;
  background: #FFF;
  
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 0;
  left: 5px;
  transform: rotate(50deg);
  width: 8px;
  height: 14px;
  border-right: 1px solid #0071BC;
  border-bottom: 1px solid #0071BC;
  content: '';
}

.form-footer {
	max-width: 465px;
	display: flex;
  margin-left: auto;
  margin-right: auto;
	justify-content: space-around;
	width: 100%;
	text-align: center;
	padding: 0 0 70px;
	margin-top: 20px;
	position: relative;
}
.send {
  height: 53px;
	background: #0071BC;
	color: #FFF;
	font-size: 1.125rem;
	position: relative;
	width: 465px;
	border-radius: 10px;
	transition:.2s all;
	padding: 0 20px;
	border: none;
	transition: 0.4s;
	cursor: pointer;
 }
.send-b {
  height: 53px;
	background: #0071BC;
	color: #FFF;
	font-size: 1.125rem;
	position: relative;
	width: 465px;
	border-radius: 10px;
	transition:.2s all;
	padding: 0 20px;
	border: none;
	transition: 0.4s;
	cursor: pointer;
 }
.send[disabled] {
	 background-color: #ccc;
	 cursor: not-allowed;
	 color: #FFF;
 }
.send:hover,
.send-b:hover {
	background: #29abe2;
	color: #FFF;
}
.send[disabled]:hover {
	background: #ccc;
	color: #FFF;
}
.error-message {
	background: #ED1C24;
	color: #fff;
	border-radius: 5px;
	position: absolute;
	bottom: -25px;
	font-size: 0.84em;
	padding: 0 10px;
	height: 20px;
	line-height: 20px;
	display: none;
}
.error-message.-show {
  display: block;
}
.pp {
	padding: 20px;
  height: 252px;
  overflow: auto;
	background-color: #FFF;
	border: solid 1px #29abe2;
	border-style: solid;
	border-width: 0.025em;
  margin-bottom: 40px;
}
.f-footer-txt {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
  font-weight: 400;
	line-height: 130%;
}
.thanks-table {
  max-width: 1080px;
  margin: 50px auto;
  background: #0071BC;
  border-radius: 20px;
  color: #FFF;
  padding: 40px 30px 20px;
  margin-bottom: 200px;
  
  h2 {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 40px;
  }
  
  p {
    font-size: 1.125rem;
    line-height: 200%;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  .thanks-table {
    margin-bottom: 70px;
    h2 {
      font-size: 1.625rem;
    }

    p {
      font-size: 1rem;
    }
  }
}
.not-table {
  max-width: 1080px;
  margin: 50px auto;
  border-radius: 20px;
  color: #0071BC;
  border: solid 1px #0071BC;
  padding: 3vw 30px;
  margin-bottom: 200px;
  
  h2 {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 40px;
  }
  
  p {
    font-size: 1.125rem;
    line-height: 200%;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
  }
}

@media screen and (max-width: 768px) {
  .top-menu,.sub-top-menu {
    display: none;
  }
}
.ichiran {
  position: absolute;
  bottom: 0;
  font-size: 1rem;
  color: #0071BC;
  font-family: "Noto Sans JP", sans-serif;
  
  a {
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    color: #0071bc!important;
    padding: 0 20px;
    border: solid 2px #0071bc;
    box-sizing: border-box;
    border-radius: 30px;
    
    &:hover {
      color: #FFF!important;
      background: #0071BC!important;
    }
  }
  
  &::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: #0071bc;
    border-radius: 50%;
    background-image: url("../images/arrow-whi.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
    z-index: 0;
  }
  
  &:hover::before {
    background: #FFF;
    background-image: url("../images/arrow-bl.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 8px;
  }
}
@media screen and (max-width: 768px) {
  .ichiran {
    position: relative;
      width: 210px;
      margin-left: auto;
      margin-right: auto;

      a {
        height: 35px;
      }
      
      &::before {
        right: 5px;
        width: 26px;
        height: 26px;
      }
    }
  }
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.top-pc {
  display: block;
}
.top-sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .top-pc {
    display: none;
  }
  .top-sp {
    display: block;
  }
}

/* スクロールダウンの位置 */
.scroll {
  margin-inline: auto;
  margin-top: 30px;
  position: absolute;
  content: "";
  left: 50%;
  bottom: 10%;
  width: fit-content;

  span {
    color: #0071BC;
    font-family: "Work Sans", sans-serif;
    font-variant-numeric: tabular-nums;
    font-weight: 400;
  }

  &::webkie-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 1135px) {
  .scroll {
    bottom: 5%;
  }
}
/* マウスホイール */
.scroll::before {
  animation: 2s scroll infinite;
  background: #0071BC;
  border-radius: 3px;
  content: "";
  height: 10px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 4px;
}
/* マウス */
.scroll::after {
  border: 1px solid #0071BC;
  border-radius: 20px;
  content: "";
  display: block;
  height: 50px;
  margin-inline: auto;
  margin-top: 10px;
  width: 30px;
}
/* アニメーション */
@keyframes scroll {
  0% {
    opacity: 0;
    top: 40%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 70%;
  }
}
.swipe {
  display: none;
  }
@media screen and (max-width: 768px) {
  .swipe {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    
    span {
      font-size: 1rem;
      color: #FFF;
      font-family: "Work Sans", sans-serif;
      font-variant-numeric: tabular-nums;
      font-weight: 400;
      position: relative;
      
      &::before {
        position: absolute;
        content: "";
        right: -70px;
        width: 65px;
        height: 21px;
        background-image: url(../images/swipe.png);
        background-repeat: no-repeat;
        background-size: cover;
      }
    }
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0071BC;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  z-index: 105;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  p {
    font-size: 0.925rem;
    line-height: 150%;
  }
}
@media screen and (max-width: 768px) {
  .cookie-banner {
    display: block;
    width: auto;
    right: 0;
    padding: 15px 40px 15px 30px;

    p {
      line-height: 150%;;
      margin-bottom: 10px;
      text-align: left;
    }
  }
}
.cookie-banner button {
  background-color: #fff;
  color: #0071BC;
  border: none;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 4px;
}
.cookie-banner button:hover {
  opacity: 0.8;
}
.cookie-close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 15px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
}
.cookie-close:hover {
  color: #ccc;
}

/* スプラッシュ全体 */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  opacity: 1;
  transition: opacity 2s ease;
}

/* フェイドアウト */
#splash.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* 中央ロゴ配置 */
.splash-inner {
  text-align: center;

  p {
    font-size: 0.875rem;
    text-align: center;
    color: #3fa9f5;
  }
}

/* ロゴを波打つアニメーション */
.splash-logo {
  width: 350px;
  animation: wave 10s ease-in-out infinite;
}

@keyframes wave {
  0%   { transform: rotate(-3deg) translateY(0); }
  25%  { transform: rotate(0deg) translateY(-10px); }
  50%  { transform: rotate(3deg) translateY(0); }
  75%  { transform: rotate(0deg) translateY(10px); }
  100% { transform: rotate(-3deg) translateY(0); }
}
@media screen and (max-width: 768px) {
  .splash-logo {
    width: 250px;
  }
}

/* container 初期状態は非表示 */
#container-top {
  opacity: 0;
  transition: opacity 2s ease;
}

/* フェイドイン時 */
#container-top.fade-in {
  opacity: 1;
}