@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  scroll-behavior: smooth;
}
body {
  color: #333; /* RGB */
  font-family: 'Noto Sans JP'; 
  background-color: #eeeeee;
}
a:link { 
color: #333;
text-decoration: none;
}
a:visited { 
color: #333; 
}
a:hover { 
color: #5fc5f5; 
}
a:hover {
  opacity: 0.6;
}
/* ↓画像配置時の下の余白を埋める　*/
img {
  vertical-align: bottom;
  width: 300px;
}
iframe {
  width: 100%;
}
h2, h3, h4 {
  text-align: center;
}
a.anchor {
  display: block;
  padding-top: 70px;
}

/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}
/* ヘッダー　*/
#header {
  width: 100%;
  height: 60px;
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #5fc5f5;
  color: #fff;
  text-align: center;
}
#header.HeightMin {
  position: fixed;
  z-index: 999; /*最前面へ*/
  height: 28px;
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-120px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.HeightMin {
  position: fixed;
  width: 100%;
  z-index: 1000;
  color: #fff;
  background-color: #5fc5f5;
  padding: 10px 0;
}
.header-content {
}
.header-content a {
  text-decoration: none;
}
.header-content h1 {
  font-size: 2.4rem;
  font-weight: 500;
  background-color: #5fc5f5;
  color: #fff;
  padding: 0 50px 0 30px;
}
.header-content h1 span {}
.header-content h1 img {
  width: 120px;
  padding-top: 5px;
}
/* mobile-navigation */
@media(max-width:1060px) {
  .open-button {
    display: block;
    position: absolute;
    right: 24px;
    top: 25px;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
	.HeightMin .open-button {
    top: 12px;
	}
}
@media(max-width:1000px) {
    .open-button_content {
        transition: .3s;
    }
}
@media(min-width:1060px) {
  /* header */
  #header {
    width: 100%;
    height: 100px;
    /*以下はレイアウトのためのCSS*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #5fc5f5;
    color: #fff;
    text-align: center;
  }
  .header-content {
    display: flex;
    max-width: 1060px;
    margin: 0 auto;
  }
  .header-content h1 {
    font-size: 3.4rem;
    display: flex;
    padding: 0;
  }
  .header-content h1 span {
  }
}

/* ご挨拶　*/
.greeting {
  position: relative;
  font-size: 1.2rem;
}
.top-mv {
    background-image: url(../image/mv.jpg);
    aspect-ratio: 16 / 2;
    background-size: cover;
    background-position: center;
}
.top-mv img{
  width: 100%;
}
.greeting-container {
    margin-top: -80px;
}
.greeting-top {
    margin: 0 auto;
    display: flex;
    justify-content: right;
    height: 90%;
    align-items: center;
}
.greeting-top img {
  width: 30%;
}
.greeting-lead {
  background-color: #fff;
  max-width: 720px;
  padding: 0 20px 10px;
  margin: 0 24px 0;
  position: relative;
  z-index: 12;
}
.greeting-p_container p {
  line-height: 1.8rem;
}
.greeting-p_container p br {
  display: none;
}
.greeting-p_container p:first-child {
  padding: 12px 0;
  font-size: 1.2rem;
  font-weight: 300;
}
.greeting-p_container p:nth-child(3) {
  padding-top: 12px;
  font-weight: 600;
  text-align: right;
}

@media(min-width:1060px) {
  .greeting {
    font-size: 1.6rem;
  }
  .top-mv img{
  width: 100%;
  }
  .greeting-container {
      margin-top: -180px;
  }
  .greeting-top img {
    width: 20%;
  }
  .greeting-lead {
    padding: 0 0 20px;
    margin: 20px auto 0;
    ;
  }
  .greeting-title img {
    width: 120px;
    padding-left: 35px;
  }
  .greeting-p {
    display: flex;
  }
  .greeting-p_container {
    max-width: 960px;
  }
  .greeting-p_container p {
    line-height: 2.4rem;
    padding-left: 40px;
  }
  .greeting-p_container p br {
    display: block;
  }
  .greeting-p_container p:first-child {
    padding: 30px 0 20px 40px;
    font-size: 2.0rem;
    line-height: 3.0rem;
  }
  .greeting-p_container p:nth-child(3) {
    padding-top: 20px;
  }
}

/* achievement */
.achievement {
  background-color: #fff;
  max-width: 1060px;
  padding: 20px 20px 20px;
  margin: -20px auto 0;
}
.achievement h2 span {
    font-size: 2.4rem;
    line-height:1.6em;
  /*線の種類（二重線）太さ 色*/
    border-bottom: double 4px #5fc5f5;
    padding: 0.1em 0;/*上下の余白*/
  }
.achievement p {
    font-size: 2.0rem;
    line-height: 2.4rem;
    font-weight: 500;
    color: #8d8917;
    padding-bottom: 10px;
    text-align: center;
  }
.achievement p span {
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 400;
  color: #333;
}
.gallery-list_container {
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 320px;
    gap: 0 5%;
    padding: 0 5%;
}
.gallery-list-item {
    flex-basis: 30%;
    max-width: 300px;
}
.gallery-list_container a {
  text-decoration: none;
}
.gallery-list_container a img {
  width: 100%;
  padding-top: 30px;
}
.gallery-list_container a p {
  padding: 10px 0 0 0;
}
.gallery-close_button {
  font-size: 2.0rem;
  padding: 10px;
}

.gallery-top {
  position: relative;
  top: -25px;
  width: 80px;
  margin: 0 auto;
}
.gallery {
  width: 100%;
  margin: 15px auto;
}
.gallery img {
  width: 100%;
  margin: 15px auto;
}


@media(min-width: 1060px) {
  .achievement {
    padding: 30px 30px 30px;
    margin: 0 auto 0;
  }
  .achievement h2 span {
    font-size: 2.8rem;
  /*線の種類（二重線）太さ 色*/
    border-bottom: double 4px #5fc5f5;
    padding: 0.4em 0;/*上下の余白*/
  }
  .gallery-list_container {
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 100%;
  }
  .gallery {}
  .gallery-img {
    width: 100%;
    margin: 0 auto;
  }
  .gallery-img img {
    width: 100%;
    margin: 0 auto 20px;
  }

}
/* company */
.company {
  background-color: #fff;
  max-width: 1060px;
  margin: 30px 30px 30px 30px;
}
.company h2 span {
    font-size: 2.4rem;
    line-height:1.6em;
  /*線の種類（二重線）太さ 色*/
    border-bottom: double 4px #5fc5f5;
    padding: 0.1em 0;/*上下の余白*/
  }
.company p {
  font-size: 1.6rem;
  line-height: 2.2rem;
}
.company br-sp {
    display: none;
}

.company-top {
  position: relative;
  width: 100px;
  margin: 0 auto;
}
.company-img {
  text-align: center;
}
.company-img img {
  width: 95%;
  margin: 40px auto;
  max-width: 440px;
}
.company-lead table {
  margin: 0 20px 0 20px;
}
.company-lead table tr {
  border-bottom: 1px solid #dad7cd;
}
.company-lead table tr:first-child {
  border-top: 1px solid #dad7cd;
}
.company-lead table th, td {
  padding: 16px 0;
  line-height: 1.6rem;
}
.company-lead table th {
  text-align: left;
  font-size: 1.4rem;
  text-indent: 1em;
  padding: 16px 1em 16px 0;
}
.company-lead table td {
  font-size: 1.4rem;
  line-height: 2.0rem;
  text-align: left;
  padding-left: 1em;
}
.company-lead table td i {
  margin-right: 1em;
}
.company-lead table td i {
  color: #344e41;
}
@media(min-width: 1060px) {
  .company {
    padding: 30px 30px 30px;
    margin: 30px auto 30px;
  }
  .br-sp {display: none; }
  }
  .company h2 span {
    font-size: 2.8rem;
  /*線の種類（二重線）太さ 色*/
    border-bottom: double 4px #5fc5f5;
    padding: 0.4em 0;/*上下の余白*/
  }
  .company h3 {
    font-size: 1.8rem;
    padding-bottom: 40px;
  }
  .company-container {
    display: flex;
    padding-top: 40px;
  }
  .company-img img {
    margin: 0 auto;
    padding-left: 30px;
    max-width: 440px;
  }
  .company-lead table {
    margin-left: 40px;
  }
  .company-lead table tr {
    border-bottom: 2px solid #dad7cd;
  }
  .company-lead table tr:first-child {
    border-top: 2px solid #dad7cd;
  }
  .company-lead table th {
    font-size: 1.6rem;
    padding: 10px 20px 10px 0;
  }
  .company-lead table td {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-company-list:before {
  content: "\ea1c";
}

/* access */
.access {
  background-color: #fff;
  max-width: 1060px;
  padding: 30px 20px 20px;
  margin: 5px auto 0;
}
  .access h2 span {
    font-size: 2.4rem;
    line-height:1.6em;
  /*線の種類（二重線）太さ 色*/
    border-bottom: double 4px #5fc5f5;
    padding: 0.1em 0;/*上下の余白*/
  }
  .access p {
    font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 500;
    text-align: center;
    margin: 60px 20px 40px 20px;
  }
.access p span {
  color: #344e41;
    font-size: 1.4rem;
  line-height: 1.8rem;
  padding: 0 8px;

}
@media(min-width: 1060px) {
  .access {
    padding: 30px 30px 30px;
    margin: 50px auto 0;
  }
  .access h2 span {
    font-size: 2.8rem;
  /*線の種類（二重線）太さ 色*/
    border-bottom: double 4px #5fc5f5;
    padding: 0.4em 0;/*上下の余白*/
  }
}

/* achievement2 */
.achievement2 {
  background-color: #fff;
  max-width: 1060px;
  padding: 30px 20px 20px;
  margin: 5px auto 30px;
}
.achievement2 h2 span {
    font-size: 2.4rem;
    line-height:1.6em;
  /*線の種類（二重線）太さ 色*/
    border-bottom: double 4px #5fc5f5;
    padding: 0.1em 0;/*上下の余白*/
  }

@media(min-width: 1060px) {
  .achievement2 {
    padding: 30px 30px 30px;
    margin: 50px auto 50px;
  }
  .achievement2 h2 span {
    font-size: 2.8rem;
  /*線の種類（二重線）太さ 色*/
    border-bottom: double 4px #5fc5f5;
    padding: 0.4em 0;/*上下の余白*/
  }


}

/* footer */
.footer {
  background-color: #5fc5f5;
  color: #fff;
  padding: 20px 10px 120px;
  position: relative;
  overflow: hidden;
}
.footer-logo {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
}
.footer-logo p {
  padding-left: 10px;
}
.footer-p p {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.footer-p p a {
  text-decoration: none;
  color: #fff;
}
.footer-img {
  position: absolute;
  right: 0;
  margin: 20px 0;
}
.footer-img img {
  width: 150px;
}
  .link_icon {
    display: inline-block;
    margin-left: 4px;
    margin-right: 5px;
    margin-bottom: 3px;
    width: 14px;
    object-fit: contain;
}
@media(min-width: 1060px) {
  .footer {
    padding: 50px 0 50px;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 40px;
    justify-content: center;
  }
  .footer-logo img {
    width: 200px;
  }
  .footer-img {
    top: 50px;
    margin: 0;
    background-color: #fff;
    border-radius: 25px 0 0 25px;
    width: 13%;
    transition: all 1s 0.1s ease;
  }
  .footer-img:hover {
    width: 15%;
  }
  .footer-logo p {
    font-size: 1.6rem;
  }
  .footer-img img {
    width: 200px;
  }
  .link_icon {
    display: inline-block;
    margin-left: 4px;
    margin-right: 5px;
    margin-bottom: 3px;
    width: 16px;
    object-fit: contain;
}
}
/* スクロールボタン　*/
#scroll-top {
  opacity: 0.9;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
}
#scroll-top img {
  width: 30px;
  height: 30px;
}
#scroll-top a {
  text-decoration: none;
}
@media(min-width:1060px) {
  #scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
  }
  #scroll-top img {
    width: 50px;
    height: 50px;
  }
}
/* // 動きのきっかけとなるアニメーションの名前を定義
function fadeAnime(){

//ふわっと動くきっかけのクラス名と動きのクラス名の設定
$('.fadeUpTrigger').each(function(){ //fadeInUpTriggerというクラス名が
　　var elemPos = $(this).offset().top-50; //要素より、50px上の
　　var scroll = $(window).scrollTop();
　　var windowHeight = $(window).height();
　　if (scroll >= elemPos - windowHeight){
　　$(this).addClass('fadeUp');
　　// 画面内に入ったらfadeInというクラス名を追記
　　}else{
　　　$(this).removeClass('fadeUp');
　　// 画面外に出たらfadeInというクラス名を外す
　　}
　　});
  // 画面をスクロールをしたら動かしたい場合の記述
  $(window).scroll(function (){
    fadeAnime();/* アニメーション用の関数を呼ぶ
  */