/*======================================

	0. WPネイティブ設定
	
=======================================*/

/* editor */
 
p {
    display: block;
    margin: 1em 0;
}
strong { font-weight: bold; }
em { font-style: italic; }
blockquote {
    display: block;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 40px;
    -webkit-margin-end: 40px;
}
 
/* img */
 
.aligncenter {
    display: block;
    margin: 0 auto;
}
.alignright { float: right; }
.alignleft { float: left; }
 
img[class*="wp-image-"],
img[class*="attachment-"] {
    height: auto;
    max-width: 100%;
}
 
/* clearfix */
 
.clearfix {
    overflow: hidden;
    zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

/*======================================

	1. フォント設定
	
=======================================*/

p,
pre,
cite,
blockquote {
	font-size: 100%;
}

li,dt,dd {
	font-size: 100%;
}

* {
font-style: normal;
}

strong {
	font-weight:bold;
}


/*======================================

	2. サイト構造
	
=======================================*/

html {
box-sizing: border-box;
}

*, *:before, *:after {
box-sizing: inherit;
}

body {
margin: 0 auto;
padding: 0;
color: #4a4e56;
background-color: #FFF;
line-height: 1.6;
font-family: "Noto Sans JP","游ゴシック","Yu Gothic",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ ゴシック",sans-serif;
font-style: normal;
}

br.clear {
clear: both;
font: 0pt/0pt sans-serif;
}

a {
color: #009de1;
text-decoration: none;
}

a:hover {
color: #009de1;
}

section {
clear: both;
}

.main-color {
color: #f64747;
}

.contents-h2 {
height: 370px;
background-image: url("img/h2-bg.png");
background-size: cover;
}

.contents-h2 h2 {
padding: 210px 0 0 180px;
font-size: 40px;
font-family: hiragino-kaku-gothic-pron, sans-serif;
font-weight: 600;
font-style: normal;
line-height: 0.5;
}

.contents-h2 h2 span {
color: #007660;
font-size: 18px;
}

.main-contents {
margin: 100px auto;
padding: 100px 50px;
width: 1224px;
background-color: #FFF;
}

.main-contents h3 {
padding: 0 0 8px 0;
color: #007660;
border-bottom: 2px solid #007660;
font-size: 30px;
margin: 0 0 50px 0;
} 

.main-contents h4 {
color: #007660;
font-size: 24px;
}

/*======================================

	3. ヘッダ設定
	
=======================================*/


header {
margin: 0;
padding: 0 20px 0 0;
height: 130px;
width: 100%;
background: rgba(255,255,255,0.8);
box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, .2);
display: flex;
justify-content: space-between;
position: fixed;
align-items: center;
z-index: 1000;
}

h1 {
margin: 0 0 0 20px;
}

h1 img {
margin: 0;
padding: 0;
width: 152px;
height: auto;
vertical-align: top;
}

.header-menu {
}

ul.header-menu {
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: space-between;
}

.header-menu > li {
position: relative;
list-style: none;
}

/* 通常のリンク */
.header-menu > li {
text-decoration: none;
color: #4a4e56;
font-size: 20px;
font-weight: bold;
padding: 10px 15px;
display: inline-block;
cursor: pointer;
}

.header-menu > li a {
text-decoration: none;
color: #4a4e56;
}

.header-menu > li:hover a {
text-decoration: none;
color: #4a4e56;
}

/* ホバー時の●（丸）のスタイル */
.header-menu > li::before {
content: ''; /* 擬似要素にコンテンツを設定 */
position: absolute;
top: 0; /* テキストの上部に配置 */
left: 50%; /* 中央揃え */
transform: translateX(-50%) scale(0); /* 初期状態は非表示 */
width: 6px;
height: 6px;
background-color: #4a4e56; /* ●の色 */
border-radius: 50%; /* 丸くする */
transition: transform 0.3s ease-in-out; /* アニメーション効果 */
}

/* ホバー時に●を表示 */
.header-menu > li:hover::before {
transform: translateX(-50%) scale(1); /* 拡大して表示 */
}

/* ドロップダウンのスタイル */
.submenu {
  list-style: none;
  position: absolute;
  top: 100%; /* 親メニューの下に配置 */
  left: 0;
  padding: 10px 0;
  margin: 0;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: none; /* 初期状態は非表示 */
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submenu li {
  padding: 5px 20px;
}

.submenu li a {
  color: #4a4e56;
  text-decoration: none;
  display: block;
  font-size: 14px;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 4px;
}

.submenu li a:hover {
  background-color: #007BFF;
  color: white;
  border-radius: 4px;
}

/* ドロップダウン表示時 */
.dropdown:hover .submenu {
  display: block;
}

/* CONTACTボタン */
.animated-button {
  margin: 0;
  display: block; /* ボタン風に見せる */
  width: 110px; /* 初期サイズ */
  height: 110px;
  border-radius: 50%; /* 丸い形状 */
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}

.animated-button .button-text {
  display: inline-block;
  z-index: 1; /* 背景より前面に表示 */
  color: white;
  width: 110px; /* 初期サイズ */
  height: 110px;
  font-weight: bold;
  text-decoration: none; /* 下線を消す */
  line-height: 110px; /* ボタン中央にテキストを配置 */
  background-color: #007BFF; /* ボタンの背景色 */
  border-radius: 50%;
  transform: scale(1); /* 初期状態 */
  transition: transform 0.2s ease-in-out; /* アニメーション時のスムーズな動き */
}

.animated-button:hover .button-text {
  animation: pop 0.4s ease-out;
}

/* アニメーション定義 */
@keyframes pop {
  0% {
    transform: scale(0.5); /* 一瞬小さくなる */
  }
  40% {
    transform: scale(1.1); /* 一瞬大きくなる */
  }
  100% {
    transform: scale(1); /* 元のサイズに戻る */
  }
}




/*======================================

	3. メニュー設定
	
=======================================*/

#drawer {
display: none;
}

.drawer-nav {
display: none;
}

#sp-menu-button {
display: none;
}


/*======================================

	3. アニメーション共通
	
=======================================*/

.animate-fade-in {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.04s ease, transform 1.04s ease;
}

.animate-fade-in-down {
  opacity: 0;
  transform: translateY(-80px);
  transition: opacity 1.04s ease, transform 1.04s ease;
}

.animate-slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1.04s ease, transform 1.04s ease;
}

.animate-slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1.04s ease, transform 1.04s ease;
}

.animate-zoom-in {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1.04s ease, transform 1.04s ease;
}

.animate-zoom-out {
  opacity: 0;
  transform: scale(1.5);
  transition: opacity 1.04s ease, transform 1.04s ease;
}

.animated {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}


/*======================================

	4. TOP設定
	
=======================================*/

/* --- メイン画像 ---*/

.top-image{

}

.video-area {
  padding-top: 130px;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  position: relative;
}

.video-area video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.video-area-sp {
display: none;
}


/* --- 誰かの心を動かす日々を作る ---*/

.top-comm {
padding: 200px 0 0 0;

position: relative;
height: 1200px;
}

.ball-01 {
position: absolute;
top: -50px;
right: 10%;
}

.ball-01 img {
width: 192px;
height: auto;
}

.ball-02 {
position: absolute;
top: -150px;
left: -150px;
}

.ball-02 img {
width: 316px;
height: auto;
}

.ball-03 {
position: absolute;
top: 500px;
right: 15%;
z-index: 0;
}

