@charset "utf-8";

/* ----------------------------------------------------
  円を描くボタン
---------------------------------------------------- */
.maru_button_02 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  letter-spacing: 2px;  
  color: #009297 !important; /* 文字の色 */  
}
.maru_icon_02 {
  width: 45px;
  height: 45px;
  position: relative;
  flex-shrink: 0;
}
.maru_icon_02 svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.maru_icon_02 circle.bg {
  stroke: #009297; /* 初期　丸の色 */
  stroke-width: 2;
  fill: none;
}
.maru_icon_02 circle.fg {
  stroke: #222; /* ホバー　丸の色 */
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 125.66;
  stroke-dashoffset: 125.66;
  transition: stroke-dashoffset 0.6s ease;
}
.maru_button_02:hover .maru_icon_02 circle.fg {
  stroke-dashoffset: 0;
}
.maru_icon_02 .arrow {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  pointer-events: none;
  color: #009297; /* 初期　矢印の色 */  
}
.maru_button_02:hover .maru_icon_02 .arrow {
  color: #222; /* ホバー　矢印の色 */
}


/* ----------------------------------------------------
  円を描くボタン
---------------------------------------------------- */
.maru_button_03 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  letter-spacing: 2px;
  color: #fff !important; /* 文字の色 */  
}
.maru_icon_03 {
  width: 45px;
  height: 45px;
  position: relative;
  flex-shrink: 0;
}
.maru_icon_03 svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.maru_icon_03 circle.bg {
  stroke: #fff; /* 初期　丸の色 */
  stroke-width: 2;
  fill: none;
}
.maru_icon_03 circle.fg {
  stroke: #222; /* ホバー　丸の色 */
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 125.66;
  stroke-dashoffset: 125.66;
  transition: stroke-dashoffset 0.6s ease;
}
.maru_button_03:hover .maru_icon_03 circle.fg {
  stroke-dashoffset: 0;
}
.maru_icon_03 .arrow {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  pointer-events: none;
  color: #fff; /* 初期　矢印の色 */  
}
.maru_button_03:hover .maru_icon_03 .arrow {
  color: #222; /* ホバー　矢印の色 */
}

/* ----------------------------------------------------
  横文字
---------------------------------------------------- */
.bg_marquee{background: url("../images/bg_marquee.jpg") no-repeat scroll 50% 0% / cover}

.marquee {
  font-family: "Literata", serif;
  overflow: hidden;
  display: flex;
  color: #d4e8e9;
  padding: 15px 0 50px 0;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-inner span {
  padding-right: 50px;
  font-size: 40px;
  line-height: .9;
  margin-top: -0.1em;
  }

@media print, screen and (min-width: 768px) {
.marquee {
  overflow: hidden;
  display: flex;
  padding: 80px 0 300px 0;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-inner span {
  padding-right: 50px;
  font-size: 8rem;
  line-height: .9;
  margin-top: -0.1em;
  }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----------------------------------------------------
  h2
---------------------------------------------------- */
.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}	

/* ----------------------------------------------------
  contact 選択時に必須項目表示
---------------------------------------------------- */
#companyField,
#mailField {
  display: none;
}