* {
    box-sizing: border-box;
  }


  body {
    scrollbar-width: none;
    background-image: url('images/857857.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
  }
  
  @media screen and (max-width: 768px) {

    body{
      
    };
  }

  .top-page {
    margin-top: 250px;

}
.inner {
  width: 100%; /* フル幅を取るが、最大幅によって制限される */
  max-width: 1768px;
  margin: 0 auto; /* 中央揃え */
  margin-top: 50px;
  height: 90vh;
  padding: 0 20px; /* サイドに余白を持たせる */
  background-image: url(images/top_img.png);
    background-size: cover;
    position: relative; /* 位置指定の基準点として設定 */
}

@media screen and (max-width: 768px) {
  .inner {
    margin-top: 70px; /* SPではマージントップを小さく */
    padding: 0 10px; /* サイドのパディングを少なくする */
    background-image: url(images/top_img-sp.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.top-text{
  position: absolute; /* 絶対位置指定 */
  top: 50%; /* 上下中央 */
  left: 45%; /* 左右中央 */
  transform: translate(-50%, -50%); /* 中央からのずれを補正 */
  margin-left: 370px; /* 中央から少し右に移動 */
  max-width: 150px; /* 最大幅を設定 */
  height: auto; /* 高さは自動調整 */
  object-fit: contain; /* 画像のアスペクト比を維持しつつ、要素内に収める */
}

.inner-sp{
  max-width: 1700px;
}

/* 理念 */
.concept-inner{
  width: 100%; /* フル幅を取るが、最大幅によって制限される */
  max-width: 1768px; /* 最大幅を設定。この値はプロジェクトに合わせて調整してください */
  margin: 0 auto; /* 中央揃え */
  height: 75vh;
    padding: 0 20px;
    background-image: url(images/concept_back.png);
    background-size: cover;
    display: flex;
  align-items: center;
  color: #fff;
}

.image-container {
  flex: 1;
  margin-top: -50px;
}

.image-container img {
  width: 100%;
  height: auto;
}

.text-container {
  flex: 1;
  margin-top: -50px;
}

.content-container {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  margin-top: -165px;
}

.service-title-container {
  padding: 20px;
    position: absolute;
    z-index: 1;
    margin-top: 100px;
}
.partner-title-container {
  padding: 20px;
    z-index: 1;
}

.concept-title{
  height: 45vh;
}

.partner-title{
  height: 20vh;
}

@media screen and (max-width: 768px) {
  .partner-title{
    height: 10vh;
  }
}

.concept-sp-sec{
  font-size: 65px;
  letter-spacing: 0.03em;
  font-family: 'IM Fell English', serif;
}

.concept-sp-sub{
  font-weight: 200;
    letter-spacing: 0.04em;
    font-size: 18px;
    line-height: 2em;
    margin-top: 40px;
  font-family: 'Noto Serif JP', serif;
}

.headline-container {
  display: flex;
  flex-direction: column;
}

.headline {
  writing-mode: vertical-rl;
  font-size: 2em; /* 見出しのサイズ調整 */
  margin-bottom: 10px; /* 見出しと線の間隔 */
}

.line-and-subheadline {
  display: flex;
  align-items: center;
}

.vertical-line {
  width: 2px;
  height: 50px; /* 線の高さ */
  background-color: rgb(255, 255, 255);
  margin-right: 10px; /* 線とサブ見出しの間隔 */
}

.sub-headline {
  writing-mode: horizontal-tb;
  font-size: 1.5em; /* サブ見出しのサイズ調整 */
  transform: rotate(90deg);
  transform-origin: left bottom;
}

/* SPサイズ用のスタイル */
@media screen and (max-width: 768px) {
  .concept-inner {
    display: flex;
    flex-direction: column; /* 要素を縦方向に並べる */
    background-image: url(images/concept_back-sp.png);
    background-size: cover;
  }

  .content-container{
    display: none;
  }

  .image-container {
    width: 100%; /* 幅を100%に設定 */
    order: 1; /* Flexboxの順序を設定 */
  }

  .text-container {
    width: 100%; /* 幅を100%に設定 */
    order: 2; /* Flexboxの順序を設定 */
    margin-top: 20px; /* 余白を設定 */
  }

  .concept-sp-sec{
    font-size: 10vw;
  }

  .concept-sp-sub{
    font-size: 3vw;
  }

  .concept-title{
    height: 20vh;
  }
}





/* ブログ */
/* ブログ */
.blog-card {
  position: relative;
  width: 100%;
  height: -webkit-fill-available;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  margin: auto;
}

.blog-title {
  position: absolute;
  top: 0;
  right: 0;    
  font-family: 'Shippori Mincho', serif;
  font-size: 8vh;
  font-weight: 600;
  /* line-height: 0em; */
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 70px 125px;
}

@media screen and (max-width: 768px){
  .blog-title {
    position: absolute;
    top: 0;
    right: 0;    
    font-family: 'Shippori Mincho', serif;
    font-size: 15vw;
    font-weight: 600;
    /* line-height: 0em; */
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 15vw 13vw;
  }
}

.blog-image-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  z-index: 1;
}

@media screen and (max-width: 768px){
  .blog-image-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 0;
}
}

.blog-image-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 43%;
  max-width: 570px;
}
@media screen and (max-width: 500px){
  .blog-image-bottom-left {
    display: none;
  }
}


.blog-image-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  max-width: 530px;
  z-index: 2;
}