.ball-03 img {
width: 241px;
height: auto;
}

.ball-04 {
position: absolute;
top: 650px;
right: 10%;
z-index: -1;
}

.ball-04 img {
width: 169px;
height: auto;
}

.ball-05 {
position: absolute;
top: 800px;
left: 50%;
}

.ball-05 img {
width: 145px;
height: auto;
}

.top-comm-inner {
position: absolute;
margin: 0 auto;
max-width: 1100px;
right: 0;
left: 0;
}

.top-comm-header {
margin: 0 auto 60px auto;
padding: 0;
position: relative;
max-width: 1100px;
height: 205px;
}

.top-comm-inner h2 {
margin: 0 auto;
padding: 0 0 80px 0;
font-size: 55px;
line-height: 1;
}

.top-comm-inner h2 span {
font-size: 25px;
}

.top-comm-inner h2 span::before {
content:"\A";
white-space:pre;
}

.top-comm-text {
padding: 50px 0 450px 0;
line-height: 3;
z-index: 3;
}


/* --- 野沢有二の想い ---*/
.top-banner {
margin: 0 0 200px 0;
background-image: url("img/top-banner-bg.jpg");
background-size: cover;
background-position: center center;
height: 400px;
}

.top-banner a {
display: block;
width: 100%;
}

.top-banner-inner {
margin: 0 auto;
max-width: 1100px;
height: 400px;
display: flex;
align-items: center;
}

.top-banner-inner p {
margin: 0 30px 0 0;
font-size: 40px;
color: #FFF;
font-weight: bold;
}

.top-banner-inner p span {
padding: 0 20px 0 0;
font-size: 22px;
}

.top-banner-button {
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
background-color: #0066df;
}

/* コンテナのスタイル */
.banner-arrow {
  margin: 0;
  width: 70px;
  height: 40px;
  position: relative;
  overflow: hidden; /* 矢印が外に出た部分を隠す */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 矢印のスタイル */
.b-arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  font-weight: normal;
  font-size: 16px;
  transform: translateX(0); /* 初期位置 */
  transition: transform 0.5s ease-in-out; /* スムーズな移動 */
}

.b-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
  line-height: 1;
  position: relative;
  width: 40px;
  height: 0.2em;
  background: currentColor;
}

.b-arrow::before {
  content: '';
  width: 1em;
  height: 1em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.1em;
  box-sizing: border-box;
}

/* ホバー時の動き */
.top-banner:hover .b-arrow {
  transform: translateX(150px); /* 右に移動して外に出る */
  animation: arrow-banner 0.5s ease-in-out 0.5s forwards; /* 左から戻る */
}

/* 左から戻るアニメーション */
@keyframes arrow-banner {
  0% {
    transform: translateX(-150px); /* 左側から登場 */
  }
  100% {
    transform: translateX(0); /* 初期位置で停止 */  }
}

/* --- おしらせ ---*/

.top-news {
background-color: #FFF;
}

.top-news-inner {
margin: 0 auto;
padding: 100px 0 300px 0;
max-width: 1100px;
}

.top-news-header {
margin: 0 auto 60px auto;
padding: 0;
position: relative;
max-width: 1100px;
height: 205px;
}

.ball-06 {
position: absolute;
width: 209px;
top: -70px;
left: -100px;
}

.ball-06 img {
width: 209px;
height: auto;
}

.top-news-inner h2 {
margin: 0 auto;
padding: 0 0 80px 0;
font-size: 55px;
}

.top-news-inner h2 span {
margin: 0 0 0 100px;
font-size: 25px;
}

.top-news ul {
padding: 0;
}

.top-news li {
padding: 0;
list-style: none;
border-bottom: 1px solid #4a4e56;
display: flex;
justify-content: space-between;
align-items: center;
color: #4a4e56;
}

.news-t {
display: flex;
justify-content: flex-start;
align-items: center;
width: calc(100% - 200px);
}

.news-t span {
margin: 0 9%;
width: 14%;
white-space: nowrap;
}

.news-t h3 {
width: 68%;
font-size: 16px;
font-weight: normal;
text-wrap: wrap;
}

.info-box a:hover {
text-decoration: none;
color: #4a4e56;
}

/* コンテナのスタイル */
.stickarrow-container {
  width: 200px;
  height: 100px;
  position: relative;
  overflow: hidden; /* 矢印が外に出た部分を隠す */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 矢印のスタイル */
.stickarrow {
  position: absolute;
  width: 60px;
  height: 26px;
  transform: translateX(0); /* 初期位置 */
  transition: transform 0.5s ease-in-out; /* スムーズな移動 */
}

/* ホバー時の動き */
.top-news a:hover .stickarrow {
  transform: translateX(200px); /* 右に移動して外に出る */
  animation: arrow-reenter 0.5s ease-in-out 0.5s forwards; /* 左から戻る */
}

/* 左から戻るアニメーション */
@keyframes arrow-reenter {
  0% {
    transform: translateX(-200px); /* 左側から登場 */
  }
  100% {
    transform: translateX(0); /* 初期位置で停止 */
  }
}


/* --- Youtubeチャンネル ---*/

.top-youtube {
margin: 0;
padding: 0 0 184px 0;
background-color: #FFF;
}

.top-yt-header {
margin: 0 auto 60px auto;
padding: 0;
position: relative;
max-width: 1100px;
height: 205px;
}

.ball-07 {
position: absolute;
width: 209px;
top: -70px;
left: -100px;
}

.ball-07 img {
width: 209px;
height: auto;
}

.top-youtube h2 {
margin: 0 auto;
padding: 0 0 200px 0;
font-size: 55px;
max-width: 1100px;
}

.top-youtube h2 span {
margin: 0 0 0 100px;
font-size: 25px;
}

.channel-yt {
margin: 0 auto 0 auto;
padding: 0;
max-width: 1100px;
aspect-ratio: 16 / 9;
text-align: center;
}

.channel-yt iframe {
margin: 0;
padding: 0;
vertical-align: top;
width: 100%;
height: 100%;
}


/* --- ロゴサークル ---*/

.logo-circle {
margin: 200px auto 0 auto;
width: 1140px;
height: 1100px;
background-image: url("img/logo-circle.svg");
position: relative;
}

.logo-circle a img {
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
}

.logo-circle a img:hover {
opacity: 0.5;
}

.logo-c1 {
position: absolute;
top: 500px;
left: 405px;
width: 330px;
}

.logo-c1 img {
width: 330px;
height: auto;
}

.logo-c2 {
position: absolute;
top: 150px;
left: 472px;
width: 195px;
}

.logo-c2 img {
width: 195px;
height: auto;
}

.logo-c3 {
position: absolute;
top: 420px;
left: 85px;
width: 213px;
}

.logo-c3 img {
width: 213px;
height: auto;
}

.logo-c4 {
position: absolute;
top: 850px;
left: 242px;
width: 223px;
}

.logo-c4 img {
width: 223px;
height: auto;
}

.logo-c5 {
position: absolute;
top: 820px;
left: 727px;
width: 188px;
}

.logo-c5 img {
width: 168px;
height: auto;
}

.logo-c6 {
position: absolute;
top: 415px;
left: 852px;
width: 200px;
}

.logo-c6 img {
width: 200px;
height: auto;
}

.logo-circle-sp {
display: none;
}


/* --- くるくる回るテキスト ---*/

.rotate-button-box {
max-width: 1100px;
margin: 200px auto 0 auto;
display: flex;
align-items: center;
justify-content: flex-end;
}

.rotate-button {
margin: 0 50px 0 0;
  padding: 25px;
  width: 250px;
  height: 250px;
  border-radius: 50%; /* 丸い形状 */
  background-color: #53dd3b;
}

.block {
  width: 200px;
  height: 200px;
  margin: auto;
  position: relative;
}
.circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}

