@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

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

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

/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.u-clearfix {
  *zoom: 1;
}

.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/*------------------------------------------------------------
    Default
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

body, table,
input, textarea, select, option, button {
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: middle;
  max-width: 100%;
  transition: all .5s;
}

iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

table {
  width: 100%;
  border-collapse: collapse;
}

a {
  color: #363636;
  text-decoration: none;
  display: inline-block;
  transition: all .5s;
}

a.link {
  text-decoration: underline;
}

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

.u-bgcover {
  overflow: hidden;
  position: relative;
  -webkit-background-size: cover !important;
          background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.u-pd70 {
  padding: 70px 0;
}
.u-pb70 {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .u-pd70 {
    padding: 50px 0;
  }
  .u-pb70 {
    padding-bottom: 50px;
  }
}

.u-bg01 {
  background-color: #ECF7F1;
}

.u-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .u-df {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.u-df .f-left, .u-df .f-right {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .u-df .f-left, .u-df .f-right {
    width: 100%;
  }
}

.u-hover {
  overflow: hidden;
  transition: all .5s;
  position: relative;
}
.u-hover .u-bgcover:before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .5s;
  position: absolute;
  background-color: rgba(26,129,167,0.50);
}
.u-hover .u-bgcover:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all .5s;
  position: absolute;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.u-hover.is-hover .u-bgcover:after {
  transform: scale(1.1);
}
.u-hover.is-hover img {
  transform: scale(1.1);
}
.u-hover.is-hover .c-btn01 {
  color: #fff !important;
  background-color: #2A72BE !important;
}


/* .fadein
------------------------------------------------------------*/
.u-fadein {
  opacity: 0;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
      transform: translateY(100px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}

.u-fadein.on {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
}

/*------------------------------------------------------------
  effect（ページ遷移）
------------------------------------------------------------*/
.u-effect {
  position: relative;
}
.u-effect::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ECF7F1;
  /* 背景カラー */
  background-image: url(../image/common/h-logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9998;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値 : 透過状態 */
  -webkit-transition: opacity .6s ease;
  /* アニメーション時間は 0.6秒 */
  transition: opacity .6s ease;
}

@media screen and (max-width: 767px) {
  .u-effect::after {
    background-size: 220px;
  }
}

.u-effect.show::after {
  opacity: 1;
}

.u-effect.show article {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}


/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
body {
  color: #363636;
  min-width: 768px;
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}

.l-container {
  margin: 0 auto;
  /* width: 1150px; */
  width: 1300px;
}

@media screen and (max-width: 1399px) {
  .l-container {
    width: 93%;
    margin: 0 auto;
  }
}

.p-content section {
  border-bottom: 3px solid #DFEEFE;
}


/*------------------------------------------------------------
header
------------------------------------------------------------*/
.c-header {
	position: relative;
}

.c-header__nav {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  justify-content: space-between;
	-webkit-transition: 500ms;
	transition: 500ms;
	padding: 25px 3.5%;
  background-color: #fff;
}

.c-header__nav.expanded {
    background-color: #fff;
    width: 92%;
    padding: 15px 2.2%;
    margin: 1.5% auto;
    border-radius: 10px;
}

@media screen and (max-width: 767px) {
	.c-header__nav {
    padding: 15px;
    height: 68px;
	}
  .c-header__nav.sp-expanded {
  }
  .c-header__nav.sp-expanded:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 68px;
    background-color: #fff;
  }
}

.c-header__nav .nav-logo, .c-header__nav .nav-menu {
  display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  align-items: center;
}

.nav-logo {
	position: relative;
}
.nav-logo span {
	font-size: 13px;
	position: absolute;
	top: -2px;
	left: 60px;
}

/*
.c-header__nav.expanded .nav-logo span {
	left: 56px;
}
*/
@media screen and (max-width: 767px) {
  .c-header__nav .nav-menu {
    display: none;
  }
}

@media screen and (max-width: 767px) {
	.c-header__nav .nav-logo img {
    max-width: 70%;
	}
	.c-header__nav .nav-logo span {
		font-size: 11px;
		left: 45px;
	}
}

@media screen and (max-width: 767px) {
	.c-header__nav .nav-menu {
		display: none;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		position: fixed;
		top: 68px;
		width: 100%;
		left: 0;
		z-index: 2;
		height: calc(100vh - 68px);
		overflow-x: hidden;
		background-color: rgba(0, 0, 0, 0.85);
	}
}