@media screen and (max-width: 768px){
  .blog-image-bottom-left {
    display: none;
  }
}

.blog-slider {
  perspective: 1000px;
  width: 340px;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.blog-card-center {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(-100%); /* 上から下への移動 */
  transition: transform 1s, opacity 1s;
}

.blog-card-center.active {
  opacity: 1;
  transform: translateY(0%);
}


.blog-card-image {
  width: 100%; /* 親要素の幅に合わせる */
  height: auto; /* 高さを自動調整しアスペクト比を維持 */
  display: block; /* ブロックレベル要素として表示 */
}



.blogspace-inner{
  width: 100%; /* フル幅を取るが、最大幅によって制限される */
  max-width: 1768px; /* 最大幅を設定。この値はプロジェクトに合わせて調整してください */
  margin: 0 auto; /* 中央揃え */
  height: 75vh;
    padding: 0 20px;
    background-image: url(images/blog-back.png);
    background-size: cover;
    display: flex;
  align-items: center;
  color: #fff;
}

.blog-image-container {
  flex: 0.8;
  margin-top: -150px;
  z-index: 1;
}

.blog-image-container img {
  width: 100%;
  height: auto;
  max-width: 420px;
}

.blog-text-container {
  flex: 1;
  margin-top: -50px;
  padding: 0 20px;
  z-index: 1;
}

.blog-card-image {
  width: 100%; /* 親要素の幅に合わせて調整 */
  height: auto; /* 高さは自動調整でアスペクト比を維持 */
  object-fit: cover; /* 画像をトリミングせずにフィットさせる */
}




.responsive-image {
    
    height: auto; /* 画像の高さを自動調整 */
    display: block; /* ブロックレベル要素として表示 */
    margin: 0 auto; /* 水平方向の中央揃え */
    max-width: 100%; /* 画像の最大幅を親要素の幅に合わせる */
    max-height: 100%; /* 画像の最大高さを親要素の高さに合わせる */
}
/* SPサイズ用のスタイル */
@media screen and (max-width: 768px) {
  .blogspace-inner {
    display: flex;
    flex-direction: column; /* 要素を縦方向に並べる */
    background-image: url(images/blog-back-sp.png);
    background-size: cover;
  }

  .blog-slider {
    width: 250px;
    height: 200px;
  }

  .content-container{
    display: none;
  }

  .image-container {
    width: 100%; /* 幅を100%に設定 */
    order: 1; /* Flexboxの順序を設定 */
  }

  .text-container {
    width: 100%; /* 幅を100%に設定 */
    order: 2; /* Flexboxの順序を設定 */
    margin-top: 20px; /* 余白を設定 */
  }

  .blog-image-container img{
    max-width: 250px;
  }

  .blog-text-container{
    margin-top: 100px;
  }
}

/* スクロールバーの削除 */
  /* Chrome, Safari, Edge */
::-webkit-scrollbar {
  display: none;
}

.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}