.circleText__circle {
    fill: none;
    }
.circleText__text {
    fill: #FFF;
    font-size: 14.5px;
    letter-spacing: 0.05em;
  }
  
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.rotate-button-link {
position: absolute;
top: 80px;
width: 200px;
color: #FFF;
font-size: 22px;
font-weight: bold;
text-align: center;
}

/* コンテナのスタイル */
.arrow-container {
  margin: -80px 0 0 0;
  width: 200px;
  height: 20px;
  position: relative;
  overflow: hidden; /* 矢印が外に出た部分を隠す */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 矢印のスタイル */
.arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  transform: translateX(0); /* 初期位置 */
  transition: transform 0.5s ease-in-out; /* スムーズな移動 */
}

.arrow {
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
  line-height: 1;
  position: relative;
  width: 3em;
  height: 0.2em;
  background: currentColor;
}

.arrow::before {
  content: '';
  width: 2em;
  height: 2em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.1em;
  box-sizing: border-box;
}

/* ホバー時の動き */
.block:hover .arrow {
  transform: translateX(250px); /* 右に移動して外に出る */
  animation: arrow-reenter 0.5s ease-in-out 0.5s forwards; /* 左から戻る */
}

/* 左から戻るアニメーション */
@keyframes arrow-reenter {
  0% {
    transform: translateX(-250px); /* 左側から登場 */
  }
  100% {
    transform: translateX(0); /* 初期位置で停止 */
  }
}


/* --- くるくる回るテキスト2 ---*/

.rotate-button2 {
  padding: 25px;
  width: 250px;
  height: 250px;
  border-radius: 50%; /* 丸い形状 */
  background-color: #ff7b20;
}

.block2 {
  width: 200px;
  height: 200px;
  margin: auto;
  position: relative;
}
.circleText2 {
  overflow: visible;
  animation: rotation2 18s linear infinite;
}

.circleText__circle2 {
    fill: none;
    }
.circleText__text2 {
    fill: #FFF;
    font-size: 14.5px;
    letter-spacing: 0.05em;
  }
  
@keyframes rotation2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.rotate-button-link2 {
position: absolute;
top: 80px;
width: 200px;
color: #FFF;
font-size: 22px;
font-weight: bold;
text-align: center;
}

/* コンテナのスタイル */
.arrow-container2 {
  margin: -80px 0 0 0;
  width: 200px;
  height: 20px;
  position: relative;
  overflow: hidden; /* 矢印が外に出た部分を隠す */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 矢印のスタイル */
.arrow2 {
  position: absolute;
  width: 20px;
  height: 20px;
  transform: translateX(0); /* 初期位置 */
  transition: transform 0.5s ease-in-out; /* スムーズな移動 */
}

.arrow2 {
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
  line-height: 1;
  position: relative;
  width: 3em;
  height: 0.2em;
  background: currentColor;
}

.arrow2::before {
  content: '';
  width: 2em;
  height: 2em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.1em;
  box-sizing: border-box;
}

/* ホバー時の動き */
.block2:hover .arrow2 {
  transform: translateX(250px); /* 右に移動して外に出る */
  animation: arrow-reenter2 0.5s ease-in-out 0.5s forwards; /* 左から戻る */
}

/* 左から戻るアニメーション */
@keyframes arrow-reenter2 {
  0% {
    transform: translateX(-250px); /* 左側から登場 */
  }
  100% {
    transform: translateX(0); /* 初期位置で停止 */
  }
}



/* --- TOP文字流れるやつ ---*/

.sec-panel__btn {
position: relative;
padding: 40px 0;
overflow: hidden;
z-index: 1;
background-color: #0066df;
height: 480px;
}

  .sec-panel__btn:hover .bg-txt__line:nth-child(1) {
    -webkit-transform: translateX(-23.1875rem);
            transform: translateX(-23.1875rem);
  }
  .sec-panel__btn:hover .bg-txt__line:nth-child(2) {
    -webkit-transform: translateX(-2.0625rem);
            transform: translateX(-2.0625rem);
  }
  .sec-panel__btn:hover .bg-txt__line:nth-child(3) {
    -webkit-transform: translateX(-25.6875rem);
            transform: translateX(-25.6875rem);
  }
  .sec-panel__btn:hover .bg-txt__line:nth-child(4) {
    -webkit-transform: translateX(-15.3125rem);
            transform: translateX(-15.3125rem);
  }
  .sec-panel__btn:hover .bg-txt__line:nth-child(5) {
    -webkit-transform: translateX(-38.3125rem);
            transform: translateX(-38.3125rem);
  }
  .sec-panel__btn:hover .btn a {
    background-color: #F5FF00;
  }
  .sec-panel__btn:hover .btn a:after {
    -webkit-transform: translateY(-50%) translateX(0.625rem);
            transform: translateY(-50%) translateX(0.625rem);
  }

.sec-panel__btn .bg-txt__line img {
width: 480px;
height: auto;
}

.sec-panel__btn .bg-txt__line {
padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

  .sec-panel__btn .bg-txt__line {
    -webkit-transition: -webkit-transform ease-in-out 0.3s;
    transition: -webkit-transform ease-in-out 0.3s;
    transition: transform ease-in-out 0.3s;
    transition: transform ease-in-out 0.3s, -webkit-transform ease-in-out 0.3s;
  }

.sec-panel__btn .bg-txt__line:nth-child(1) {
  -webkit-transform: translateX(-2.5rem);
          transform: translateX(-2.5rem);
}
.sec-panel__btn .bg-txt__line:nth-child(2) {
  -webkit-transform: translateX(-17.4375rem);
          transform: translateX(-17.4375rem);
}
.sec-panel__btn .bg-txt__line:nth-child(3) {
  -webkit-transform: translateX(-2.4375rem);
          transform: translateX(-2.4375rem);
}
.sec-panel__btn .bg-txt__line:nth-child(4) {
  -webkit-transform: translateX(-49.3125rem);
          transform: translateX(-49.3125rem);
}
.sec-panel__btn .bg-txt__line:nth-child(5) {
  -webkit-transform: translateX(-4rem);
          transform: translateX(-4rem);
}



/*======================================

	5. FOOTER設定
	
=======================================*/

.footer-topbg {
content: '';
width: 100%;
height: 360px;
background-image: url("img/footer-bg.jpg");
background-size: cover;
}

footer {
margin: 0;
padding: 0;
height: 300px;
overflow: hidden;
background-color: #FFF;
}

.footer-box {
margin: 60px 0 0 0;
display: flex;
justify-content: space-between;
align-items: flex-start;
}

.footer-logo {
display: flex;
justify-content: flex-start;
align-items: flex-end;
}

.footer-logo h2 {
margin: 0 60px 0 70px;
padding: 0;
width: 152px;
height: auto;
vertical-align: top;
}

.footer-sns {

}

.footer-sns ul {
margin: 0 0 10px 0;
padding: 0;
display: flex;
justify-content: space-between;
align-items: flex-end;
}

.footer-sns ul li {
margin: 0 6px;
list-style: none;
}

.footer-sns ul li img {
width: 50px;
height: auto;
vertical-align: top;
}

.footer-menu {
width: 520px;
}

.footer-menu ul {
margin: 0 70px 0 0;
padding: 0;
display: flex;
justify-content: space-between;
align-items: flex-end;
flex-wrap: wrap;
}

.footer-menu ul li {
margin: 15px 0;
list-style: none;
width: 45%;
position: relative; /* 疑似要素の配置用 */
}

.footer-menu ul > li > a {
text-decoration: none; /* リンクの下線を削除 */
color: #4a4e56;
font-size: 20px;
font-weight: bold;
line-height: 1; /* テキストの高さを確保 */
display: flex; /* ラインと文字を横並びに */
align-items: center; /* ラインを文字の中央に揃える */
transition : all 0.2s ease 0s;
transition-timing-function: ease-out;
}

/* 左側のライン（行頭文字風） */
.footer-menu ul > li > a::before {
content: ''; /* 疑似要素の内容は空 */
display: inline-block; /* ラインとして表示 */
width: 27px; /* ラインの幅 */
height: 2px; /* ラインの高さ */
background-color: #4a4e56; /* ラインの色 */
margin-right: 13px; /* ラインと文字の間隔 */
}

.footer-menu ul > li > a:hover {
text-decoration: none;
color: #0066df;
}

.footer-cr {
margin: 0 0 0 100px;
font-size: 12px;
color: #999;
}



/*======================================

	5. 次ページ設定
	
=======================================*/

.common-title {
  margin: 0 0 130px 0;
  padding: 130px 0 0 0;
  height: 300px;
  background-color: #0066df;
}

.common-footer01 {
  padding: 0;
  height: 220px;
  background-color: #53dd3b;
}

.common-footer02 {
  padding: 0;
  height: 220px;
  background-color: #ff7b20;
}

.common-footer03 {
  padding: 0;
  height: 220px;
  background-color: #f73a43;
}

.common-footer04 {
  padding: 0;
  height: 220px;
  background-color: #0066df;
}

.common-footer05 {
  padding: 0;
  height: 220px;
  background-color: #ffd211;
}

.c-text {
  overflow: hidden;
  display: flex;
}
.c-text__item {
margin: -65px 0 0 0;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 170px;
  -webkit-text-stroke: 2px #FFF;
  color: #0066df;
  font-weight: bold;
}

.text_green {
margin: -45px 0 0 0;
color: #53dd3b;
letter-spacing: -10px;
}

.text_orange {
margin: -45px 0 0 0;
color: #ff7b20;
letter-spacing: -10px;
}

.text_red {
margin: -45px 0 0 0;
color: #f73a43;
letter-spacing: -10px;
}

.text_blue {
margin: -45px 0 0 0;
color: #0066df;
letter-spacing: -10px;
}

.text_yellow {
margin: -45px 0 0 0;
color: #ffd211;
letter-spacing: -10px;
}

  .c-text:not(.no-tick) .c-text__item:nth-child(odd) {
    -webkit-animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
    animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
  }
  .c-text--reverse:not(.no-tick) .c-text__item:nth-child(odd) {
    -webkit-animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear reverse;
    animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear reverse;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
  }
  .c-text:not(.no-tick) .c-text__item:nth-child(even) {
    -webkit-animation: MoveLeft2 var(--tick-duration, 24s) infinite linear;
    animation: MoveLeft2 var(--tick-duration, 24s) infinite linear;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
  }
  .c-text--reverse:not(.no-tick) .c-text__item:nth-child(even) {
    -webkit-animation: MoveLeft2 var(--tick-duration, 24s) infinite linear reverse;
    animation: MoveLeft2 var(--tick-duration, 24s) infinite linear reverse;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
  }

@-webkit-keyframes Spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
@keyframes Spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}
@-webkit-keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
  }
}
@keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
  }
}
@-webkit-keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%)
  }
}
@keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%)
  }
}