.c-header__nav .nav-menu .menu-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

@media screen and (max-width: 767px) {
	.c-header__nav .nav-menu .menu-list {
		display: block;
		background: #fff;
	}
}

.c-header__nav .nav-menu .nav-parent {
  border-left: 1px solid #D8D8D8;
}

@media screen and (max-width: 767px) {
	.c-header__nav .nav-menu .nav-parent {
		border-top: 1px solid #D8D8D8;
	}
}

.c-header__nav .nav-menu .nav-parent > a {
	height: 100%;
	padding: 10px 30px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
	text-align: center;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
}
.c-header__nav .nav-menu .nav-parent > a span {
  color: #07AFB1;
  font-size: 9px;
}
/* .c-header__nav .nav-menu a:before {
  content: "";
  width: 23px;
  height: 23px;
  display: block;
  margin: 0 auto 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: #EBF5FF;
} */

.c-header__nav .nav-menu a:hover, .c-header__nav .nav-menu li.active a {
  background-color: #ECF7F1;
}

.c-header__nav .nav-menu li.last {
  padding-left: 30px;
}
.c-header__nav .nav-menu li.last a {
	color: #fff;
	background: #009FB0;
  border-radius: 28px;
  width: 200px;
  overflow: hidden;
  position: relative;
  border: 1px solid #009FB0;
}
.c-header__nav .nav-menu li.last a:hover {
}
.c-header__nav .nav-menu li.last a span {
  color: #fff;
}


.c-header__nav.nav-fixed {
	-webkit-transition: 500ms;
	transition: 500ms;
	background: rgba(255, 255, 255, 0.9);
	-webkit-box-shadow: 0 0 15px 5px rgba(153, 153, 153, 0.5);
	box-shadow: 0 0 15px 5px rgba(153, 153, 153, 0.5);
}

@media screen and (max-width: 1449px) and (min-width: 768px) {
  .c-header__nav .nav-logo {
    width: 25%;
  }
  .c-header__nav .nav-menu .nav-parent > a {
    padding: 10px 2vw;
    font-size: 1.2vw;
  }
  .c-header__nav .nav-menu li.last {
    padding-left: 2vw;
  }
  .c-header__nav .nav-menu li.last a {
    width: auto;
    padding: 10px 3vw;
  }
}
@media screen and (max-width: 767px) {
  .c-header__nav .nav-menu .nav-parent > a {
    font-size: 1.4rem;
  }
  .c-header__nav .nav-menu li.last {
    padding: 15px 0;
  }
  .c-header__nav .nav-menu li.last a {
    margin: 0 auto;
  }
}