/* サービス */
.service-container {
  width: 80%;
  margin: auto;
  padding: 20px;
  color: #fff;
  text-align: -webkit-center;
  z-index: 3;
}

.service-title {
  font-size: 4em;
  margin-bottom: 10px;
  font-family: 'IM Fell English', serif;
}

.service-description {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.5em;
  font-family: 'Noto Sans JP', sans-serif;
}

.service-logo-container {
  display: flex;
  justify-content: center;
  margin: 60px;
}


.service-logo {
  max-width: 200px; /* Adjust as needed */
  height: auto;
  
}

.service-custom-button {
  background-color: #4CAF50;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.service-custom-button:hover {
  background-color: #45a049;
}

@media screen and (max-width: 768px) {
  .service-title{
    font-size: 8vw;
  }

  .service-description{
    font-size: 3vw;
  }

}
/* 問い合わせ */
.contact-inner{
  width: 100%; /* フル幅を取るが、最大幅によって制限される */
  max-width: 1768px; /* 最大幅を設定。この値はプロジェクトに合わせて調整してください */
  margin: 0 auto; /* 中央揃え */
  height: 100vh;
   
  color: #fff;
}

.contact-form{
    width: 50%;
    max-width: 600px;
}


.image-con-container{
  flex-basis: 200px; /* 基本の幅を設定 */
  text-align: right; 
}