/* タイトルh2 スライドCSS */
.slide-h2 {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
}

.slide-h2 h2 {
  margin: 0;
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
}

.slide-h2 .message-text {
  margin: 0;
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
}

.slide-h2.-visible,
.slide-h2.-visible h2,
.slide-h2.-visible .message-text{
  transform: translate(0, 0);
}

.slide-h2-sub {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
}

.slide-h2-sub span {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 3s;
}

.slide-h2-sub.-visible,
.slide-h2-sub.-visible span {
  transform: translate(0, 0);
}

.message-text {
line-height: 3;
}



/*======================================

	5. ABOUT
	
=======================================*/

.about-box {
margin: 0 auto;
padding: 0 50px;
background-color: #FFF;
max-width: 1100px;
}

.about-header {
margin: 0 auto 60px auto;
padding: 0;
position: relative;
max-width: 1100px;
height: 205px;
}

.about-circle {
width: 205px;
height: 205px;
border-radius: 50%;
position: absolute;
z-index: 0;
left: -130px;
top:-30px;
background-color:  #53dd3b;
}

.about-box h2 {
margin: 0 auto;
padding: 50px 0 0 0;
font-size: 55px;
}

.about-box h2 span {
margin: 0 0 0 100px;
font-size: 25px;
}

.message-box {
padding: 130px 50px 0 50px;
margin: 0 auto 80px auto;
background-color: #FFF;
max-width: 1100px;
}

.message-header {
margin: 0 auto 60px auto;
padding: 0;
position: relative;
max-width: 1100px;
height: 205px;
}

.message-circle {
width: 205px;
height: 205px;
border-radius: 50%;
position: absolute;
z-index: 0;
left: -130px;
top:-30px;
background-color:  #ffd211;
}

.message-box h2 {
margin: 0 auto;
padding: 50px 0 0 0;
font-size: 55px;
}

.message-box h2 span {
margin: 0 0 0 100px;
font-size: 25px;
}

.message-logo {
margin: 0 0 50px 0;
text-align: center;
}

.message-logo img {
margin: 0 auto;
width: 300px;
height: auto;
}

.message-logo p {
margin: 20px 0 0 0;
font-size: 36px;
font-weight: bold;
}

.nozawa-box {
margin: 0;
padding: 0 50px;
background-image: url("img/nozawa.jpg");
background-position: center center;
background-size: cover;
height: 850px;
position: relative;
}

.nozawa-header {
margin: 0 auto 0 auto;
padding: 100px 0 0 0;
position: relative;
max-width: 1100px;
height: 205px;
}

.nozawa-circle {
width: 127px;
height: 127px;
border-radius: 50%;
position: absolute;
z-index: 0;
left: -50px;
top:70px;
background-color:  #0066df;
}

.nozawa-box h2 {
margin: 0 auto;
padding: 0 0 60px 0;
font-size: 55px;
color: #FFF;
}

.nozawa-name {
width: 205px;
height: 205px;
background-color: #0066df;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
bottom: 80px;
right: 80px;
}

.nozawa-name-inner {
display: inline-block;
color: #FFF;
font-size: 24px;
line-height: 1;
}

.nozawa-name-inner span {
font-size: 16px;
letter-spacing: 0.1em;
}

/* 画像スライドショー */

.loopSlide-outer {
position: relative;
}

.about-img {
position: absolute;
top: -280px;
right: 0;
z-index: 2;
}

.about-img img {
width: 315px;
height: auto;
}

.loopSlide {
    margin: 180px 0;
    position: relative;
    display: flex;
    overflow: hidden;
    z-index: 1;
}

