/* メディアクエリ閾値設定
スマホ：記述なし
タブレット：@media screen and (min-width: 600px)
PC：@media screen and (min-width: 1025px)
*/

@font-face {
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  font-family: 'Shippori Mincho tate';
  src: url('/font/ShipporiMincho-Regular_subset_tate.woff2') format('woff2'), url('/font/ShipporiMincho-Regular_subset_tate.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  font-family: 'Shippori Mincho yoko';
  src: url('/font/ShipporiMincho-Regular_subset_yoko.woff2') format('woff2'), url('/font/ShipporiMincho-Regular_subset_yoko.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  font-family: 'Noto Sans JP';
  src: url('/font/NotoSansJP-Thin_subset.woff2') format('woff2'), url('/font/NotoSansJP-Thin_subset.woff') format('woff');
}


body {
  background: #101010;
  color: #ffffff;
  font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

p {
  font-size: 16px;
}

h2 {
  font-size: 1.2rem;
  /* margin-bottom:10px; */
  margin: 40px 0 10px;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background-color: #333333;
  border-radius: 6px;
}

body::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
  border-radius: 6px;
}


/* ヘッダーメニューここから */

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.header_menu {
  position: fixed;
  display: flex;
  width: 100%;
  height: 100%;
  background: #000000e0;
  z-index: 2;
  align-items: center;
  justify-content: center;
  z-index: -1;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.header_menu.active {
  z-index: 99;
  opacity: 1;
}

.header_menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.header_menu ul li {
  padding: 30px;
}

.header_menu ul li a {
  color: white;
  text-decoration: none;
  transition: 0.2s;
  position: relative;
  padding: 5px 0;
  font-size: 1.2rem;
}

.header_menu ul li a:visited {
  color: white;
}

.header_menu ul li a:hover {
  color: gray;
}

/* メニューボタンのスタイル */
.menu_btn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 99;
  color: white;
  width: 60px;
  height: 60px;
  background: #323030ad;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.menu_btn span {
  width: 50%;
  /* position: absolute; */
  height: 7px;
  background: white;
  /* display: inline-block; */
  display: block;
  transition: 0.4s;
}

/* ハンバーガーアイコンの線のアニメーション */
.menu_btn.active span:nth-child(1) {
    transform: translateY(15px) rotate(45deg);
}

.menu_btn.active span:nth-child(2) {
    opacity: 0;
}

.menu_btn.active span:nth-child(3) {
    transform: translateY(-15px) rotate(-45deg);
}

@media screen and (min-width: 1025px) {
  .menu_btn {
    display: none;
  }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
  }

  .header_menu {
    position: absolute;
    top: 0;
    right: 50px;
    display: block;
    width: auto;
    height: 60px;
    background: transparent;
    opacity: 1;
    z-index: 1001;
  }

  .header_menu ul {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .header_menu ul li a {
    font-size: 1rem;
    position: relative;
    line-height: 60px;
  }

  .header_menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 0%;
    height: 1px;
    background: linear-gradient(180deg, #fff, #fff);
    transition: 0.2s;
    filter: blur(0.6px);
  }

  .header_menu ul li a:hover::after {
    width: 100%;
    left: 0;
  }
}


/* 言語切り替えここから */
.language {
  position: absolute;
  top: 33px;
  left: 5%;
  z-index: 10;
  font-size: 12px;
}

.language a {
  color: white;
  text-decoration: none;
  margin: 3px;
  transition: color 0.2s ease;
}

.language a:hover {
  color: gray;
}

/* 言語切り替えここまで */


/* ヘッダーメニューここまで */


/* メインヴィジュアルここから */

/* 動画バージョンここから */

#main_visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.mv_container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ▼ 共通のベース設定 */
.mv_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.mv_video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ▼ ロゴ（共通） */
.mv_container .mv_logo {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  height: 200px;
  width: 200px;
  z-index: 10;
  filter: drop-shadow(2px 2px 4px #696969);
  transform: translateY(-50%);
}

.mv_container .mv_logo img {
  height: 100%;
  width: 100%;
}

.mv_container .mv_logo p {
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  margin-top: -30px;
  font-size: 18px;
  letter-spacing: 3px;
  text-indent: 3px;
  color: #fff;
}

/* ▼ デフォルトはSP動画を表示 */
.mv_video.pc {
  display: none;
}

.mv_video.sp {
  display: block;
}

/* ▼ PC表示時（1920x720px動画用） */
@media screen and (min-width: 1025px) {
  #main_visual {
    height: 56vw; /* 1920x720 = 約2.66:1 → 720/1920=0.375 → 37.5vw、少し余裕で56vw */
  }

  .mv_video.pc {
    display: block;
  }

  .mv_video.sp {
    display: none;
  }

  .mv_video.pc video {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
  }
}

/* ▼ スマホ表示時（1080x1080px動画用） */
@media screen and (max-width: 1024px) {
  #main_visual {
    height: 100vw; /* 正方形に近いので、縦横比1:1 */
  }

  .mv_video.sp video {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
  }
}

/* 動画バージョンここまで */



/* 写真バージョンここから */
/* .mv_container .mv_image {
  overflow: hidden;
  height: 216vw;
  position: relative;
}

.mv_container .mv_image.pc {
  display: none;
}

.mv_container .mv_image.sp {
  display: block;
}

.mv_container .mv_image picture {
  position: absolute;
  top: 0;
  width: 100%;
  animation: mv_slide 30s infinite;
  opacity: 0;
}

.mv_container .mv_image picture:nth-of-type(1) {
  animation-delay: 0s;
}

.mv_container .mv_image picture:nth-of-type(2) {
  animation-delay: 10s;
}

.mv_container .mv_image picture:nth-of-type(3) {
  animation-delay: 20s;
}

.mv_container .mv_image picture:nth-of-type(4) {
  animation-delay: 30s;
}

.mv_container .mv_image picture:nth-of-type(5) {
  animation-delay: 40s;
}

.mv_container .mv_image picture img {
  width: 100%;
}

.mv_container .mv_logo {
  position: absolute;
  top: 150px;
  right: 0;
  left: 0;
  margin: auto;
  height: 200px;
  width: 200px;
  z-index: 10;
  filter: drop-shadow(2px 2px 4px #696969);
}

.mv_container .mv_logo img {
  height: 100%;
  width: 100%;
}

.mv_container .mv_logo p {
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  margin-top: -30px;
  font-size: 18px;
  letter-spacing: 3px;
  text-indent: 3px;
}

@media screen and (min-width: 1025px) {
  .mv_container .mv_image {
    height: auto;
    height: 56vw;
  }

  .mv_container .mv_image.pc {
    display: block;
  }

  .mv_container .mv_image.sp {
    display: none;
  }

  .mv_container .mv_image picture {
    width: 100%;
    transform: scale(1);
    animation: mv_slide 50s infinite;
  }
}

@keyframes mv_slide {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  10% {
    opacity: 1;
  }

  20% {
    opacity: 1;
    transform: scale(1.1);
  }

  30% {
    opacity: 0;
    transform: scale(1.1);
  }

  50% {
    opacity: 0;
    transform: scale(1);
  }
} */

/* 写真バージョンここまで */

/* メインヴィジュアルここまで */


/* コンセプトここから */
.concept_container {
  width: 100%;
  position: relative;
  font-family:serif;
  margin: 100px 0 200px;
}

.concept_container .concept {
  margin: auto;
  width: 80%;
}

.concept_container p {
  line-height: 2;
}

.concept_container h1 {
  white-space: nowrap;
  line-height: 10vw;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.concept br {
  display: none;
}

.concept br.space {
  display: block;
}

@media screen and (min-width: 600px) {

   /* 日本語ページの場合（縦書き） */
   :lang(ja) .concept_container {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: 'Shippori Mincho tate', serif;
    height: 500px;
  }

  /* 英語ページの場合（横書き） */
  :lang(en) .concept_container {
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    font-family:serif;
    height: 500px;
  }

  /* .concept_container {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  } */
}

@media screen and (min-width: 1025px) {

   /* 日本語ページの場合（縦書き） */
   :lang(ja) .concept_container {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: 'Shippori Mincho tate', serif;
    height: 500px;
    padding-top: 100px;
  }

  /* 英語ページの場合（横書き） */
  :lang(en) .concept_container {
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    font-family:serif;
    height: 800px;
    padding-top: 100px;
  }
 
  .concept_container .concept {
    position: absolute;
    left: 0;
    right: 0;
  }

  .concept_container p {
    line-height: calc(70vw / 15);
    letter-spacing: 2px;
  }

  :lang(ja) .concept_container p {
    white-space: nowrap;
  }

  :lang(en) .concept_container p {
    line-height: 2.5;
  }

  .concept br {
    display: block;
  }
}

.italic {
  font-style: italic;
}

/* コンセプトここまで */



/* イメージ１ここから */
.image1_container {
  overflow: hidden;
}

/* .image1_flex{

} */
.image1_flex picture img {
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .image1_flex {
    display: flex;
  }

  .image1_flex picture {
    flex: 1;
  }
}

/* イメージ１ここまで */




/* ニュースここから */
.news_container {
  width: 80%;
  margin: 200px 10%;
}

.news_container h2 {
  width: 100%;
  border-bottom: 1px solid;
  padding-bottom: 10px;
}

.news_container .flex {
  display: block;
  margin-top: 20px;
  line-height: 1.5;
}

.news_container .flex .date {
  width: 100%;
}

.news_container .flex .news {
  width: 100%;
}

.news_container table tr td:nth-child(1) {
  padding-right: 20px;
}

a.news-link {
  color: white;
  text-decoration: none;
}


/* Instagram投稿ここから */
.instagram-grid {
  /* display: grid; */
  /* grid-template-columns: 1fr; スマホでは1列 */
  gap: 16px;
  /* max-width: 960px; */
  max-width: 400px;
  margin: 10px auto;
  padding: 20px;
}

.instagram-square {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-square:hover {
  transform: scale(1.03);
}

.instagram-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Instagram投稿ここまで */




/* スクロールバーここから */
.news_flex {
  overflow-y: scroll;
  height: 250px;
  margin-bottom: 100px;
}

.news_flex::-webkit-scrollbar {
  width: 10px;
}

.news_flex::-webkit-scrollbar-track {
  background-color: #ccc;
  border-radius: 5px;
}

.news_flex::-webkit-scrollbar-thumb {
  background-color: #925252;
  border-radius: 5px;
}
/* スクロールバーここまで */


@media screen and (min-width: 1025px) {
  .news_container {
    width: 60%;
    margin: 0 20% 150px;
    padding-top: 100px;
  }

  .news_container .flex {
    display: flex;
  }

  .news_container .flex .date {
    flex: 1;
  }

  .news_container .flex .news {
    flex: 5;
  }

  /* 写真枚数の調整はここでする */
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}
/* ニュースここまで */





/* Youtubeここから */
.youtube_container {
  width: 100%;
  padding: 0px 0px 80px;
}

.youtube_container p {
  text-align: center;
}

.youtube_video_container {
  /* display: flex; */
  /* position: relative; */
  height: 320px;
  /* overflow-x: hidden; */
}

/* .youtube_video_container .youtube_video_thumbnail{
  position: absolute;
  right:-50%;
  opacity:0;
  animation: loop-slide 20s infinite cubic-bezier(0.55, 0.06, 0.68, 0.19) 1s both;
}
.youtube_video_container .youtube_video_thumbnail:nth-child(1){
  animation-delay: 0s;
}
.youtube_video_container .youtube_video_thumbnail:nth-child(2){
  animation-delay: 5s;
}
.youtube_video_container .youtube_video_thumbnail:nth-child(3){
  animation-delay: 10s;
}
.youtube_video_container .youtube_video_thumbnail:nth-child(4){
  animation-delay: 15s;
}

@keyframes loop-slide {
  0% {
    right:-320px;
    opacity:0;
  }
  2%{
    right:calc(50% - 170px );;
    opacity:1;
    z-index:3;
  }
  23%{
    right:calc(50% - 150px );;
    opacity:1;
    z-index:3;
  }
  25% {
    right:100%;
    opacity:0;
  } */

}

.youtube_video_container:hover .youtube_video_thumbnail {
  animation-play-state: paused;
}

.youtube_video_container.pause .youtube_video_thumbnail {
  animation-play-state: paused;
}

.youtube_video_container .youtube_video {
  margin: 20px auto;
  position: relative;
  width: 320px;
  height: 180px;
  overflow: hidden;
}

.youtube_video_container .youtube_video img {
  transform: translateY(-30px);
  width: 100%;
}

.youtube_video_container .youtube_video i {
  position: absolute;
  top: 50%;
  left: 50%;
  background: gray;
  padding: 20px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s ease;
}

.youtube_video_container .youtube_video i:hover {
  background: red;
  font-size: 30px;
}

.youtube_player {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #000000eb;
  padding-left: calc(50% - 280px);
  padding-top: calc(25vh);
  opacity: 0;
  z-index: -1;
  transition: 0.2s ease;
  aspect-ratio: 16 / 9;
  padding: calc(50vh - 120px) 0;
}

.youtube_player iframe {
  width: 100%;
  height: 100%;
}

.youtube_player i {
  font-size: 50px;
  cursor: pointer;
  transition: 0.2s ease;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.youtube_player i:hover {
  font-size: 40px;
}

@media screen and (min-width: 1025px) {
  .youtube_video_container {
    overflow: hidden;
    width: 50%;
    margin: 0 25%;
  }

  .youtube_container br {
    display: none;
  }

  .youtube_player {
    padding: calc(50% - 360px) calc(50% - 240px);
    padding: 10%;
  }
}

/* Youtubeここまで */


/* イメージ２ここから */
.image2_container {
  overflow: hidden;
  margin-bottom: 100px;
}

.image2_container img {
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .image2_container {
    display: flex;
    width: 100%;
  }

  .image2_container picture {
    width: 50%;
  }
}
/* イメージ２ここまで */


/* ラインナップここから */
.lineup_container {
  margin: 0 15%;
}

.lineup_flex_box {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
}

.lineup_flex_box picture {
  width: 50%;
  position: relative;
  transition: 1s;
  display: block;
}

.lineup_flex_box picture img {
  width: 100%;
  margin: 10px 0;
  position: relative;
  transition: 1s;
  display: block;
}

/* #new.lineup_flex_box picture:nth-child(1):before {
  position: absolute;
  content: "NEW";
  font-weight: 700;
  background-color: crimson;
  padding: 5px 10px;
  margin-top: 10px;
  z-index: 98;
} */

.lineup_flex_box picture:hover {
  transform: scale(1.5);
  z-index: 99;
}

.lineup_flex_box p {
  text-align: center;
  width: 100%;
}


@media screen and (min-width: 1025px) {
  /* スクリーンサイズが1025px以上の場合に適用 */

  .lineup_container {
    margin: 50px 15%;
    /* padding-top: 100px; */
  }

  .lineup_flex {
    display: flex;
  }

  .lineup_flex_box {
    margin: 10px 20px 10px 0;
    display: block;
    padding: 2px;
  }

  /* .lineup_flex_box:nth-child(1) {
    margin-left:0;
  } */

  /* .lineup_flex_box:nth-child(4) {
    margin-right:0;
  } */


  /* #new.lineup_flex_box picture:nth-child(1):before {
    position: absolute;
    content: "NEW";
    background-color: crimson;
    padding: 5px 10px;
    margin-top: 0px;
  } */

  .lineup_flex_box picture {
    width: 100%;
  }
}

/* ラインナップここまで */


/* イメージ3ここから */
.image3_container {
  overflow: hidden;
  margin-top: 100px;
}

.image3_container img {
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .image3_container img {
    width: 100%;
  }
}

/* イメージ3ここまで */


/* 仕様ここから */
.spec_container {
  width: 70%;
  margin: 100px 15%;
}

.spec_container p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.spec_flex {
  margin-bottom: 50px;
}

.spec_flex_box img {
  width: 100%;
  vertical-align: bottom;
  margin: 5px;
  margin-left: 0;
}

.spec_flex_box table td {
  line-height: 1.5;
}

.spec_flex_box:nth-child(3) {
  display: flex;
}

.spec_flex_box:nth-child(3) picture {
  width: calc(50% - 5px);
}

.spec_flex_box:nth-child(3) picture:nth-child(2) {
  margin-left: 10px;
}

.spec_flex_box:nth-child(4) table {
  margin: 5px;
}

.spec_flex_box:nth-child(4) table td {
  padding-right: 5px;
}

.spec_flex_box:nth-child(4) table td p {
  margin: 0;
}

@media screen and (min-width: 1025px) {
  .spec_flex {
    display: flex;
  }

  .spec_flex_box {
    display: block;
    flex: 1;
    margin: 5px;
  }

  .spec_flex_box:nth-child(1) {
    margin-left: 0;
  }

  .spec_flex_box:nth-child(3) {
    flex: 0.5;
    display: block;
  }

  .spec_flex_box:nth-child(3) picture:nth-child(2) {
    margin-left: 0;
  }

  .spec_flex_box:nth-child(3) img {
    width: calc(100% - 5px);
  }

  /* .spec_flex_box:nth-child(3) img:nth-child(2) {
    margin-left:0;
  } */

  /* .spec_flex_box:nth-child(3) {
    margin-left:0;
  } */

  .spec_flex_box:nth-child(4) {
    margin-right: 0;
  }
}

/* 仕様ここまで */


/* レンタル料金ここから */
.plan_container {
  width: 70%;
  margin: 100px 15%;
  /* padding-top: 100px; */
}

.plan_container p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.plan_flex_box img {
  width: 100%;
  vertical-align: bottom;
  margin: 5px 0;
}

.plan_container table {
  margin: 10px 0;
  text-align: center;
}

.plan_container table td {
  border: 1px solid white;
  padding: 10px 20px;
  vertical-align: middle;
}

.sa.sa--up.example-title {
  margin-top: 30px;
}


@media screen and (min-width: 1025px) {
  .plan_flex_box {
    display: flex;
  }

  .plan_flex_box img {
    width: 300px;
    margin-left: 30px;
  }
}

/* レンタル料金ここまで */


/* コンタクトここから */
.contact_container {
  width: 70%;
  text-align: center;
  margin: 100px 15% 0;
  line-height: 1.5em;
}

.contact_container:first-line {
  line-height: 4em;
}

.contact_container a {
  display: inline-block;
  background: #925252;
  color: white;
  text-decoration: none;
  padding: 10px;
  transition: .2s ease-in-out;
  white-space: pre;
  margin: 10px 0;
  width: 230px;
}

.contact_container a:hover {
  background: #5a2727;
}

@media screen and (min-width: 1025px) {
  .contact_container:first-line {
    line-height: 6em;
  }

  .contact_container a {
    margin: 60px 50px 0;
  }

}

.comment_container {
  width: 70%;
  text-align: center;
  margin: 10px 15%;
  line-height: 1.5em;
}

.comment_container a {
  background: #925252;
  color: white;
  text-decoration: none;
  padding: 10px;
  transition: .2s ease-in-out;
}

.comment_container a:hover {
  background: #5a2727;
}

/* コンタクトここまで */


/* 問い合わせフォーム画面ここから */
.form_container {
  width: 90%;
  margin: 100px 5%;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
}

.form_container h1 {
  margin: 20px 0;
  font-size: 20px;
  color: #333;
  text-align: center;
}

.form_container .form-group {
  margin: 20px 10px;
}

.form_container .form-group label {
  display: block;
  /* display: inline-block; */
  color: #333;
  line-height: 1.5;
}

.form_container .form-group input,
.form_container .form-group textarea {
  width: 100%;
  margin-top: 5px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.5;
}

.form_container .form-group textarea {
  height: 170px;
  margin-top: 5px;
}

.form_container .form-group span {
  background:#CC0000;
  padding:2px 5px;
  font-size:12px;
  font-weight: bold;
  color:white;
  margin-right:5px;
  border-radius: 3px;
  display: inline-block;
}


/* 郵便番号 */
/* .postal_code_wrapper {
  display: flex;
  align-items: center;
}

.postal_code_wrapper input {
  border: 1px solid #ccc;
  padding: 5px;
  box-sizing: border-box;
}

#postal_code_3 {
  width: 6ch;
  text-align: center;
}

#postal_code_4 {
  width: 8ch;
  text-align: center;
}

.postal_code_wrapper span {
  margin: 0 5px;
}

.postal_code_hyphen {
  background-color: none;
} */

/* ボタンスタイル */
.form_container form input[type="submit"] {
  display: block;
  margin: 30px auto;
  background-color: #4676D7;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* ホバーエフェクト */
.form_container form input[type="submit"]:hover {
  background-color: #1D49AA;
}

/* 問い合わせフォーム画面ここまで */


/* 確認画面ここから */
.form_container_check {
  width: 90%;
  margin: 100px 5%;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
}

.form_container_check h1 {
  margin: 20px 0;
  font-size: 20px;
  color: #333;
  text-align: center;
}

.form_container_check .form-group {
  color: #333;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.form_container_check p {
  margin: 20px 0;
  font-size: 14px;
  text-align: center;
}

.form_container_check {
  margin-top: 50px;
}

.form_container_check .form-group label {
  display: block;
  line-height: 1.5;
}

.form_container_check form {
  text-align: center;
}

.confirm {
  text-align: left;
  flex-grow: 1;
  line-height: 1.2;
}

/* ボタンスタイル */
.form_container_check form input[type="submit"],button[type="button"]  {
  display: inline-block;
  margin: 30px;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form_container_check form input[type="submit"] {
  background-color: #4676D7;
}
  .form_container_check form button[type="button"]  {
    background-color: gray;
}

/* ホバーエフェクト */
.form_container_check form input[type="submit"]:hover {
  background-color: #1D49AA;
}
.form_container_check form button[type="button"]:hover {
  background-color: #555;
}

@media screen and (min-width: 1025px) {
  .form_container_check .form-group {
    display: flex;
    align-items: center;
    margin: 0 40px;
  }

  .form_container_check .form-group label {
    min-width: 200px;
  }

}

/* 確認画面ここまで */


/* 送信完了画面ここから */
.form_container_completion {
  width: 90%;
  margin: 100px 5%;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
}

.form_container_completion h1 {
  margin: 20px 0;
  font-size: 20px;
  color: #333;
  text-align: center;
}

.form_container_completion .form-group {
  margin-bottom: 20px;
  color: #333;
}

.form_container_completion p {
  margin: 40px 0;
  font-size: 14px;
  text-align: center;
}

.black-text {
  color: #333;
  line-height: 1.5;
}

/* ボタンスタイル */
.form_container_completion a {
  display: inline-block;
  margin: 30px;
  text-decoration: none;
  color: #fff;
  background-color: #4676D7;
  border-radius: 5px;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
  line-height: normal;
}

/* ホバーエフェクト */
.form_container_completion a:hover {
  background-color: #1D49AA;
}



@media screen and (min-width: 1025px) {
  /* .form_container_completion .form-group {
    display: flex;
    align-items: center;
    margin-left: 50px;
  } */

  /* .form_container_completion .form-group label {
    width: 200px;
  } */

  /* .confirm {
    text-align: left;
    flex-grow: 1;
  } */
}

/* 送信完了画面ここまで */

/* コンタクトここまで */



/* 年末年始のお知らせここから */
.info_container {
  width: 60%;
  margin: 50px auto;
  border: 2px solid white;
  padding: 20px;
}

.info_container p {
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: center;
}

/* 年末年始のお知らせここまで */


/* フッターここから */
.footer_container {
  position: relative;
  width: 70%;
  margin: 100px 15%;
  border-top: 1px solid white;
  padding-top: 10px;
}

.footer_container p {
  text-align: center;
  line-height: 1.5em;
}

.footer_images {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footer_container img {
  width: 50%;
  margin: 25%;
}

.copyright-text {
  font-size: 14px;
  margin-top: 10px;
}

.footer_menu {
  display: flex;
  justify-content: center;
  gap: 5px;
  position: absolute;
  top: -30px;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
  list-style: none;
}

.footer_menu li {
  display: inline-block;
  position: relative;
  padding: 0 10px;
}

.footer_menu a {
  color: #fff;
  text-decoration: none;
}

.footer_menu a:hover {
  text-decoration: underline;
  color: #ccc;
}

.footer_menu li + li::before {
  content: "|";
  position: absolute;
  left: -5px;
  color: #fff;
}

@media screen and (min-width: 1025px) {
  .footer_container img {
    width: 25%;
    margin: 100px 30%;
  }

  .footer_menu {
    gap: 60px;
  }

  .footer_menu li + li::before {
  content: "|";
  left: -30px;
}


}

/* フッターここまで */



/* プライバシーポリシーのページここから */
.page-privacy .language {
  display: none;
}

.main_container {
  max-width: 800px;
  margin: 160px auto;
  padding: 0 20px;
  color: white;
  line-height: 1.8;
}

.main_container h1 {
  font-size: 1.7rem;
  margin-bottom: 1em;
  border-bottom: 1px solid white;
  padding-bottom: 0.4em;
}

.main_container h2 {
  font-size: 1.2rem;
  margin-top: 2em;
  /* border-left: 4px solid white; */
  /* padding-left: 0.6em; */
}

.main_container p {
  margin-bottom: 1.2em;
}

.main_container ul {
  margin-left: 1.4em;
  margin-bottom: 1.5em;
}

.main_container a {
  color: #1b94e0;
  text-decoration: underline;
}

.main_container a:hover {
  color: #004999;
  text-decoration: none;
}

/* プライバシーポリシーのページここまで */


/* サイトマップのページここから */
.page-sitemap .language {
  display: none;
}
  
.sitemap_container {
  max-width: 800px;
  margin: 160px auto;
  padding: 0 20px;
  color: white;
  line-height: 1.8;
}

.sitemap_container h1 {
  font-size: 1rem;
  margin-bottom: 1em;
  border-bottom: 1px solid white;
  padding-bottom: 0.4em;
}

.sitemap_container ul {
  margin-left: 1.4em;
  margin-bottom: 1.5em;
  list-style: none;
}

 /* .sitemap_container ul li::before {
      content: "◇"; 
      color: #fff;
      margin-right: 0.5em;
    } */

.sitemap_container a {
  color: #fff;
  text-decoration: underline;
}

.sitemap_container a:hover {
  color: #ccc;
  text-decoration: none;
}

.material-icons {
  font-size: 1rem;
  margin-right: 0.2em;
  color: #666;
  position: relative;
  top: 6px;
}

/* サイトマップのページここまで */


/* スクロールダウン矢印 */
/* .scroll_down {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 999;
} */

#type01 {
    display: inline-block;
    padding: 10px 0px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
}

/* 縦書きテキストとライン */
.scroll_down a {
  display: inline-block;
  position: relative;
  width: 13px;
  padding: 10px 20px 110px;
  color: #ddd;
  font-size: 13px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: 0.2s;
  overflow: hidden;
}

.scroll_down a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #ddd;
  transform: translateX(-50%);
}

.scroll_down a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #000;
  transform: translateX(-50%);
}

/* アニメーション */
#type01 a:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: translateX(-50%) scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: translateX(-50%) scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: translateX(-50%) scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: translateX(-50%) scale(1, 0);
    transform-origin: 0 100%;
  }
}

.scroll_down a:hover {
  opacity: 0.5;
}

@media screen and (min-width: 1025px) {
  /* .scroll_down { */
#type01 {
    display: none;
  }
}




/* スクロールしたらふわっと浮かび上がるアレ */
.sa {
  opacity: 0;
  transition: all 1s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
  filter: none;
}

.sa--up {
  transform: translate(0, 10px);
  filter: blur(20px);
}

.sa--blur {
  filter: blur(20px);
}

.sa--image {
  transform: translate(0, 200px) scale(1.2);
}