.cp_ipselect {
  position: relative;
  width: 90%;
  margin: 2em auto;
  text-align: center;
}
.cp_sl02 {
  position: relative;
  font-family: inherit;
  background-color: transparent;
  width: 100%;
  padding: 10px 10px 10px 0;
  font-size: 16px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0, 0.3);
}
.cp_sl02:focus {
  outline: none;
  border-bottom: 1px solid rgba(0,0,0, 0);
}
.cp_ipselect .cp_sl02 {
  appearance: none;
  -webkit-appearance:none
}
.cp_ipselect select::-ms-expand {
  display: none;
}
.cp_ipselect:after {
  position: absolute;
  top: 18px;
  right: 10px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.cp_sl02_selectlabel {
  color: rgba(0,0,0, 0.5);
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 10px;
  transition: 0.2s ease all;
}
.cp_sl02:focus ~ .cp_sl02_selectlabel, .cp_sl02:valid ~ .cp_sl02_selectlabel {
  color: #726659;
  top: -20px;
  transition: 0.2s ease all;
  font-size: 14px;
}
.cp_sl02_selectbar {
  position: relative;
  display: block;
  width: 100%;
}
.cp_sl02_selectbar:before, .cp_sl02_selectbar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #726659;
  transition: 0.2s ease all;
}
.cp_sl02_selectbar:before {
  left: 50%;
}
.cp_sl02_selectbar:after {
  right: 50%;
}
.cp_sl02:focus ~ .cp_sl06_selectbar:before, .cp_sl06:focus ~ .cp_sl06_selectbar:after {
  width: 50%;
}
.cp_sl02_highlight {
  position: absolute;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

.attachment{
  color: #726659;
  font-size: 14px;
}
/* Firefox */



  #opening {
    position: fixed;
    background-image: url(images/Group\ 71.png);
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #opening img{
    width: 150px;
    opacity: 0;  /* 初期状態の透明度を0に設定 */
  }

  #container {
    /* 高さをautoに変更。必要に応じて最小高さを設定する */
    min-height: 100vh;
    height: auto;
    overflow: hidden;
    position: relative;
}
  
  .door {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 9999;

  }

  .strong {
    font-size: 4vw;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    
}
  
  #left-door {
    left: 0;
    background-image: url(images/left-door.png);
    background-repeat: round;
    position: absolute;
    z-index: 9999;
  }
  
  #right-door {
    right: 0;
    background-image: url(images/right-door.png);
    background-repeat: round;
    position: absolute;
    z-index: 9999;
  }
  
  #content {
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
  }

  .vertical-text {
    position: absolute;
    right: 20px; /* 右側に余白を持たせる */
    top: 50%; /* 画面の中央に配置 */
    transform: translateY(-50%); /* 位置を中央に調整 */
    max-width: 200px; /* 最大幅を設定 */
    writing-mode: vertical-rl; /* 縦書きに設定 */
    text-orientation: upright; /* 文字の向きを正立させる */
  }
  
  .vertical-text p {
    margin: 0 0 20px 0; /* パラグラフ間の余白 */
    font-size: 24px; /* フォントサイズを大きくする */
    font-weight: bold; /* フォントを太くする */
  }
  

  .logo-link{
    width: 10%;
  }
  

  .clearfix:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }

  header {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-image: url(images/header.png);
    background-color: rgba(0,0,0,8);
    -webkit-transition: height 0.3s;
      -moz-transition: height 0.3s;
      -ms-transition: height 0.3s;
      -o-transition: height 0.3s;
      transition: height 0.3s;
  }
  
  header h1#logo {
    font-family: "Oswald", sans-serif;

    line-height: 100px;
    display: inline-block;
    float: left;
    height: 100px;
    margin: 0;
    padding: 0;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  header nav {
    display: flex;
    justify-content: center; /* 水平方向の中央揃え */
    align-items: center;
    float: right;
    padding: 20px;
    transition: all 0.3s;
  }
  
  header nav a {
  line-height: 100px;
  margin-left: 20px;
  color: #ffffff;
  font-weight: 200;
  font-size: 18px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  }
  
  /* smaller nav */
  
  header nav a:hover {
    color: #ffffff;
  }
  
  header.smaller {
      height: 75px;
      background-color: rgba(0,0,0,5);
  }
  header.smaller h1#logo {
      width: 150px;
      height: 75px;
      line-height: 75px;
      font-size: 30px;
  }
  header.smaller nav a {
      line-height: 75px;
  }

  header.smaller nav img{
    width: 80px;
    transition: all 0.3s;
}

  header h1#logo img {
    max-width: 100%;  /* ロゴの最大幅をヘッダーの幅に合わせる */
    height: auto;     /* 高さは自動調整 */
    max-height: 100px;
    padding: 10px;
    transition: all 0.3s;
}

/* ヘッダーが小さくなったときのロゴのスタイル */
header.smaller h1#logo img {
    max-height: 65px; /* 小さいヘッダーでの最大高さ */
}
  
/* media queries */

@media all and (max-width: 768px) {
  header {
    width: 100%;
    height: 110px;
  }
  header h1#logo {
      display: block;
      float: none;
      margin: 0 auto;
      height: 100px;
      line-height: 100px;
      text-align: center;
  }
  header nav {
      display: block;
      float: none;
      height: 50px;
      text-align: center;
      margin: 0 auto;
  }
  header nav a {
      line-height: 50px;
      margin: 0 10px;
  }
  header.smaller {
      height: 100px;
  }
  header.smaller h1#logo {
      height: 40px;
      line-height: 40px;
      font-size: 30px;
  }
  header.smaller nav {
      height: 35px;
  }
  header.smaller nav a {
      line-height: 35px;
  }

  header.smaller nav img{
    width: 65px;
    transition: all 0.3s;
}
}

  
  /* トップキャッチコピー */
  

  .main-catch{
    font-family: 'Shippori Mincho', serif;
    font-size: 2.2vw;
    transform: translate(5%, 21vh);
    line-height: 1.5em;
    letter-spacing: 0.1em;
  }

  #text-container {
    font-size: 3em;  /* フォントサイズを大きく */
    right: 10%; /* 右側からのマージン */
  }
  
  .text-box {
    writing-mode: vertical-rl; /* 縦書き */
    text-orientation: upright;
    opacity: 0; /* 初期状態では透明 */
    transform: translateX(20px); /* ふわっと現れる効果のための初期位置 */
    transition: opacity 1s, transform 1s; /* 透明度と位置の変化のアニメーション */
  }
  
  #image-container {
    position: relative;
    height: 100vh;  /* 一画面分の高さ */
  }
  
  #bottom-image {
    position: absolute;
    bottom: 0; /* 最下部に表示 */
    width: 100%;
    height: auto;
  }