.loopSlide ul {
    padding: 0;
    display: flex;
    flex-shrink: 0;
}

.loopSlide ul:first-child {
    animation: slide1 60s -30s linear infinite;
}

.loopSlide ul:last-child {
    animation: slide2 60s linear infinite;
}

.loopSlide ul li {
    display: inline-block;
    width: 300px;
    min-width: 150px;
    margin-right: 20px;
    list-style: none;
    text-align: center;
}

.loopSlide ul li img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.loopSlide:hover ul {
    animation-play-state: paused;
}

@keyframes slide1 {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes slide2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}



/*======================================

	5. FACILITIES
	
=======================================*/

.facilities-box {
margin: 0 auto 15px auto;
padding: 0;
background-color: #FFF;
background-image: url("img/facilities-bg.jpg");
background-position: right bottom 113px;
background-repeat: no-repeat;
background-size: 400px;
}

.facilities-top {
margin: 0 0 250px auto;
width: 66%;
height: 500px;
border-radius: 30px 0 0 30px;
background-image: url("img/facilities-top.jpg");
background-size: cover;
background-position: center center;
}

.facilities-header-outer {
margin: 0 auto;
padding: 0 50px;
max-width: 1100px;
}

.facilities-header {
margin: 0 auto 60px auto;
padding: 0;
position: relative;
max-width: 1100px;
height: 205px;
}

.facilities-circle {
width: 205px;
height: 205px;
border-radius: 50%;
position: absolute;
z-index: 0;
left: -130px;
top:-30px;
background-color:  #ff7b20;
}

.facilities-box h2 {
margin: 0 auto;
padding: 50px 0 0 0;
font-size: 55px;
max-width: 1100px;
}

.facilities-box h2 span {
margin: 0 0 0 100px;
font-size: 25px;
}

.facilities-box .fa-ul01 {

}

.facilities-box .fa-ul02 {
background-color: #fef3e9;
}

.facilities-box .fa-ul03 {

}

.fa-yuutoku {
padding: 80px 0 0 0;
display: flex;
align-items: center;
justify-content: flex-start;
}

.fa-yuutoku-line {
height: 2px;
background-color: #333;
flex-grow: 1;
}

.fa-yuutoku-line2 {
flex-grow: 1;
}

.fa-yuutoku-text {
max-width: 1100px;
padding: 0 0 0 20px;
font-size: 24px;
}

.facilities-box ul {
margin: 0 auto;
max-width: 1100px;
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}

.facilities-box ul li{
margin: 82px 0 82px 0;
width: 465px;
list-style: none;
}

.facilities-img {
position: relative;
height: 310px;
}

.facilities-img img{
position: absolute;
width: 100%;
height: auto;
border-radius: 20px;
z-index: 2;
}

.facilities-img .circle {
position: absolute;
width: 140px;
height: 140px;
top: 230px;
left: -70px;
border-radius: 50%;
z-index: 1;
}

.facilities01 .circle {
background-color: #f73a43;
}

.facilities02 .circle {
background-color: #ffd211;
}

.facilities03 .circle {
background-color: #53dd3b;
}

.facilities04 .circle {
background-color: #ff7b20;
}

.facilities05 .circle {
background-color: #0066df;
}


.facilities-comm {
margin: 43px 0 0 0;
padding: 0 0 0 70px;
border-bottom: 1px solid #333333;
}

.facilities-comm span {
font-size: 14px;
color: #888888;
}

.facilities-comm h3 {
font-size: 24px;
}

.facilities-comm h3 span {
font-size: 24px;
color: #4a4e56;
}

.facilities01 .facilities-comm p {
color: #f73a43;
}

.facilities02 .facilities-comm p {
color: #ffd211;
}

.facilities03 .facilities-comm p {
color: #53dd3b;
}

.facilities04 .facilities-comm p {
color: #ff7b20;
}

.facilities05 .facilities-comm p {
color: #0066df;
}

.facilities-add {
padding: 32px 0 0 70px;
display: flex;
justify-content: space-between;
align-items: flex-start;
line-height: 2;
}

.facilities-add p span {
margin: 0 0 20px 0;
padding: 3px 20px;
background-color: #b8d6f2;
border-radius: 30px;
font-weight: bold;
}


.facilities-button {
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}

.facilities01 .facilities-button {
background-color: #f73a43;
}

.facilities02 .facilities-button {
background-color: #ffd211;
}

.facilities03 .facilities-button {
background-color: #53dd3b;
}

.facilities04 .facilities-button {
background-color: #ff7b20;
}

.facilities05 .facilities-button {
background-color: #0066df;
}

/* コンテナのスタイル */
.facilities-arrow {
  margin: 0;
  width: 70px;
  height: 40px;
  position: relative;
  overflow: hidden; /* 矢印が外に出た部分を隠す */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 矢印のスタイル */
.f-arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  transform: translateX(0); /* 初期位置 */
  transition: transform 0.5s ease-in-out; /* スムーズな移動 */
}

.f-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
  line-height: 1;
  position: relative;
  width: 40px;
  height: 0.2em;
  background: currentColor;
}

.f-arrow::before {
  content: '';
  width: 1em;
  height: 1em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.1em;
  box-sizing: border-box;
}

/* ホバー時の動き */
.facilities-button:hover .f-arrow {
  transform: translateX(150px); /* 右に移動して外に出る */
  animation: arrow-facilities 0.5s ease-in-out 0.5s forwards; /* 左から戻る */
}

/* 左から戻るアニメーション */
@keyframes arrow-facilities {
  0% {
    transform: translateX(-150px); /* 左側から登場 */
  }
  100% {
    transform: translateX(0); /* 初期位置で停止 */  }
}


/* 各施設 */

.kobarizaka-box,
.ogi-box,
.luana-box,
.yuutoku-box,
.san-box {
margin: 0 auto 15px auto;
padding: 0;
background-color: #FFF;
}

.fa-top {
margin: 0 0 250px auto;
width: 66%;
height: 500px;
border-radius: 30px 0 0 30px;
background-size: cover;
background-position: center center;
}

.kobarizaka-box .fa-top {
background-image: url("img/kobarizaka-top.jpg");
}
.ogi-box .fa-top {
background-image: url("img/ogi-top.jpg");
}
.luana-box .fa-top {
background-image: url("img/luana-top.jpg");
}
.yuutoku-box .fa-top {
background-image: url("img/yuutoku-top.jpg");
}
.san-box .fa-top {
background-image: url("img/san-top.jpg");
}

.fa-header {
margin: 0 auto 60px auto;
padding: 0;
position: relative;
max-width: 1100px;
height: 205px;
}

.fa-circle {
width: 205px;
height: 205px;
border-radius: 50%;
position: absolute;
z-index: 0;
left: -130px;
top:-30px;
}

.kobarizaka-box .fa-circle {
background-color:  #f73a43;
}
.ogi-box .fa-circle {
background-color: #ffd211;
}
.luana-box .fa-circle {
background-color: #53dd3b;
}
.yuutoku-box .fa-circle {
background-color: #ff7b20;
}
.san-box .fa-circle {
background-color: #0066df;
}

.fa-header h2 {
font-size: 55px;
z-index: 2;
line-height: 1;
}

.fa-header h2 span {
margin: 0 0 0 100px;
font-size: 25px;
}