/*------------------------------------------------------------
menu-sp
------------------------------------------------------------*/
@media screen and (max-width: 767px) {
	.c-header__nav .menu-btn {
		right: 0;
		width: 35px;
		height: 20px;
		cursor: pointer;
		position: relative;
		-ms-flex-item-align: center;
		align-self: center;
	}
	.c-header__nav .menu-btn span {
		right: 0;
		width: 35px;
		height: 2px;
		position: absolute;
		background-color: #000;
		-webkit-transition: all 300ms ease;
		transition: all 300ms ease;
	}
	.c-header__nav .menu-btn span:nth-child(1) {
		top: 0;
	}
	.c-header__nav .menu-btn span:nth-child(2) {
		top: 10px;
	}
	.c-header__nav .menu-btn span:nth-child(3) {
		top: 20px;
	}
	.c-header__nav .is-open.menu-btn {
		-webkit-transition: all 300ms ease;
		transition: all 300ms ease;
	}
	.c-header__nav .is-open.menu-btn span:nth-child(1) {
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.c-header__nav .is-open.menu-btn span:nth-child(2) {
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.c-header__nav .is-open.menu-btn span {
		top: 10px;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}


/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer__border {
  height: 35px;
  text-align: center;
  background-color: #59C3D0;
}
.c-footer__border img {
  margin-top: -26px;
  position: relative;
  border: 2px solid #07AFB1;
  border-radius: 50px;
}
.c-footer__top {
  color: #fff;
  background-color: #40B2BF;
}
.c-footer__top--col {
  padding-left: 4%;
  width: calc(100% / 2);
}
.c-footer__top--box {
  max-width: 370px;
  margin: 0 auto;
}
.c-footer__address p {
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.3;
}
.c-footer__map {
  position: relative;
  padding-top: 50%;
  margin-top: 20px;
}
.c-footer__contact {
  margin: 0 4%;
  border-left: 1px solid #9BD7DE;
}
.c-footer__contact h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.c-footer__contact p {
  line-height: 2;
  margin-top: 20px;
}
.c-footer__contact a {
  display: block;
  font-size: 15px;
  color: #fff;
  max-width: 203px;
  text-align: center;
  padding: 10px;
  border-radius: 28px;
  margin: 22px auto 0;
  background-color: #008E9D;
  border: 1px solid #008E9D;
}
.c-footer__contact a:hover {
  color: #363636;
  background-color: #fff;
}

.c-footer__bottom {
  color: #fff;
  font-size: 12px;
  padding: 20px 0;
  text-align: center;
  background-color: #009FB1;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  /* .c-footer__top .details {
    flex-wrap: wrap;
  }
  .c-footer__address {
    width: calc((100% - 4%) / 2);
  }
  .c-footer__address:nth-child(2) {
    margin-right: 4%;
  }
  .c-footer__contact {
    padding: 0;
    margin: 4% 4% 0;
    border: 0;
    width: 100%;
  } */
}
@media only screen and (max-width: 767px) {
  .c-footer__top--col {
    width: 100% !important;
    padding: 0 4%;
    border: 0;
  }
  .c-footer__top--col + .c-footer__top--col {
    margin: 40px auto 0;
  }
  .c-footer__top--box {
    max-width: 100%;
  }
  .c-footer__contact h3 {
    font-size: 2.2rem;
  }
  .c-footer__bottom {
    padding: 10px 0;
  }
}


/*------------------------------------------------------------
c-title
------------------------------------------------------------*/
.c-title02 {
  font-size: 25px;
}
@media only screen and (max-width: 767px) {
  .c-title02 {
    font-size: 2rem;
  }
}

/*------------------------------------------------------------
c-btn
------------------------------------------------------------*/

/*------------------------------------------------------------
c-table
------------------------------------------------------------*/
.c-table01 {
  margin-top: 20px;
}
.c-table01 th {
  width: 22%;
  min-width: 105px;
  color: #009FB0;
  text-align: left;
  font-size: 16px;
}
.c-table01 td {
  font-size: 15px;
}
.c-table01 th, .c-table01 td {
  padding: 18px 0;
  line-height: 1.8;
  vertical-align: top;
  border-bottom: 1px solid #009FB1;
}
@media only screen and (max-width: 1200px) and (min-width: 768px) {
  .c-table01 th, .c-table01 td {
    font-size: 1.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-table01 {
    margin-top: 10px;
  }
  .c-table01 th {
    min-width: 98px;
    font-size: 1.3rem;
  }
  .c-table01 td {
    font-size: 1.3rem;
  }
  .c-table01 th, .c-table01 td {
    padding: 10px 0;
  }
}

/*------------------------------------------------------------
	c-other
------------------------------------------------------------*/
#main_slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#main_slider .slide {
  /*overflow: hidden;*/
  position: relative;
  opacity: 1 !important;
}

#main_slider .slide span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: transparent no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
  opacity: 0;
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transition: 0s;
  transition: 0s;
}

#main_slider .slide.slick-start span {
  opacity: 1;
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transition: ease 0s;
  transition: ease 0s;
}

#main_slider .slide.slick-active span {
  opacity: 1;
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transition: 2000ms ease-out 0s;
  transition: 2000ms ease-out 0s; /*ease 12s;*/
}

#main_slider .slide.slick-continue span {
  opacity: 0;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: 2000ms ease-out 0s;
  transition: 2000ms ease-out 0s;
}

/* --------------------------------------------------
	 7. Slick
-------------------------------------------------- */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track::before,
.slick-track::after {
  content: "";
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 10px;
}