/* eyecatchのスタイルを単純化 */
.eyecatch-container {
  height: 100vh;  /* あるいは希望の高さに */
  width: 100%;    /* あるいは希望の幅に */
}

.eyecatch-image {
  height: 100%;
  width: 100%;
  object-fit: cover;  /* 画像を縦横比を保ちつつフィットさせる */
}

/* 横スクロール */
.l-hero {
  overflow: hidden;
  position: relative;
}
.l-hero .l-hero-wrapper {
  width: 400%;
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
  will-change: auto;
}
.l-hero .l-hero-panel {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.l-hero .l-hero-panel::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.25);
}
.l-hero .l-hero-panel-01 {
  background-image: url('images/tsuru-ad\ \(1\).png');
}
.l-hero .l-hero-panel-02 {
  background-image: url('images/tsuru-golf\ \(1\).png');
}
.l-hero .l-hero-panel-03 {
  background-image: url('images/tsuru-mus.png');
}
.l-hero .l-hero-panel-04 {
  background-image: url('https://source.unsplash.com/aYLTPUkGZ-8');
}
.l-hero .l-hero-panel__contents {
  flex: 0 0 100%;
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  position: relative;
  text-transform: uppercase;
  z-index: 3;
}

@media all and (min-width: 1280px) {
  .l-hero .l-hero-panel__contents {
    font-size: 36px;
  }
}