.kobarizaka-box .fa-header h2 span {
color:  #f73a43;
}
.ogi-box .fa-header h2 span {
color: #ffd211;
}
.luana-box .fa-header h2 span {
color: #53dd3b;
}
.yuutoku-box .fa-header h2 span {
color: #ff7b20;
}
.san-box .fa-header h2 span {
color: #0066df;
}

.fa-header h2 span.company {
margin: 0 0 0 0;
font-size: 18px;
color: #4a4e56;
line-height: 1;
}

.facilities-info {
margin: 0 auto;
padding: 0 50px;
max-width: 970px;
line-height: 2;
}

.facilities-data {
margin: 60px 0 0 0;
padding: 60px 0 0 0;
border-top: 1px solid #4a4e56;
display: flex;
justify-content: space-between;
align-items: flex-end;
}

.facilities-data-left {

}

.facilities-data-right {

}

.facilities-data-right a {
padding: 10px 0;
display: block;
color: #FFF;
text-align: center;
width: 180px;
text-decoration: none;
border-radius: 50px;
}

.facilities-data-right a:hover {
color: #FFF;
text-decoration: none;
border-radius: 50px;
opacity: 0.7;
}

.kobarizaka-box .facilities-data-right a {
background-color: #f73a43;
}
.ogi-box .facilities-data-right a {
background-color: #ffd211;
}
.luana-box .facilities-data-right a {
background-color: #53dd3b;
}
.yuutoku-box .facilities-data-right a {
background-color: #ff7b20;
}
.san-box .facilities-data-right a {
background-color: #0066df;
}


.facilities-access {
position: relative;
padding-bottom: 500px;
padding-top: 0;
height: 0;
overflow: hidden;
}
 
.facilities-access iframe,
.facilities-access object,
.facilities-access embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
}

.san span {
margin: 0 0 20px 0;
padding: 3px 20px;
background-color: #b8d6f2;
border-radius: 30px;
font-weight: bold;
}

.facilities-sns {
margin: 130px auto 30px auto;
max-width: 1000px;
display: flex;
justify-content: center;
align-items: center;
}

.facilities-sns img {
margin: 0 20px;
width: 400px;
height: auto;
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
}

.facilities-sns img:hover {
opacity: 0.6;

}

/*======================================

	5. RECRUIT
	
=======================================*/

.recruit-box {
margin: 0 auto 15px auto;
padding: 0;
background-color: #FFF;
background-image: url("img/recruit-bg.jpg");
background-position: right bottom 113px;
background-repeat: no-repeat;
background-size: 400px;
}

.recruit-top {
margin: 0 0 250px auto;
width: 66%;
height: 500px;
border-radius: 30px 0 0 30px;
background-image: url("img/recruit-top.jpg");
background-size: cover;
background-position: center center;
}

.recruit-header-outer {
margin: 0 auto;
padding: 0 50px;
max-width: 1100px;
}

.recruit-header {
margin: 0 auto 60px auto;
padding: 0;
position: relative;
max-width: 1100px;
height: 205px;
}

.recruit-circle {
width: 205px;
height: 205px;
border-radius: 50%;
position: absolute;
z-index: 0;
left: -130px;
top:-30px;
background-color:  #f73a43;
}

.recruit-box h2 {
margin: 0 auto;
padding: 50px 0 0 0;
font-size: 55px;
max-width: 1100px;
}

.recruit-box h2 span {
margin: 0 0 0 100px;
font-size: 25px;
}

.recruit-box .re-ul01 {

}

.recruit-box .re-ul02 {
background-color: #fef3e9;
}

.recruit-box .re-ul03 {

}

.recruit-box ul {
margin: 0 auto;
max-width: 1100px;
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}

.recruit-box ul li{
margin: 82px 0 82px 0;
width: 465px;
list-style: none;
}

.recruit-button {
margin: 0 0 0 70px;
width: 310px;
height: 310px;
border-radius: 50%;
display: block;
background-color: #FFF;
text-decoration: none;
}

a:hover .recruit-button p {
text-decoration: none;
}

.recruit01 .recruit-button {
border: 10px solid #f73a43;
color: #f73a43;
}

.recruit02 .recruit-button {
border: 10px solid #ffd211;
color: #ffd211;
}

.recruit03 .recruit-button {
border: 10px solid #53dd3b;
color: #53dd3b;
}

.recruit04 .recruit-button {
border: 10px solid #ff7b20;
color: #ff7b20;
}

.recruit05 .recruit-button {
border: 10px solid #0066df;
color: #0066df;
}

.recruit-button img {
margin: 80px auto 0 auto;
width: 240px;
height: auto;
}

.recruit-button img.san-log {
margin: 30px auto 0 auto;
width: 160px;
height: auto;
}

/* コンテナのスタイル */
.recruit-arrow {
  margin: 0 auto;
  width: 280px;
  height: 40px;
  position: relative;
  overflow: hidden; /* 矢印が外に出た部分を隠す */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 矢印のスタイル */
.r-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  transform: translateX(0); /* 初期位置 */
  transition: transform 1s ease-in-out; /* スムーズな移動 */
}

.r-arrow {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 80px;
  height: 0.3em;
  background: currentColor;
}

.r-arrow::before {
  content: '';
  width: 1.5em;
  height: 1.5em;
  border: 0.3em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.1em;
  box-sizing: border-box;
}

.recruit01 .r-arrow {
color: #f73a43;
}

.recruit02 .r-arrow {
color: #ffd211;
}

.recruit03 .r-arrow {
color: #53dd3b;
}

.recruit04 .r-arrow {
color: #ff7b20;
}

.recruit05 .r-arrow {
color: #0066df;
}

/* ホバー時の動き */
.recruit-button:hover .r-arrow {
  transform: translateX(560px); /* 右に移動して外に出る */
  animation: arrow-recruit 0.5s ease-in-out 0.5s forwards; /* 左から戻る */
}

/* 左から戻るアニメーション */
@keyframes arrow-recruit {
  0% {
    transform: translateX(-560px); /* 左側から登場 */
  }
  100% {
    transform: translateX(0); /* 初期位置で停止 */
  }
}

.recruit-comm {
margin: 43px 0 0 0;
padding: 0 0 0 70px;
border-bottom: 1px solid #333333;
}

.recruit-comm span {
font-size: 14px;
color: #888888;
}

.recruit-comm h3 {
font-size: 24px;
}

.recruit01 .recruit-comm p {
color: #f73a43;
}

.recruit02 .recruit-comm p {
color: #ffd211;
}

.recruit03 .recruit-comm p {
color: #53dd3b;
}

.recruit04 .recruit-comm p {
color: #ff7b20;
}

.recruit05 .recruit-comm p {
color: #0066df;
}

.recruit-add {
padding: 32px 0 0 70px;
display: flex;
justify-content: space-between;
align-items: flex-start;
line-height: 2;
}

.recruit-add p span {
margin: 0 0 20px 0;
padding: 3px 20px;
background-color: #b8d6f2;
border-radius: 30px;
font-weight: bold;
}




/*======================================

	5. INFORMATION
	
=======================================*/

.info-box {
margin: 0 auto 15px auto;
padding: 0;
background-color: #FFF;
}

.info-top {
margin: 0 0 250px auto;
width: 66%;
height: 500px;
border-radius: 30px 0 0 30px;
background-image: url("img/info-top.jpg");
background-size: cover;
background-position: center center;
}

.info-header-outer {
margin: 0 auto;
padding: 0 50px;
max-width: 1100px;
}

.info-header {
margin: 0 auto 60px auto;
padding: 0;
position: relative;
max-width: 1100px;
height: 205px;
}