.slick-prev,
.slick-next {
  display: block;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  width: 6px;
  height: 11px;
  position: absolute;
  top: 50%;
  padding: 0;
  line-height: 0;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
  opacity: .8;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev::before,
.slick-next::before {
  content: "";
  display: block;
  opacity: .75;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.slick-prev {
  right: 30px;
}

.slick-prev::before {
  border-right: 6px solid #2C722A;
}

.slick-next {
  right: 10px;
}

.slick-next::before {
  border-left: 6px solid #2C722A;
}

.slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 15px;
  list-style: none;
  display: none;
  margin: 0;
  padding: 0;
  z-index: 2;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  width: 10px;
  height: 10px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover::before,
.slick-dots li button:focus::before {
  background-color: #15b7db;
}

.slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dcdcdc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button::before {
  background-color: #15b7db;
}


/* c-mainvisual
------------------------------------------------------------*/
/*.c-mainvisual {
  display: flex;
  align-items: center;
  justify-content: center;
	position: relative;
  margin: 108px 3.5% 52px;
  overflow: hidden;
  border-radius: 38px;
	height: 350px;
}*/

.c-mainvisual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 108px 3.5% 52px;
    overflow: hidden;
    border-radius: 38px;
    height: 350px;
    width: auto; /* 初期は自動幅 */
    transition: all 0.5s 0s ease;/*transitionの記述を追加*/
}

.c-mainvisual.expanded {
    margin: 0 0 52px; /* 横幅が100%の時に左右のマージンを0に */
	padding-top: 108px;
	height: 488px;
    border-radius: 0; /* 横に広がる際、角をなくす（必要なら） */
}
.page-top .c-mainvisual.expanded {
	margin: 2%;
	padding-top: 0;
	border-radius: 38px;
}
.page-top .c-mainvisual.expanded span {
	width: 100%;
	background-size: cover;
}



.c-mainvisual__inner {
  width: 100%;
  height: 100%;
  background: url(../image/common/mainvisual.jpg);
  position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.c-mainvisual.expanded .c-mainvisual__inner {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.c-mainvisual__inner:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multiply;
  background-color: rgba(123,173,204,0.8);
}

@media screen and (max-width: 767px) {
	.c-mainvisual {
		height: 260px;
	}
	.c-mainvisual.expanded {
		height: 328px;
		padding-top: 68px;
	}
	.page-company .c-mainvisual.expanded {
		margin-bottom: 0;
	}
	.page-top .c-mainvisual.expanded {
		margin: 0%;
		padding-top: 0;
		border-radius: 0px;
	}
}
.c-mainvisual.is_show .c-mainvisual__text {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: .999;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.c-mainvisual__text {
  color: #fff;
	z-index: 1;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  opacity: 0;
  text-align: center;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
  transition: filter 1.5s, opacity 1.5s, transform 1.5s;
  transition: filter 1.5s, opacity 1.5s, transform 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
}
.c-mainvisual__text h1 {
  line-height: 1;
	font-size: 66px;
  font-weight: bold;
  mix-blend-mode: hard-light;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.c-mainvisual__text p {
  font-size: 27px;
  margin-top: 25px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-mainvisual {
    margin: 68px 3% 30px;
    border-radius: 25px;
  }
  .c-mainvisual__text h1 {
    font-size: 4.2rem;
  }
  .c-mainvisual__text p {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}

/* c-breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
  position: absolute;
  left: 40px;
  bottom: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 93%; /* 最大幅を設定（必要に応じて調整） */
}

@media screen and (max-width: 767px) {
  .c-breadcrumb {
    left: 20px;
    bottom: 20px;
    text-align: left;
  }
}

.c-breadcrumb ul li {
  display: inline-block;
}

.c-breadcrumb ul li img {
  vertical-align: -2px;
}

.c-breadcrumb ul li {
  font-size: 12px;
}

.c-breadcrumb ul li:after {
  content: "〉";
  margin-left: 10px;
  font-size: 11px;
}

.c-breadcrumb ul li:last-of-type:after {
  content: none;
}


/* c-common
------------------------------------------------------------*/
.s-entry {
  text-align: center;
  margin-top: 80px;
}
.page-top .s-entry {
	margin-top: 0;
}
@media screen and (max-width: 767px) {
	.s-entry {
		margin-top: 0;
	}
}
.s-entry__img {
  color: #fff;
  padding: 12% 2%;
}
.s-entry__ttl {
  position: relative;
  z-index: 1;
}
.s-entry__img p {
  opacity: 0.67;
  font-size: 16px;
}
.s-entry__img h3 {
  font-size: 21px;
  margin-top: 5px;
}
.f-left .s-entry__img:after {
  background: url(../image/common/entry_img01.jpg);
}
.f-right .s-entry__img:after {
  background: url(../image/common/entry_img02.jpg);
}
.s-entry__txt {
  padding: 27px 20px 30px;
  border: 1px solid #07AFB1;
}
.s-entry__txt--btn {
  color: #fff;
  padding: 9px;
  max-width: 300px;
  border-radius: 20px;
  margin: 18px auto 0;
  background-color: #009FB0;
  transition: all .5s;
  border: 1px solid #009FB0;
}
.u-hover.is-hover .s-entry__txt--btn {
  color: #363636;
  background-color: #fff;
}


/*------------------------------------------------------------
p-top
------------------------------------------------------------*/
.page-top .c-mainvisual,
.page-top #main_slider .slide {
	height: 82vh;
  min-height: 500px;
  z-index: 1;
}
.page-top #main_slider {
  background-color: #fff;
}
.page-top .c-mainvisual__text h1 {
  text-align: left;
}
.page-top .c-mainvisual__text span {
  color: #009FB0;
  display: block;
  font-size: 26px;
  padding: 5px 20px 7px 20px;
  margin-top: 42px;
  text-align: center;
  border-radius: 25px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .page-top .c-mainvisual,
  .page-top #main_slider .slide {
    height: 66vh;
    min-height: auto;
  }
  .page-top .c-mainvisual__text span {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}


.js .slider-single > div:nth-child(1n+2) { display: none }
.js .slider-single.slick-initialized > div:nth-child(1n+2) { display: block }
.slider-nav .slick-slide { cursor: pointer; }
.p-top .s-intro .slick-track {
    display: flex !important;
}
.p-top .s-intro .slick-slide {
    height: inherit !important;
}
.p-top .s-intro .slider-nav .slick-slide.is-active {
	color: #fff;
	background-color: #009FB0;
}
.p-top .s-intro {
  position: relative;
  padding: 52px 0 70px;
}
.p-top .s-intro .f-left {
  padding-left: 9%;
}
/* .p-top .s-intro .f-left ul {
  display: flex;
} */
.p-top .s-intro .f-left ul li {
  color: #009FB0;
  font-size: 25px;
  width: 30% !important;
  padding: 14px;
  margin-top: 1px;
  margin-bottom: 1px;
  text-align: center;
  border-top: 1px solid #009FB0;
  border-right: 1px solid #009FB0;
  border-bottom: 1px solid #009FB0;
}
.p-top .s-intro .f-left ul li:first-child {
  border-top-left-radius: 34px;
  border-bottom-left-radius: 34px;
  border-left: 1px solid #009FB0;
  margin-left: 1px;
}
.p-top .s-intro .f-left ul li:last-child {
  border-top-right-radius: 34px;
  border-bottom-right-radius: 34px;
  margin-right: 1px;
}
.p-top .s-intro h2 {
  color: #313131;
  font-size: 36px;
  margin-top: 36px;
}
.p-top .s-intro p {
  color: #07AFB1;
  font-size: 18px;
  margin-top: 36px;
}


.p-top .s-intro .f-right {
  padding-left: 4%;
}

.p-top .s-intro .f-right .slider {
  margin-top: -9vw;
}
/* .p-top .s-intro .f-right .item.slick-active span {
  opacity: 1;
}
.p-top .s-intro .f-right .item span {
  opacity: 0;
  -webkit-transition: -webkit-transform 1900ms ease, opacity 1900ms ease;
  transition: -webkit-transform 1900ms ease, transform 1900ms ease, opacity 1900ms ease;
} */

.p-top .s-intro .f-right span {
  width: 100%;
  height: 100%;
  display: block;
}

.p-top .s-intro .f-right .s-intro__img2 {
  width: 30vw !important;
  height: 22vw;
  z-index: 1;
  position: relative;
  /* margin: -9vw auto 0 0; */
}
.p-top .s-intro .f-right .s-intro__img2 span {
	border-radius: 20px;
}

.p-top .s-intro .f-right .s-intro__img1 {
  width: 33.2vw !important;
  height: 39vw;
  margin: -30vw 0 0 auto;
}
@media screen and (max-width: 767px) {
	.p-top .s-intro .f-right .s-intro__img1 {
		display: none;
	}
}
.p-top .s-intro .f-right .s-intro__img3 {
  width: 26.5vw !important; 
  height: 16.5vw;
  margin: -8vw 0 0 auto;
}
.p-top .s-intro .f-right .s-intro__img3 span {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}


@media screen and (max-width: 1200px) and (min-width: 768px) {
  .p-top .s-intro .f-left {
    padding-left: 4%;
  }
  .p-top .s-intro .f-right {
    padding-left: 3%;
  }
}

@media screen and (max-width: 960px) {
  .p-top .s-intro .f-left ul li {
    font-size: 2.3vw;
  }
  .p-top .s-intro h2 {
    font-size: 3.7vw;
  }
}

@media screen and (max-width: 767px) {
  .p-top .s-intro {
    padding: 30px 0 50px 0;
  }
  .p-top .s-intro .f-left {
    padding: 0 4%;
  }
  .p-top .s-intro .f-left ul li {
    font-size: 1.8rem;
    padding: 12px;
    width: calc(100% / 3) !important;
  }
  .p-top .s-intro .f-left ul li:first-child {
    margin-left: 2px;
  }
  .p-top .s-intro .f-left ul li:last-child {
    margin-right: 2px;
  }
  .p-top .s-intro h2 {
    font-size: 2.7rem;
    margin-top: 30px;
  }
  .p-top .s-intro p {
    font-size: 1.6rem;
    margin-top: 26px;
  }
  .p-top .s-intro .f-right {
    position: relative;
    padding: 0 4%;
  }
  /* .p-top .s-intro .f-right .slider {
    position: absolute;
    height: 43vw;
    width: 60vw;
  }
  .p-top .s-intro .f-right .slick-list, .p-top .s-intro .f-right .slick-track {
    height: 43vw !important;
  } */
  .p-top .s-intro .f-right .slider {
    margin-top: 40px;
  }
  .p-top .s-intro .f-right span {
    border-radius: 15px !important;
  }
  .p-top .s-intro .f-right .s-intro__img2 {
    width: 60vw !important;
    height: 43vw;
  }
  .p-top .s-intro .f-right .s-intro__img1 {
    width: 70vw !important;
    height: 80vw;
  }
  .p-top .s-intro .f-right .s-intro__img3 {
    width: 48vw !important;
    height: 30vw;
    margin: -15vw 0 0 auto;
  }
}
@media screen and (max-width: 360px) {
  .p-top .s-intro .f-left ul li {
    font-size: 5vw;
  }
}

/*------------------------------------------------------------
p-business
------------------------------------------------------------*/
.p-business .s-business {
}
.p-business .s-business__items {
  margin-bottom: 30px;
  background-color: #EFFFF6;
}
.p-business .s-business__items.is-hover {
  color: #fff;
  background-color: #009FB1;
  transition: all .3s;
}
.p-business .s-business__img {
  width: 40%;
  min-height: 330px;
}
.p-business .s-business__txt {
  width: 60%;
  padding: 4% 4% 4% 9%;
  align-self: center;
}
.p-business .s-business__txt p {
  font-size: 15px;
  line-height: 2;
  margin-top: 22px;
}
.p-business .item01 .s-business__img {
  background: url(../image/business/img01.jpg);
}
.p-business .item02 .s-business__img {
  background: url(../image/business/img02.jpg);
}
.p-business .item03 .s-business__img {
  background: url(../image/business/img03.jpg);
}
.p-business .s-business .s-entry__txt--btn {
	padding: 10px 30px;
	border-radius: 50px;
}

@media only screen and (max-width: 767px) {
  .p-business .s-business__img {
    width: 100%;
    min-height: 60vw;
  }
  .p-business .s-business__txt {
    width: 100%;
    padding: 26px 5% 30px;
  }
  .p-company .item02 .details {
    flex-direction: column-reverse;
  }
  .p-business .s-business__txt p {
    font-size: 1.4rem;
    margin-top: 15px;
  }
}

/*------------------------------------------------------------
p-company
------------------------------------------------------------*/
.p-company .s-company .details {
  position: relative;
}
.p-company .s-company__img {
  width: 36%;
  height: 100%;
  max-height: 705px;
  position: absolute;
  top: 0;
}
.p-company .s-company__txt {
  width: 60%;
}
.p-company .item01 .s-company__img {
  background: url(../image/company/img01.jpg);
}
.p-company .item02 .s-company__img {
  background: url(../image/company/img02.jpg);
}
.p-company .item03 .s-company__img {
  background: url(../image/company/img03.jpg);
}

.p-company .s-company:nth-child(odd) .s-company__img {
  left: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.p-company .s-company:nth-child(odd) .s-company__txt {
  margin-left: auto;
}
.p-company .s-company:nth-child(even) .s-company__img {
  right: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.p-company .s-company:nth-child(even) .s-company__txt {
  margin-right: auto;
}
.p-company .s-entry {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .p-company .s-company__img {
    width: 100%;
    height: 62vw;
    position: unset;
    border-radius: 0 !important;
  }
  .p-company .s-company__txt {
    width: 100%;
    margin-top: 30px;
  }
  .p-company .s-company:nth-child(even) .details {
    flex-direction: column-reverse;
  }
	.p-company .s-company.item01 .s-company__img {
		display: none;
	}
	.p-company .s-company:nth-child(even).u-pd70 {
		padding-top: 0;
	}
}

/*------------------------------------------------------------
p-plant
------------------------------------------------------------*/
.p-plant .s-plant {
}
.p-plant .s-plant__items {
  margin-bottom: 30px;
}
.p-plant .s-plant__box + .s-plant__box {
  padding-top: 20px;
}
.p-plant .s-plant__img {
  width: 48%;
  min-height: 320px;
}
.p-plant .s-plant__txt {
  width: 48%;
  align-self: center;
}
.p-plant .s-plant__img {
  border-radius: 20px;
}
.p-plant .item01 .s-plant__img {
  background: url(../image/plant/img01.jpg);
}
.p-plant .item02 .s-plant__img {
  background: url(../image/plant/img02.jpg);
}
.p-plant .item02b .s-plant__img {
  background: url(../image/plant/image24-1_2.jpg);
}
.p-plant .item03 .s-plant__img {
  background: url(../image/plant/img03.jpg);
}
.p-plant .item04 .s-plant__img {
  background: url(../image/plant/img04.jpg);
}
.p-plant .item05 .s-plant__img {
  background: url(../image/plant/img05.jpg);
}
.p-plant .item06 .s-plant__img {
  background: url(../image/plant/img06.jpg);
}
.p-plant .item07 .s-plant__img {
  background: url(../image/plant/img07.jpg);
}
.p-plant .item08 .s-plant__img {
  background: url(../image/plant/img08.jpg);
}

@media only screen and (max-width: 767px) {
  .p-plant .s-plant__box + .s-plant__box {
    padding-top: 15px;
  }
  .p-plant .s-plant__img {
    width: 100%;
    min-height: 70vw;
    border-radius: 15px;
  }
  .p-plant .s-plant__txt {
    width: 100%;
    margin-top: 30px;
  }
}

/*------------------------------------------------------------
p-access
------------------------------------------------------------*/
.p-access .s-access__img {
  width: 48%;
	border-radius: 10px;
}
.p-access .s-access__txt {
  width: 48%;
  align-self: center;
}

@media only screen and (max-width: 767px) {
  .p-access .details {
    flex-direction: column-reverse;
  }
  .p-access .s-access__img {
    width: 100%;
    padding-top: 56%;
  }
  .p-access .s-access__txt {
    width: 100%;
    margin-top: 30px;
  }
}


/*------------------------------------------------------------
p-contact
------------------------------------------------------------*/
.p-contact .s-contact__img {
  width: 48%;
  min-height: 320px;
  border-radius: 10px;
}
.p-contact .s-contact__txt {
  width: 48%;
  align-self: center;
}
.p-contact .s-contact__img {
  background: url(../image/contact/img.jpg);
}

@media only screen and (max-width: 767px) {
  .p-contact .details {
    flex-direction: column-reverse;
  }
  .p-contact .s-contact__img {
    width: 100%;
    min-height: 70vw;
  }
  .p-contact .s-contact__txt {
    width: 100%;
    margin-top: 30px;
  }
}