.section {
  height: 100vh; /* Make each section fill the screen */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.section title, .section image, .description {
  opacity: 0; /* Initially set to invisible */
}

/* 理念 */


@media screen and (max-width: 768px){
  .con-image-top-left{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  .con-subtitle {
    font-size: 3vw;
    padding: 0 10%;
    margin-top: 30px;
    font-family: 'Noto Sans JP', sans-serif;
}

.con-title {
  font-family: 'Anton', sans-serif;
  font-size: 13vw;
}
}


@media screen and (min-width: 501px){

  .con-image-top-left{
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    z-index: 1;
  }

.con-title{
  font-family: 'Anton', sans-serif;
  font-size: 5vw;
  margin-left: 10vw;

}

.con-subtitle{
  font-size: 1.65vw;
  margin-left: 38vw;
  margin-top: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5em;
  letter-spacing: 0.07em;
}

}


.scroll-section {
  position: relative;
  height: 100vh; /* Or your preferred height */
  overflow: hidden;
}

.inner-content {
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.tsuru-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #D8BCA0;
  overflow: hidden;
}

.looping-image {
  position: absolute;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background-image: url('images/tsuru.png');
  background-size: contain;
  animation: loop-image 10s linear infinite;
}


.company-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
  padding: 20px;
  max-width: 1200px;
  background-color: #f5f5f5; /* 背景色 */
  border-radius: 10px; /* 角の丸み */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 影の効果 */
}

.overview-image {
  flex: 0.5;
  padding: 15px;
}

.overview-image img {
  width: 100%;
  height: auto;
  border-radius: 5px; /* 画像の角の丸み */
}

.overview-text {
  flex: 0.8;
  text-align-last: center;
  padding: 15px;
  text-align: left;
  color: #333; /* テキスト色 */
}

.overview-text h2 {
  font-size: 50px;
  margin-bottom: 40px;
  font-family: 'Noto Serif JP', serif;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .company-overview {
      flex-direction: column;
  }

  .overview-image, .overview-text {
      flex: none;
      width: 100%;
      max-width: 600px;
      margin: auto;
  }
}



.sun-flag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

@keyframes loop-image {
  0% {
    right: -50%;
    bottom: -50%;
  }
  100% {
    right: 100%;
    bottom: 100%;
  }
}


.title, .image, .image-02, .description {
  opacity: 0;
  transform: translateY(-50px);
}

.news_ticker2 {
  width: 100%;
  white-space: nowrap;
  font-size: 102px;
  color: #8f8f8f;
  position: absolute;
  transform: rotate(10deg);
  margin-top: 31vh;
}
@keyframes hscroll2 {
	0% { transform:translateX(4px); }
	100% { transform:translateX(-100%); }
}
.news_ticker2 ul {
	display:inline-block;
	margin:0;
	padding:0;
	animation:hscroll2 19s linear infinite;
}
.news_ticker2 li {
	display:inline-block;
}

@media screen and (min-width: 769px){
  .circle {
    color: #a5a5a5;
    position: absolute;
    margin: 20px auto;
    width: 600px;
    height: 768px;
    transform: translate(40vw, -5vw);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }
}


@media screen and (max-width: 768px){
  .circle {
    color: #a5a5a5;
    position: absolute;
    margin: 20px auto;
    transform: translate(0vw, 0vw);
    height: 768px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }
}

.blog-inner {  /* 文字を配置する起点となる親要素 */
  position: relative;
  width: 20px;  /* この親要素自体は1文字が収まる程度の小さいサイズ */
  height: 20px;
  border-radius: 50%;
  animation: rotateAnim 10s linear infinite;  /* 円形テキストを回転 */
  z-index: 0;
  color: #8d8d8d;
}

.cir-text{
  font-size: 45px;
}

@media screen and (max-width: 768px){
  .cir-text{
    display: none;
  }
}

@keyframes rotateAnim {
  0% { transform: rotate(0deg); }
  50%{ transform: rotate(180deg); }
  100% { transform: rotate(360deg); }  /* ここを0degにしてしまうと、180度の地点で逆方向の回転になるので注意 */
}

.cir-text span {
  position: absolute;
  inset: 0;  /* topとleftとbottomとrightをまとめて指定 */
  font-weight: 700;
  font-family: 'IM Fell English', serif;

}




.parallax-container {
  position: relative;
  width: 100%; /* 横幅を全体に合わせる */

    
  
}

.parallax-image {
  position: absolute;
  max-width: 330px;
  width: 20%;
  top: 140px;
  left: 75%; /* 開始位置を左にずらす */
}

.view-more{
  color: #000000;
    /* font-family: 'Lobster'; */
    text-shadow: -3px 1px 0px #fff, -3px 5px 0px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .parallax-image {
    position: absolute;
    max-width: 330px;
    width: 40%;
    
  }
}


/* 業務提携 */

.loopSlide {
  position: relative;
  display: flex;
  width: 100vw;
  overflow: hidden;
  
}
.loopSlide ul {
  padding: 0;
  width: 100vw;
  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: 100%;
  min-width: 150px;
  margin-right: 20px;
  list-style: none;
  text-align: center;
}
.loopSlide ul li img {
  display: block;
  width: 90px;
  height: auto;
}
.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%);
  }
}

@media (max-width: 768px) {
  .loopSlide {
   
    width: auto;
    
  }
  .loopSlide ul {
    width: auto;
  }
}

#section{
  
  position: relative;
}

.acc-title {
  position: absolute;
  top: 0;
  right: 0;    
  font-family: 'Shippori Mincho', serif;
  font-size: 8vh;
  font-weight: 600;
  /* line-height: 0em; */
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 70px 125px;
}



.container {
  display: flex;
  justify-content: space-between;
}

.left-panel, .right-panel {
  width: 45%;
  padding: 20px;
  border: 1px solid #ddd;
}

.left-panel {
  background: #f9f9f9; /* パネルの背景色 */
  border-radius: 10px; /* 角丸デザイン */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* 影を付ける */
  padding: 20px;
}