.info-circle {
width: 205px;
height: 205px;
border-radius: 50%;
position: absolute;
z-index: 0;
left: -130px;
top:-30px;
background-color:  #53dd3b;
}

.info-box h2 {
margin: 0 auto;
padding: 50px 0 0 0;
font-size: 55px;
max-width: 1100px;
}

.info-box h2 span {
margin: 0 0 0 100px;
font-size: 25px;
}

.info-box .post {
margin: 0 auto 100px auto;
padding: 0 50px;
max-width: 1000px;
}

.info-box ul {
margin: 0 auto;
max-width: 1000px;
}

.info-box li {
padding: 0 0 0 60px;
list-style: none;
border-bottom: 1px solid #333;
display: flex;
justify-content: space-between;
align-items: center;
color: #4a4e56;
}

.info-t {
display: flex;
justify-content: flex-start;
align-items: center;
}

.info-t span {
margin-right: 100px;
width: 150px;
white-space: nowrap;
}

.info-t h3 {
width: 510px;
font-size: 16px;
font-weight: normal;
text-wrap: wrap;
}

.info-box a:hover {
text-decoration: none;
color: #4a4e56;
}

/* コンテナのスタイル */
.stickarrow-container {
  width: 200px;
  height: 100px;
  position: relative;
  overflow: hidden; /* 矢印が外に出た部分を隠す */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 矢印のスタイル */
.stickarrow {
  position: absolute;
  width: 60px;
  height: 26px;
  transform: translateX(0); /* 初期位置 */
  transition: transform 0.5s ease-in-out; /* スムーズな移動 */
}

/* ホバー時の動き */
.info-box a:hover .stickarrow {
  transform: translateX(200px); /* 右に移動して外に出る */
  animation: arrow-reenter 0.5s ease-in-out 0.5s forwards; /* 左から戻る */
}

/* 左から戻るアニメーション */
@keyframes arrow-reenter {
  0% {
    transform: translateX(-200px); /* 左側から登場 */
  }
  100% {
    transform: translateX(0); /* 初期位置で停止 */
  }
}


.info-box .post h3 {
margin: 0 0 20px 0;
font-size: 25px;
text-wrap: wrap;
}

.info-box .post .info-day {
padding: 0 0 80px 0;
margin: 0 0 80px 0;
border-bottom: 1px solid #4a4e56;
}

.info-box .post p {
line-height: 2;
font-size: 18px;
}



.post-navigation {
max-width: 1000px;
padding: 0 50px 50px 50px;
display: flex;
justify-content: space-between;
align-items: center;
}

.post-navigation .previous-post {

}

.post-navigation .list-post {
text-align: center;
}

.post-navigation .next-post {

}

.post-navigation .previous-post a,
.post-navigation .list-post a,
.post-navigation .next-post a {
display: block;
padding: 10px 20px;
border: 1px solid #007BFF;
border-radius: 50px;
color: #007BFF;
transition : all 0.2s ease 0s;
transition-timing-function: ease-out;
}

.post-navigation .previous-post a:hover,
.post-navigation .list-post a:hover,
.post-navigation .next-post a:hover {
display: block;
padding: 10px 20px;
border: 1px solid #007BFF;
border-radius: 50px;
background-color: #007BFF;
color: #FFF;
}

/*======================================

	5. CONTACT
	
=======================================*/

.contact-box {
margin: 0 auto 15px auto;
padding: 0;
background-color: #FFF;
}

.contact-top {
margin: 0 0 250px auto;
width: 66%;
height: 500px;
border-radius: 30px 0 0 30px;
background-image: url("img/contact-top.jpg");
background-size: cover;
background-position: center center;
}

.contact-header-outer {
margin: 0 auto;
padding: 0 50px;
max-width: 1100px;
}

.contact-header {
margin: 0 auto 60px auto;
padding: 0;
position: relative;
max-width: 1100px;
height: 205px;
}

.contact-circle {
width: 205px;
height: 205px;
border-radius: 50%;
position: absolute;
z-index: 0;
left: -130px;
top:-30px;
background-color:  #0066df;
}

.contact-box h2 {
margin: 0 auto;
padding: 50px 0 0 0;
font-size: 55px;
max-width: 1100px;
}

.contact-box h2 span {
margin: 0 0 0 100px;
font-size: 25px;
}

.contact-box .post {
margin: 0 auto 200px auto;
width: 860px;
}

.contact-head {
margin: 0 0 80px 0;
}

.contact-head h3 {
font-size: 55px;
}


.snow-monkey-form input[type="text"],
.snow-monkey-form input[type="email"],
.snow-monkey-form input[type="tel"] {
margin: 0 3px 3px 0;
padding: 10px 10px;
border: 1px solid #cdcdcd;
font-size: 16px;
border-radius: 50px;
}

.snow-monkey-form textarea  {
padding: 10px 50px;
border: 1px solid #cdcdcd;
height: 150px;
width: 100%;
border-radius: 8px!important;
}

.snow-monkey-form select {
padding: 10px 50px;
border: 1px solid #cdcdcd;
border-radius: 50px!important;
}

.snow-monkey-form button[type="submit"],
.snow-monkey-form button[type="button"] {
margin: 0 10px;
text-align: center;
padding: 10px 50px;
border: 1px solid #0066df;
background-color: #0066df!important;
border-radius: 50px;
color: #FFF;
background-image: none!important;
}

.snow-monkey-form button[type="submit"]:hover ,
.snow-monkey-form button[type="button"]:hover {
background-color: #4694e0!important;
}



/*======================================

     理事長野沢有二の想い

=======================================*/

.sado-header {
padding: 130px 0 0 0;
height: 630px;
width: 100%;
}

.sado-header-inner {
padding: 0;
height: 500px;
width: 100%;
background-image: url("img/sado-header.jpg");
background-size: cover;
background-position: center center;
position: relative;
}

.sado-header-h2 {
width: 1100px;
margin: 0 auto;
}

.sado-header-h2 h2 {
padding: 50px 0 0 0;
font-size: 43px;
color: #FFF;
font-weight: bold;
text-shadow: 0 0 5px #000;
line-height: 1.2;
font-family: "Sawarabi Mincho";
}

.sado-header-h2 p {
padding: 5px;
display: inline-block;
font-size: 15px;
background-color: #FFF;
color: #000;
font-family: "Sawarabi Mincho";
}

.sado-header-h2 p br {
display: none;
}


/*---- 佐渡＝日本医療の未来 ------*/

.future-box {
margin: 0 auto;
width: 1100px;
font-family: "Sawarabi Mincho";
text-align: center;
}

.future-circle {
margin: 0 auto;
padding: 20px 0 0 0;
width: 250px;
height: 100px;
background-image: url("img/sado-bg04.svg");
background-position: top center;
background-size: contain;
background-repeat: no-repeat;
color: #FFF;
font-size: 16px;
text-align: center;
}

.future-circle img {
margin: 5px auto 0 auto;
width: 40px;
height: auto;
transform: rotate(90deg);
}

.future-box h3 {
margin: 72px auto 50px auto;
display: inline-block;
font-size: 43px;
background-image: url("img/sado.png");
background-position: left center;
background-repeat: no-repeat;
height: 129px;
line-height: 129px; 
font-weight: normal;
}

.future-graph {
display: flex;
justify-content: space-between;
align-items: center;
}

.future-graph-left {
width: 510px;
}

.future-graph-left img {
width: 510px;
height: auto;
}

.future-graph-right {
width: 470px;
text-align: left;
}

.future-graph-right h4 {
font-size: 20px;
text-align: left;
font-weight: normal;
}


/*---- それでも私は、佐渡に渡る。 ------*/

.sado-banner {
margin: 150px 0 0 0;
width: 100%;
height: 500px;
background-image: url("img/sado-bg01.jpg");
background-size: cover;
background-position: left center;
font-family: "Sawarabi Mincho";
}

.sado-banner-inner {
margin: 0 auto;
padding: 230px 0 0 0;
width: 1000px;
text-align: right;
}

.sado-banner-inner h3 {
font-size: 43px;
font-weight: normal;
}

.sado-banner-inner h3 br {
display: none;
}

.sado-banner-inner p {
margin: 0 20px 0 0;
}


/*---- 質問 ------*/

.sado-question-box {
padding: 130px 0;
width: 100%;
background-image: url("img/sado-bg02.jpg");
background-position: center bottom;
background-size: cover;
background-attachment: fixed;
font-family: "Sawarabi Mincho";
}

.sado-q-box1 {
margin: 0 auto 130px auto;
width: 1160px;
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: row-reverse;
}

.sado-q-box1 .sado-q-right {
width: 540px;
}

.sado-q-box1 .sado-q-right img {
width: 540px;
height: auto;
border-radius: 20px;
}

.sado-q-box1 .sado-q-left {
padding: 0 0 0 70px;
width: 540px;
color: #FFF;
text-shadow: 0 0 3px #47649c;
}

.sado-q-box1 .sado-q-left h3 {
font-weight: normal;
font-size: 20px;
}

.sado-q-box2 {
margin: 0 auto 130px auto;
width: 1160px;
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: row;
}

.sado-q-box2 .sado-q-left {
width: 540px;
}

.sado-q-box2 .sado-q-left img {
width: 540px;
height: auto;
border-radius: 20px;
}

.sado-q-box2 .sado-q-right {
padding: 0 70px 0 0;
width: 540px;
color: #FFF;
text-shadow: 0 0 3px #47649c;
}

.sado-q-box2 .sado-q-right h3 {
font-weight: normal;
font-size: 20px;
}

/*---- 佐渡・小木診療所の診療体制と取組 ------*/

.sado-initiative-box {
font-family: "Sawarabi Mincho";
}

.ogi-image {
margin: 80px 100px 0 100px;
}

.ogi-image img {
width: 100%;
height: auto;
}

.sado-initiative-inner {
width: 900px;
margin: 150px auto 0 auto;
}

.sado-initiative-inner h3 {
margin: 0 0 20px 0;
font-size: 43px;
text-align: center;
font-weight: normal;
}

.ogi-image2 {
margin: 100px auto;
width: 1160px;
}

.ogi-image2 img {
width: 100%;
height: auto;
}

/*---- 行政・医療関係者の皆さまへ ------*/

.sado-medical-box {
padding: 220px 0 0 0;
width: 100%;
height: 500px;
background-image: url("img/sado-bg03.jpg");
background-position: center center;
background-size: cover;
color: #FFF;
font-family: "Sawarabi Mincho";
text-align: center;
text-shadow: 0 0 3px #000;
font-size: 22px;
}

.sado-medical-box h3 {
font-size: 43px;
font-weight: normal;
text-shadow: 0 0 5px #000;
}

.sado-medical-banner {
display: flex;
justify-content: space-between;
align-items: center;
font-family: "Sawarabi Mincho";
}

.medical-banner {
background-image: linear-gradient(90deg, #0066df, #42c6d4);
width: 49.5%;
height: 162px;
text-align: center;
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
}

.medical-banner a {
color: #FFF;
font-size: 30px;
height: 162px;
display: flex;
justify-content: center;
align-items: center;
}

.medical-banner a img {
margin: 0 7px;
width: 50px;
height: auto;
}

.sado-medical-banner2 {
margin: 110px 0;
display: flex;
justify-content: center;
align-items: center;
}

.medical-banner2 {
margin: 0 40px;
}

.medical-banner2 a {
transition : all 0.5s ease 0s;
transition-timing-function: ease-out;
}

.medical-banner2 a:hover {
opacity: 0.5;
}

/*======================================

	5. wp-pagenavi設定
	
=======================================*/

/*---- wp-pagenavi ------*/

.wp-pagenavi {
margin: 0 auto 100px auto;
overflow: hidden;
text-align: center;
transition : all 0.2s ease 0s;
transition-timing-function: ease-out;
}

/*---- wp-pagenavi ページ「〇/〇」 ------*/
.wp-pagenavi .pages {
display: none;
}

/*---- wp-pagenavi ≪ 先頭 ------*/
.wp-pagenavi .first {
display: none;
}

/*---- wp-pagenavi ≪ ------*/
.wp-pagenavi a.previouspostslink {
margin: 0 5px;
padding: 10px;
display: inline-block;
width: 40px;
height: 40px;
line-height: 100%;
vertical-align: middle;
font-size: 15px;
border: 1px solid #007BFF;
border-radius: 40px;
background-color: #FFF;
color: #007BFF;
transition : all 0.2s ease 0s;
transition-timing-function: ease-out;
}

.wp-pagenavi a.previouspostslink:hover {
text-decoration: none;
border-radius: 40px;
background-color: #007BFF;
color: #FFF;
}

/*---- wp-pagenavi 省略「...」 ------*/
.wp-pagenavi .extend {
border: none;
}

/*---- wp-pagenavi 各ページ（リンクあり） ------*/
.wp-pagenavi a.page {
margin: 0 5px;
padding: 10px;
display: inline-block;
min-width: 40px;
height: 40px;
line-height: 100%;
vertical-align: middle;
font-size: 15px;
border: 1px solid #007BFF;
border-radius: 40px;
background-color: #FFF;
color: #007BFF;
transition : all 0.2s ease 0s;
transition-timing-function: ease-out;
}

.wp-pagenavi a.page:hover {
text-decoration: none;
border-radius: 40px;
background-color: #007BFF;
color: #FFF;
}

/*---- wp-pagenavi 現在のページ ------*/
.wp-pagenavi .current {
margin: 0 5px;
padding: 10px;
display: inline-block;
min-width: 40px;
height: 40px;
line-height: 100%;
vertical-align: middle;
font-size: 15px;
border: 1px solid #007BFF;
border-radius: 40px;
background-color: #007BFF;
color: #FFF;
}

/*---- wp-pagenavi 各ページ（現在のページより前のページ） ------*/
.wp-pagenavi .smaller {

}

/*---- wp-pagenavi 各ページ（現在のページより後のページ） ------*/
.wp-pagenavi .larger {

}

/*---- wp-pagenavi ≫ ------*/
.wp-pagenavi a.nextpostslink {
margin: 0 5px;
padding: 10px;
display: inline-block;
width: 40px;
height: 40px;
line-height: 100%;
vertical-align: middle;
font-size: 15px;
border: 1px solid #007BFF;
border-radius: 40px;
background-color: #FFF;
color: #007BFF;
transition : all 0.2s ease 0s;
transition-timing-function: ease-out;
}

.wp-pagenavi a.nextpostslink:hover {
text-decoration: none;
border-radius: 40px;
background-color: #007BFF;
color: #FFF;
}

/*---- wp-pagenavi 最後 ≫ ------*/
.wp-pagenavi .last {
display: none;
}