.user-selection {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.user-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.user {
  cursor: pointer;
  margin-right: 10px;
  transition: transform 0.3s ease; /* アニメーション効果 */
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.user:hover {
  transform: scale(1.1); /* ホバー時に拡大 */
}

.user-profile-card {
  display: none;
  background-size: cover; /* 背景画像をカバーするように設定 */
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 15px;
  transition: background-image 0.3s ease; /* 背景画像の変更にアニメーションを使用 */
}

.user-profile-card.active {
  display: block; /* アクティブ時に表示 */
}

/* ユーザーごとの背景画像 */
.user-profile-card.user-1 {
  background-image: url('images/unsplash_tE6bXkz7Ao0.png'); /* ユーザー1の背景画像 */
}

.user-profile-card.user-2 {
  background-image: url('images/unsplash_75c4xWD4C2U.png'); /* ユーザー2の背景画像 */
}

/* 他のユーザーの背景画像も同様に定義 */

.card {
	background-color: #393B45;
	height: auto;
	width: 350px;
	margin: 10vh auto;
	border-radius: 25px;
	padding-bottom: 1px;
	box-shadow: 2px 2px 5px #4069E2;
}


.image-crop {
	display: block;
	position: relative;
	background-color: #E6EBEE;
	width: 150px;
	height: 150px;
	margin: 0 auto;
	margin-top: 30px;
	overflow: hidden;
	border-radius: 50%;
	box-shadow: 1px 1px 5px #4069E2;
}

.avatar {
	display: inline;
	height: 230px;
	width: auto;
	margin-left: -34px;
}

.bio {
	display: block;
	margin: 30px auto;
	width: 280px;
	height: auto;
}

.bio p {
	color: #E6EBEE;
	font-weight: lighter;
	font-size: 15px;
	text-align: justify;
}

.stats {
	display: flex;
	flex-direction: row;
	height: auto;
	width: 280px;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	font-weight: 500;
}

.col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: auto;
}

.stat {
	font-size: 25px;
	margin: 0;
}

.label {
	margin: 0;
}



#msg{
	background-color: #E6EBEE;
	color: #393B45;
}


.corporate-footer {
  background-color: #000000;
  color: white;
  font-size: 0.9em;
  padding-top: 150px;
  text-align: left;
  background-image: url(images/footer_back.png);
  background-size: cover;
  
}

.footer-content {
  max-width: 1200px; /* 最大幅を設定 */
  margin: 0 auto; /* 中央揃え */
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid #444;
  padding: 0 20px; /* 内側のパディングを追加 */
}

.footer-section {
  flex: 1;
  padding: 0 20px; /* セクションごとのパディングを調整 */
  border-right: 1px solid #444; /* セクション間の線 */
}

.footer-section:last-child {
  border-right: none; /* 最後のセクションの線は不要 */
}

.footer-section h4 {
  margin-top: 0;
  margin-bottom: 10px; /* タイトルの下部余白を調整 */
  font-size: 17px;
  font-family: 'IM Fell English', serif;
  color: darkgrey;
}

hr {
  border: 0;
  height: 1px;
  background: #444; /* 線の色 */
  margin-bottom: 20px; /* 線の下の余白を調整 */
}

.footer-logo img {
  width: 150px;
}

.footer-links a, .footer-social a, .footer-menu a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 20px; /* リンク間の余白を調整 */
  font-size: 15px;
}

.footer-links a:hover, .footer-social a:hover, .footer-menu a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 150px;
  text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: left;
    padding: 0 10px; /* 小さい画面でのパディングを調整 */
}

.footer-section {
    margin-bottom: 20px;
}
}

.scroll-indicator {
  position: fixed;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 9999;
}

.scroll-text {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  transform: rotate(45deg);
  margin: 0 auto;
  animation: flow 2s infinite;
}

@keyframes flow {
  0%, 100% {
      transform: rotate(45deg) translate(0, 0);
  }
  50% {
      transform: rotate(45deg) translate(15px, 15px);
  }
}


.profile-accordion {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}


.accordion-item {
  flex: 1;
  border: 1px solid #ddd;
  text-align: center;
  overflow: hidden;
  transition: flex 0.5s ease;
  height: 768px;
  background-size: cover; /* 背景画像をカバーとして設定 */
  display: flex;
  align-items: center; /* 中央揃え */
  justify-content: center;
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {

}

.accordion-title {
  background-color: #f7f7f7;
  padding: 10px;
  cursor: pointer;
}

.accordion-content {
  width: 100%; /* コンテンツの幅を100%に設定 */
  /* display: none; */
  padding: 10px;
}

.accordion-item:hover {
  flex: 3;
}

.accordion-item:hover .accordion-content {
  display: block;
}

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,600');
.customProfileCard {
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  color: #ffffff;
  text-align: left;
  line-height: 1.4em;
  background-color: #141414;
}
.customProfileCard * {
  box-sizing: border-box;
  transition: all 0.9s ease;
}
.profileBackground {
  max-width: 100%;
  vertical-align: top;
  opacity: 0.85;
}
.profileContent {
  width: 100%;
  background-color: #141414;
  padding: 25px;
  position: relative;
}
.profileContent:before {
  position: absolute;
  content: '';
  bottom: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 55px 0 0 400px;
  border-color: transparent transparent transparent #141414;
}
.profileFollowButton, .profileInfoButton {
  padding: 5px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.7em;
  text-transform: uppercase;
  margin: 10px 0;
  display: inline-block;
  opacity: 0.65;
  width: 47%;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}
.profileFollowButton:hover, .profileInfoButton:hover {
  opacity: 1;
}
.profileIcon {
  border-radius: 50%;
  position: absolute;
  bottom: 100%;
  left: 25px;
  z-index: 1;
  max-width: 90px;
  opacity: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.profileName {
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 25px;
  font-family: 'Noto Serif JP', serif;
}
.profileOccupation {
  display: block;
  font-size: 20px;
  color: #ff8e29;
  margin-bottom: 10px;
}
.profileDescription {
  margin: 0 0 10px;
  font-size: 0.8em;
  letter-spacing: 1px;
  opacity: 0.8;
}

@media screen and (max-width: 640px) {

}



#form {
  position: relative;
  max-width: 500px;
  margin: 50px auto 100px auto;
  background-color: rgba(255,255,255,0.8);
}

input, textarea {
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  background: transparent;
  outline: none;
  color: #726659;
  border: solid 1px #b3aca7;
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

input {
  height: 50px;
}

textarea {
  height: 110px;
  resize: vertical;
  max-width: 100%;
  max-height: 110px;
}

input:hover, textarea:hover {
  background: #b3aca7;
  color: #e2dedb;
}

#submit {
  width: 100%;
  padding: 10px 0;
  margin-top: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  color: #b3aca7;
  outline: none;
  cursor: pointer;
  border: solid 1px #b3aca7;
  background-color: transparent;
}

#submit:hover {
  color: #e2dedb;
  background-color: #726659;
}

/* プレースホルダーのスタイル */
input::placeholder, textarea::placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::placeholder, textarea:focus::placeholder {
  color: #bbb5af;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #e2dedb;
}

/* 各ブラウザ向けのプレースホルダースタイル */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #bbb5af;
}
input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder {
  color: #e2dedb;
}

.form-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 2.5em; /* タイトルの大きさ */
  color: #4a4a4a; /* タイトルの色 */
  font-weight: bold; /* フォントを太字に */
  letter-spacing: 2px; /* 文字間隔 */
  font-family: 'IM Fell English', serif;
}

.address-content {
  font-size: 21px;
  line-height: 1.6;
  color: #666;
  font-family: 'Noto Serif JP', serif;
}

.address-content a {
  color: #666;
  text-decoration: none; /* 下線を消す */
}

.address-content a:hover {
  text-decoration: underline; /* ホバー時に下線を表示 */
}

.parent-element {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 120vh;
}

.grecaptcha-badge { visibility: hidden; }